@sema-agent/core 7.17.0 → 7.17.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +51 -0
- package/dist/core/fs-write-gate-policy.js +4 -0
- package/dist/core/memory-engine/engine.js +2 -1
- package/dist/core/memory-engine/layout.d.ts +18 -6
- package/dist/core/memory-engine/layout.js +40 -21
- package/dist/core/physical-path.d.ts +37 -0
- package/dist/core/physical-path.js +30 -0
- package/dist/core/runner/contracts.d.ts +3 -1
- package/dist/core/runner/prepare-artifact.d.ts +4 -5
- package/dist/core/runner/prepare-artifact.js +2 -16
- package/dist/core/runner/prepare-ask-lane.d.ts +3 -0
- package/dist/core/runner/prepare-ask-lane.js +3 -3
- package/dist/core/runner/prepare-park-ask.d.ts +3 -0
- package/dist/core/runner/prepare-park-ask.js +3 -2
- package/dist/core/runner/prepare-policy-chain.js +2 -2
- package/dist/core/runner/prepare-question-face.js +2 -1
- package/dist/core/runner/prepare-task.js +5 -5
- package/dist/core/runner/run-harness-handlers.js +4 -1
- package/dist/core/runner/run-leg.js +4 -1
- package/dist/core/sensitive-path-policy.js +7 -8
- package/dist/core/skills-directory.js +4 -3
- package/dist/core/spec-contract.js +5 -4
- package/dist/core/task-registry-shared.d.ts +5 -1
- package/dist/core/task-registry-shared.js +1 -0
- package/dist/core/tool-catalog-entries.js +1 -1
- package/dist/core/tool-policy.d.ts +56 -0
- package/dist/core/tool-policy.js +6 -0
- package/dist/engine/execution-env/node-execution-env.js +4 -3
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/orchestration/workflow-script-store.js +9 -25
- package/dist/orchestration/workflow.js +6 -3
- package/dist/stores/cc/task-list-store.js +2 -10
- package/dist/stores/file/fs-atomic.d.ts +15 -18
- package/dist/stores/file/fs-atomic.js +4 -14
- package/dist/stores/file/mailbox-store.d.ts +7 -11
- package/dist/stores/file/mailbox-store.js +4 -11
- package/dist/tools/artifact/local-stub.js +4 -3
- package/dist/tools/fs/bash-readonly-classifier.d.ts +19 -1
- package/dist/tools/fs/bash-readonly-classifier.js +413 -12
- package/dist/tools/fs/fs-bash.js +42 -17
- package/package.json +1 -1
- package/test/export-surface.snapshot.json +5 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_comment": "design/87 L3 — frozen public export surface of src/index.ts (name -> kind). DO NOT edit by hand to silence a red test. A removed/changed entry = a SemVer-BREAKING change; bump MAJOR and update this fixture in the SAME commit (design/87 §4.2 / §5.2). Regenerate via REGEN in test/export-surface.test.ts.",
|
|
3
3
|
"_tierComment": "#435 v1 — machine-readable layering of the public surface: stable = demonstrated by README.md / src/examples; internal = an `Internal`-marked name or a runner/engine deep-subtree declaration (the model seam src/engine/llm is excluded — it is the BYOM contract, not an engine internal); advanced = a supported export the front door does not walk you through. THIS IS AN INITIAL HEURISTIC, derived mechanically and expected to be refined ticket by ticket: no human reviewed these 1700+ entries one by one, and nothing here claims otherwise. Known bias: a short or English-word export name (ok, err, Result, Usage) can match ordinary prose in README.md and land `stable` on a coincidence. Every export MUST carry a tier — a new export with no row fails the gate in export-surface.test.ts.",
|
|
4
|
-
"count":
|
|
4
|
+
"count": 2335,
|
|
5
5
|
"exports": {
|
|
6
6
|
"A2ATaskState": "type",
|
|
7
7
|
"A2ATaskStateReversal": "type",
|
|
@@ -2080,6 +2080,8 @@
|
|
|
2080
2080
|
"peerSessionBoxHandle": "function",
|
|
2081
2081
|
"permissionRuleSyncContract": "function",
|
|
2082
2082
|
"pgQuery": "function",
|
|
2083
|
+
"physicalPathOf": "function",
|
|
2084
|
+
"physicalPathOfExisting": "function",
|
|
2083
2085
|
"planParseRepairs": "function",
|
|
2084
2086
|
"precheckEditedRuleText": "function",
|
|
2085
2087
|
"predictMountedToolNames": "function",
|
|
@@ -4415,6 +4417,8 @@
|
|
|
4415
4417
|
"peerSessionBoxHandle": "advanced",
|
|
4416
4418
|
"permissionRuleSyncContract": "advanced",
|
|
4417
4419
|
"pgQuery": "advanced",
|
|
4420
|
+
"physicalPathOf": "advanced",
|
|
4421
|
+
"physicalPathOfExisting": "advanced",
|
|
4418
4422
|
"planParseRepairs": "advanced",
|
|
4419
4423
|
"precheckEditedRuleText": "advanced",
|
|
4420
4424
|
"predictMountedToolNames": "advanced",
|