@yansirplus/cli 0.5.17 → 0.5.19

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.
Files changed (53) hide show
  1. package/README.md +12 -6
  2. package/agent-catalog/agentOS/SKILL.md +22 -0
  3. package/agent-catalog/agentOS/references/agent/decision-graph.json +530 -0
  4. package/agent-catalog/agentOS/references/agent/errors.json +497 -0
  5. package/agent-catalog/agentOS/references/agent/invariant-matrix.json +337 -0
  6. package/agent-catalog/agentOS/references/agent/primitives.json +989 -0
  7. package/agent-catalog/agentOS/references/agent/recipes.json +109 -0
  8. package/agent-catalog/agentOS/references/agent/start-here.md +25 -0
  9. package/agent-catalog/agentOS/references/package-map.md +73 -0
  10. package/agent-catalog/agentOS/references/provenance.json +251 -0
  11. package/agent-catalog/agentOS/references/public-api/cli.md +20 -0
  12. package/agent-catalog/agentOS/references/public-api/client.md +90 -0
  13. package/agent-catalog/agentOS/references/public-api/core.md +1907 -0
  14. package/agent-catalog/agentOS/references/public-api/runtime.md +843 -0
  15. package/dist/build/agent-authoring/config.d.ts +20 -5
  16. package/dist/build/agent-authoring/config.js +132 -32
  17. package/dist/build/agent-authoring/manifest-compiler.d.ts +131 -2
  18. package/dist/build/agent-authoring/manifest-compiler.js +630 -8
  19. package/dist/build/agent-authoring/shared.d.ts +2 -0
  20. package/dist/build/agent-authoring/shared.js +2 -0
  21. package/dist/build/agent-authoring/static-target.d.ts +6 -3
  22. package/dist/build/agent-authoring/static-target.js +1900 -281
  23. package/dist/build/agent-authoring.d.ts +3 -3
  24. package/dist/build/agent-authoring.js +1 -1
  25. package/dist/build/build-cli.d.ts +1 -1
  26. package/dist/build/build-cli.js +1629 -26
  27. package/dist/check/algorithmic/client-boundary-checks.mjs +3 -34
  28. package/dist/check/algorithmic/convergence-smoke-checks.mjs +652 -6
  29. package/dist/check/algorithmic/distribution-checks.mjs +8 -7
  30. package/dist/check/algorithmic/package-boundary-checks.mjs +3 -2
  31. package/dist/check/algorithmic/repo-surface-checks.mjs +55 -1
  32. package/dist/check/algorithmic/static-target-checks.mjs +83 -5
  33. package/dist/check/algorithmic-checks.mjs +10 -17
  34. package/dist/check/default-gate.mjs +3 -3
  35. package/dist/check/effect-scan-gate.mjs +121 -0
  36. package/dist/check/package-graph.mjs +2 -32
  37. package/dist/consumer-overlay.mjs +1281 -0
  38. package/dist/lib/public-api-model.mjs +19 -0
  39. package/dist/lib/repo-source-files.mjs +26 -0
  40. package/dist/lib/ts-module-loader.mjs +44 -0
  41. package/dist/lib/workspace-manifest.mjs +77 -0
  42. package/dist/main.mjs +171 -21
  43. package/dist/release-status.mjs +515 -0
  44. package/package.json +8 -4
  45. package/dist/check/check-coverage.mjs +0 -231
  46. package/dist/generate/generate-agent-docs.mjs +0 -435
  47. package/dist/generate/generate-carrier-reference.mjs +0 -514
  48. package/dist/generate/generate-docs.mjs +0 -345
  49. package/dist/generate/generate-effect-skill-manifests.mjs +0 -193
  50. package/dist/generate/project-docs-site.mjs +0 -190
  51. package/dist/lib/boundary-rules.mjs +0 -63
  52. package/dist/lib/capability-routes.mjs +0 -354
  53. package/dist/lib/projection-sink.mjs +0 -113
@@ -0,0 +1,109 @@
1
+ {
2
+ "generatedBy": "packages/cli/src/generate/generate-agent-docs.mjs",
3
+ "source": "docs/agent/recipes.source.json",
4
+ "recipes": [
5
+ {
6
+ "id": "recipe.natural-language-workspace-agent",
7
+ "title": "Build a natural-language workspace agent",
8
+ "intents": [
9
+ "compile an authored workspace agent into a static target",
10
+ "generate a typed client from agentos.config.jsonc"
11
+ ],
12
+ "tutorial": "docs/guides/build-natural-language-workspace-agent.md",
13
+ "primitives": [
14
+ "primitive.agent-authoring.compileAgentTree",
15
+ "primitive.agent-authoring.linkWorkspaceStaticTarget"
16
+ ],
17
+ "commands": ["pnpm --filter @agent-os/cli test", "pnpm run check:distribution"],
18
+ "evidence": [
19
+ "packages/cli/test/build-command.test.mjs",
20
+ "packages/cli/src/check/algorithmic-checks.mjs"
21
+ ],
22
+ "next": ["recipe.tool-schema-authority", "recipe.projection-reader"]
23
+ },
24
+ {
25
+ "id": "recipe.hello-ledger-event",
26
+ "title": "Append and read a ledger event",
27
+ "intents": [
28
+ "Learn the D10 ledger truth identity",
29
+ "Emit one durable fact and read it through the backend protocol"
30
+ ],
31
+ "tutorial": "docs/tutorials/hello-ledger-event.md",
32
+ "noRouteReason": "tutorial-only ledger identity exercise; product workflows should route through a higher-level primitive",
33
+ "primitives": [
34
+ "primitive.kernel.LedgerEvent",
35
+ "primitive.kernel.ScopeRef",
36
+ "primitive.kernel.AuthorityRef",
37
+ "primitive.runtime.Ledger"
38
+ ],
39
+ "commands": ["pnpm --filter @agent-os/core test", "pnpm --filter @agent-os/core test"],
40
+ "evidence": [
41
+ "packages/core/test/kernel/effect-claim.test.ts",
42
+ "packages/core/test/backend-protocol/contract/runtime-backend-contract.ts"
43
+ ],
44
+ "next": ["recipe.projection-reader", "recipe.streaming-chatbot"]
45
+ },
46
+ {
47
+ "id": "recipe.projection-reader",
48
+ "title": "Build a materialized projection reader",
49
+ "intents": [
50
+ "Derive observable state from ledger facts",
51
+ "Keep projection state out of the source-of-truth role"
52
+ ],
53
+ "tutorial": "docs/tutorials/projection-reader.md",
54
+ "primitives": [
55
+ "primitive.runtime.MaterializedProjectionDefinition",
56
+ "primitive.runtime.defineProjection",
57
+ "primitive.runtime.ProjectionReduceResult"
58
+ ],
59
+ "commands": ["pnpm --filter @agent-os/runtime test"],
60
+ "evidence": [
61
+ "packages/runtime/test/projection.test.ts",
62
+ "packages/runtime/test/in-memory/materialized-projections.test.ts"
63
+ ],
64
+ "next": ["recipe.durable-trigger-cancel", "recipe.full-small-agent-app"]
65
+ },
66
+ {
67
+ "id": "recipe.streaming-chatbot",
68
+ "title": "Stream an agent run",
69
+ "intents": [
70
+ "Submit an LLM run through the runtime",
71
+ "Project runtime ledger facts into browser-safe frames"
72
+ ],
73
+ "tutorial": "docs/tutorials/streaming-chatbot.md",
74
+ "primitives": [
75
+ "primitive.runtime.SubmitSpec",
76
+ "primitive.runtime.SubmitResult",
77
+ "primitive.ag-ui.projectLedgerEventToAgUiEnvelope"
78
+ ],
79
+ "commands": ["pnpm --filter @agent-os/runtime test"],
80
+ "evidence": [
81
+ "packages/runtime/test/submit-agent-runtime-events.test.ts",
82
+ "packages/runtime/test/cloudflare/workspace-host-helpers.test.ts"
83
+ ],
84
+ "next": ["recipe.tool-schema-authority", "recipe.full-small-agent-app"]
85
+ },
86
+ {
87
+ "id": "recipe.tool-schema-authority",
88
+ "title": "Add a tool with schema, admission, and execution domain",
89
+ "intents": [
90
+ "Define the tool schema from Effect Schema",
91
+ "Route effectful execution through a declared execution domain"
92
+ ],
93
+ "tutorial": "docs/tutorials/tool-schema-authority.md",
94
+ "primitives": [
95
+ "primitive.kernel.AgentSchema",
96
+ "primitive.kernel.Tool",
97
+ "primitive.kernel.ExecutionDomain",
98
+ "primitive.kernel.BoundaryContract"
99
+ ],
100
+ "commands": ["pnpm --filter @agent-os/core test", "pnpm --filter @agent-os/runtime test"],
101
+ "evidence": [
102
+ "packages/core/test/kernel/agent-schema.test.ts",
103
+ "packages/core/test/kernel/tools.test.ts",
104
+ "packages/runtime/test/cloudflare/workspace-host-helpers.test.ts"
105
+ ],
106
+ "next": ["recipe.provider-material-binding", "recipe.full-small-agent-app"]
107
+ }
108
+ ]
109
+ }
@@ -0,0 +1,25 @@
1
+ <!-- generated by packages/cli/src/generate/generate-agent-docs.mjs; edit *.source.json and exported TSDoc @agentosPrimitive tags -->
2
+
3
+ # Start Here
4
+
5
+ Agent-facing docs are generated projections. Source facts live in `*.source.json`, `docs/surface.json`, package manifests, and exported TSDoc annotation tags.
6
+
7
+ ## Navigation
8
+
9
+ | Surface | Generated File |
10
+ | ---------------- | ---------------------------------------------- |
11
+ | Recipes | [recipes.json](recipes.json) |
12
+ | Primitives | [primitives.json](primitives.json) |
13
+ | Decision Graph | [decision-graph.json](decision-graph.json) |
14
+ | Errors | [errors.json](errors.json) |
15
+ | Invariant Matrix | [invariant-matrix.json](invariant-matrix.json) |
16
+
17
+ ## Recipes
18
+
19
+ | Recipe | Tutorial | Primary Primitives |
20
+ | ----------------------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
21
+ | `recipe.natural-language-workspace-agent` | Build a natural-language workspace agent (`guides/build-natural-language-workspace-agent.md`) | `primitive.agent-authoring.compileAgentTree`, `primitive.agent-authoring.linkWorkspaceStaticTarget` |
22
+ | `recipe.hello-ledger-event` | Append and read a ledger event (`tutorials/hello-ledger-event.md`) | `primitive.kernel.LedgerEvent`, `primitive.kernel.ScopeRef`, `primitive.kernel.AuthorityRef`, `primitive.runtime.Ledger` |
23
+ | `recipe.projection-reader` | Build a materialized projection reader (`tutorials/projection-reader.md`) | `primitive.runtime.MaterializedProjectionDefinition`, `primitive.runtime.defineProjection`, `primitive.runtime.ProjectionReduceResult` |
24
+ | `recipe.streaming-chatbot` | Stream an agent run (`tutorials/streaming-chatbot.md`) | `primitive.runtime.SubmitSpec`, `primitive.runtime.SubmitResult`, `primitive.ag-ui.projectLedgerEventToAgUiEnvelope` |
25
+ | `recipe.tool-schema-authority` | Add a tool with schema, admission, and execution domain (`tutorials/tool-schema-authority.md`) | `primitive.kernel.AgentSchema`, `primitive.kernel.Tool`, `primitive.kernel.ExecutionDomain`, `primitive.kernel.BoundaryContract` |
@@ -0,0 +1,73 @@
1
+ # agentOS Package Map
2
+
3
+ Release version: `0.5.19`
4
+ Published scope: `@yansirplus`
5
+
6
+ ## Packages
7
+
8
+ | Source Package | Published Package | Path | Status | Role |
9
+ | ------------------- | --------------------- | ------------------ | ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
10
+ | `@agent-os/cli` | `@yansirplus/cli` | `packages/cli` | 0.5.x public | developer command surface for generated projections, authored agent builds, structural checks, and distribution gates |
11
+ | `@agent-os/client` | `@yansirplus/client` | `packages/client` | 0.5.x public | transport-neutral agent client store, typed command surface, and optional framework subpath bridges |
12
+ | `@agent-os/core` | `@yansirplus/core` | `packages/core` | 0.5.x public | neutral substrate axioms, owner identity helpers, value brands, protocol schemas, shared errors, material refs, AgentSchema, tool algebra, and backend/runtime/LLM/telemetry vocabulary |
13
+ | `@agent-os/evals` | `@yansirplus/evals` | `packages/evals` | 0.5.x public | eval authoring DSL, symbolic eval configuration, deterministic assertion declarations, and runner-facing case/context types for generated app behavior checks |
14
+ | `@agent-os/runtime` | `@yansirplus/runtime` | `packages/runtime` | 0.5.x public | Effect Tag runtime programs, backend-neutral runtime services, projections, workspace-job observability joins, deterministic testing fixtures, and optional-peer subpath adapters for Cloudflare, in-memory, Node, Effect AI, and OTLP telemetry. |
15
+
16
+ ## Entrypoints
17
+
18
+ | Import | Audience | Capability | Owner |
19
+ | ----------------------------------------------------- | ------------------------------ | ------------------------------------------------------------------------------------------ | --------------------- |
20
+ | `@yansirplus/cli` | default-direct | developer CLI command package | `@yansirplus/cli` |
21
+ | `@yansirplus/client` | default-direct | transport-neutral client store | `@yansirplus/client` |
22
+ | `@yansirplus/client/react` | default-direct | React client adapter | `@yansirplus/client` |
23
+ | `@yansirplus/client/svelte` | default-direct, generated-only | Svelte client adapter | `@yansirplus/client` |
24
+ | `@yansirplus/client/workspace-agent` | generated-only | generated workspace agent client | `@yansirplus/client` |
25
+ | `@yansirplus/core` | advanced | neutral substrate algebra and brands | `@yansirplus/core` |
26
+ | `@yansirplus/core/abort` | advanced | abort vocabulary | `@yansirplus/core` |
27
+ | `@yansirplus/core/agent-schema` | advanced | agent schema authoring algebra | `@yansirplus/core` |
28
+ | `@yansirplus/core/authored-value` | advanced | authored value ownership | `@yansirplus/core` |
29
+ | `@yansirplus/core/backend-protocol` | advanced | backend protocol DTOs | `@yansirplus/core` |
30
+ | `@yansirplus/core/backend-protocol/reference` | advanced | backend protocol reference helpers | `@yansirplus/core` |
31
+ | `@yansirplus/core/boundary-contract` | advanced | boundary contract declarations | `@yansirplus/core` |
32
+ | `@yansirplus/core/carrier` | advanced | carrier algebra | `@yansirplus/core` |
33
+ | `@yansirplus/core/context` | advanced | context value helpers | `@yansirplus/core` |
34
+ | `@yansirplus/core/effect-claim` | advanced | effect claim vocabulary | `@yansirplus/core` |
35
+ | `@yansirplus/core/errors` | advanced | shared error classes | `@yansirplus/core` |
36
+ | `@yansirplus/core/extensions` | advanced | extension declarations | `@yansirplus/core` |
37
+ | `@yansirplus/core/live-edge` | advanced | live edge protocol | `@yansirplus/core` |
38
+ | `@yansirplus/core/llm-protocol` | advanced | LLM protocol DTOs | `@yansirplus/core` |
39
+ | `@yansirplus/core/material-ref` | advanced | material refs | `@yansirplus/core` |
40
+ | `@yansirplus/core/projection` | advanced | projection algebra | `@yansirplus/core` |
41
+ | `@yansirplus/core/quota` | advanced | quota declarations | `@yansirplus/core` |
42
+ | `@yansirplus/core/recorded-value` | advanced | recorded value algebra | `@yansirplus/core` |
43
+ | `@yansirplus/core/ref-resolver` | advanced | material ref resolution | `@yansirplus/core` |
44
+ | `@yansirplus/core/runtime-protocol` | generated-only | runtime DTOs emitted by generated targets | `@yansirplus/core` |
45
+ | `@yansirplus/core/runtime-scope` | advanced | runtime scope helpers | `@yansirplus/core` |
46
+ | `@yansirplus/core/settlement-contract` | advanced | settlement contract algebra | `@yansirplus/core` |
47
+ | `@yansirplus/core/telemetry-protocol` | advanced | telemetry protocol DTOs | `@yansirplus/core` |
48
+ | `@yansirplus/core/tools` | generated-only | tool definitions emitted by generated targets | `@yansirplus/core` |
49
+ | `@yansirplus/core/types` | advanced | shared type helpers | `@yansirplus/core` |
50
+ | `@yansirplus/core/workspace-agent` | advanced | workspace agent command/projection vocabulary | `@yansirplus/core` |
51
+ | `@yansirplus/evals` | default-direct | generated app eval authoring DSL | `@yansirplus/evals` |
52
+ | `@yansirplus/runtime` | advanced | backend-neutral runtime service algebra | `@yansirplus/runtime` |
53
+ | `@yansirplus/runtime/admission` | advanced | admission service contract | `@yansirplus/runtime` |
54
+ | `@yansirplus/runtime/ag-ui` | advanced | AG-UI wire projection | `@yansirplus/runtime` |
55
+ | `@yansirplus/runtime/cloudflare` | generated-only, advanced | Cloudflare Durable Object runtime adapter | `@yansirplus/runtime` |
56
+ | `@yansirplus/runtime/cloudflare/do-rpc` | advanced | Cloudflare DO RPC bridge | `@yansirplus/runtime` |
57
+ | `@yansirplus/runtime/cloudflare/ops-api` | advanced | Cloudflare ops API bridge | `@yansirplus/runtime` |
58
+ | `@yansirplus/runtime/capability` | generated-only, advanced | capability contract declarations and install graph resolver | `@yansirplus/runtime` |
59
+ | `@yansirplus/runtime/channel` | generated-only, advanced | pure verified inbound channel contract for generated targets | `@yansirplus/runtime` |
60
+ | `@yansirplus/runtime/external-effect` | advanced | vocabulary-neutral idempotent external-effect attempt runner | `@yansirplus/runtime` |
61
+ | `@yansirplus/runtime/schedule` | generated-only, advanced | pure UTC time ingress contract and schedule fire history projection for generated targets | `@yansirplus/runtime` |
62
+ | `@yansirplus/runtime/in-memory` | advanced | in-memory runtime adapter | `@yansirplus/runtime` |
63
+ | `@yansirplus/runtime/local` | generated-only, advanced | local node workspace runtime lowerer and dev/test facade | `@yansirplus/runtime` |
64
+ | `@yansirplus/runtime/llm-effect-ai` | advanced | provider-neutral Effect AI LLM transport adapter | `@yansirplus/runtime` |
65
+ | `@yansirplus/runtime/llm-effect-ai/openai-compatible` | generated-only, advanced | OpenAI-compatible chat-completions transport adapter | `@yansirplus/runtime` |
66
+ | `@yansirplus/runtime/llm-effect-ai/anthropic` | advanced | Anthropic Effect AI provider adapter | `@yansirplus/runtime` |
67
+ | `@yansirplus/runtime/node` | advanced | Node runtime adapter | `@yansirplus/runtime` |
68
+ | `@yansirplus/runtime/run-projector` | generated-only, advanced | runtime run projection helpers | `@yansirplus/runtime` |
69
+ | `@yansirplus/runtime/sse-http` | generated-only, advanced | SSE HTTP helpers | `@yansirplus/runtime` |
70
+ | `@yansirplus/runtime/telemetry-otlp` | advanced | OTLP telemetry projection | `@yansirplus/runtime` |
71
+ | `@yansirplus/runtime/testing` | advanced | deterministic in-memory WorkspaceEnv fixture and external-effect conformance report helper | `@yansirplus/runtime` |
72
+ | `@yansirplus/runtime/workspace-agent` | generated-only | generated workspace agent host types | `@yansirplus/runtime` |
73
+ | `@yansirplus/runtime/workspace-binding` | generated-only | generated workspace tool binding | `@yansirplus/runtime` |
@@ -0,0 +1,251 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "generatedBy": {
4
+ "id": "packages/cli/src/generate/generate-agent-catalog.mjs",
5
+ "version": 1
6
+ },
7
+ "generatedAt": "2026-06-26T03:12:17.000Z",
8
+ "generatedAtSource": "git-head-commit-time",
9
+ "package": {
10
+ "sourcePackage": "@agent-os/cli",
11
+ "publicPackage": "@yansirplus/cli",
12
+ "version": "0.5.19",
13
+ "publicScope": "@yansirplus",
14
+ "catalogRoot": "agent-catalog/agentOS"
15
+ },
16
+ "git": {
17
+ "available": false,
18
+ "reason": "catalog is generated before the commit that records it; inputFiles and outputFiles carry the stable content hashes"
19
+ },
20
+ "inputFiles": [
21
+ {
22
+ "path": "docs/agent/boundary-rules.source.json",
23
+ "sha256": "27d81dff3a4158bed444fed7e618021479fa77dc289ea80b1a0ca37185f42e63",
24
+ "byteSize": 42140
25
+ },
26
+ {
27
+ "path": "docs/agent/capability-rules.source.json",
28
+ "sha256": "b0519f73acdc424a9896222d0e3d7a858caf0762fbf8e7b4ca2b725a97569baf",
29
+ "byteSize": 6118
30
+ },
31
+ {
32
+ "path": "docs/agent/decision-graph.json",
33
+ "sha256": "d92ced96c8625079e1974d0e98b5ee12eb96014bdf1974ada3ada7c294e2efd1",
34
+ "byteSize": 18149
35
+ },
36
+ {
37
+ "path": "docs/agent/error-metadata.source.json",
38
+ "sha256": "6cd59f000dc30f60a9ed9823b7a0733d5bcf495d544803b025580b3c27020a40",
39
+ "byteSize": 21759
40
+ },
41
+ {
42
+ "path": "docs/agent/errors.json",
43
+ "sha256": "939229df05f67cecb8166a5716e73d3dcee017a311f6fd6802c466c78a082db7",
44
+ "byteSize": 25336
45
+ },
46
+ {
47
+ "path": "docs/agent/external-vocabulary.source.json",
48
+ "sha256": "a344487abbfcaf134d23954d9e1f291305626b5529897d010a54244d057492f9",
49
+ "byteSize": 1433
50
+ },
51
+ {
52
+ "path": "docs/agent/gates.source.json",
53
+ "sha256": "b4f7144c626ecc0192abc84d3122d327a27e1b64b24888a19a4f6709a301a055",
54
+ "byteSize": 2765
55
+ },
56
+ {
57
+ "path": "docs/agent/invariant-matrix.json",
58
+ "sha256": "9aa62077a27c2c6b26b4c02d9fe7b4efdcd01c56977720ee631260c266d290e8",
59
+ "byteSize": 15110
60
+ },
61
+ {
62
+ "path": "docs/agent/invariants.source.json",
63
+ "sha256": "cbf387d650629e88efa23d13bd1856146df7eb95cdb27f3d458d251322b7906d",
64
+ "byteSize": 7071
65
+ },
66
+ {
67
+ "path": "docs/agent/primitive-evidence.source.json",
68
+ "sha256": "c5909934699fb3c76bf66fe4c5c658e2db9a87309261506f1f5c50fa6410b45b",
69
+ "byteSize": 8607
70
+ },
71
+ {
72
+ "path": "docs/agent/primitives.json",
73
+ "sha256": "4bcd854d44eda53d1b4160d195be0e6af1156678439b8f222c88c5d91692366e",
74
+ "byteSize": 40874
75
+ },
76
+ {
77
+ "path": "docs/agent/recipes.json",
78
+ "sha256": "9e3cd1f4812e60efe0ccc6ebf35fb74c2ed3fefa8c1bef2923397046252ebe06",
79
+ "byteSize": 4396
80
+ },
81
+ {
82
+ "path": "docs/agent/recipes.source.json",
83
+ "sha256": "531879abc2060157a1840ea72f5f940674d9e2fb272b2b6f15b55ea816b78616",
84
+ "byteSize": 4302
85
+ },
86
+ {
87
+ "path": "docs/agent/schemas/capability-rules.source.schema.json",
88
+ "sha256": "1e70aeaae705c9bb3657daaf6ea568768015923cf1287c6da3d9bfa106b7d481",
89
+ "byteSize": 2396
90
+ },
91
+ {
92
+ "path": "docs/agent/schemas/error-metadata.source.schema.json",
93
+ "sha256": "76cc7aeb154aa2cbe6ea27225d3b7275a5df3885c667ae316d4fa95fd7a02b90",
94
+ "byteSize": 1191
95
+ },
96
+ {
97
+ "path": "docs/agent/schemas/external-vocabulary.source.schema.json",
98
+ "sha256": "233eb3f5c3784a0caab1ab0cc7a49812e5caacfa8288de30fcffe2b02754b961",
99
+ "byteSize": 1309
100
+ },
101
+ {
102
+ "path": "docs/agent/schemas/invariants.source.schema.json",
103
+ "sha256": "e92dcbbd3056d6d70ed733e53121e2217730e2466a8ac8bdd8c4d33e63e70973",
104
+ "byteSize": 1128
105
+ },
106
+ {
107
+ "path": "docs/agent/schemas/recipes.source.schema.json",
108
+ "sha256": "bdff4b5fccfa43f7ea5e308de35b1b25d826d1b62cdbc58043a84ee97aeaa65d",
109
+ "byteSize": 1802
110
+ },
111
+ {
112
+ "path": "docs/api/cli.md",
113
+ "sha256": "45e254ca97dde42c1f75407609dac457e6d2ce02234ec08339f1cd6d55e20ace",
114
+ "byteSize": 733
115
+ },
116
+ {
117
+ "path": "docs/api/client.md",
118
+ "sha256": "9d206ed56926e164a48569f2f36ea05dca272df458b26e400bfb47460ee144df",
119
+ "byteSize": 3350
120
+ },
121
+ {
122
+ "path": "docs/api/core.md",
123
+ "sha256": "e9435b92638ec068faac3e380bed907161dc365c69c487ff8bcc9bd5d971b8f1",
124
+ "byteSize": 69795
125
+ },
126
+ {
127
+ "path": "docs/api/runtime.md",
128
+ "sha256": "e24656ecdd2ae5b99a36cbeb85cd5e65e84ee0880ede55a46afa3311ec7b30bd",
129
+ "byteSize": 31356
130
+ },
131
+ {
132
+ "path": "docs/runtime-packages.md",
133
+ "sha256": "bd484dfea39f75fa97e2773e2ccec203163959261842516fb88cd13287bd708d",
134
+ "byteSize": 29411
135
+ },
136
+ {
137
+ "path": "docs/start-here.md",
138
+ "sha256": "9cfe1103d214681307af4a459ef77574805ae7e17af08a156b70460adcf705f6",
139
+ "byteSize": 2893
140
+ },
141
+ {
142
+ "path": "docs/surface.json",
143
+ "sha256": "83e13dee91fd2500ae3fa7b329f75061ec9789db92cff37184ffff6f9e7c2c9b",
144
+ "byteSize": 18787
145
+ },
146
+ {
147
+ "path": "package.json",
148
+ "sha256": "02940aa4cd34acac3b0b5bb1f39927754e94a23ce9b2a70a155004acb2e3afd4",
149
+ "byteSize": 5045
150
+ },
151
+ {
152
+ "path": "packages/cli/package.json",
153
+ "sha256": "1c2159ba24e9ef008bea31a4f6eed0b884f1b882479536ef4a0fcf8626696f57",
154
+ "byteSize": 691
155
+ },
156
+ {
157
+ "path": "packages/client/package.json",
158
+ "sha256": "d408d2940177fd71f73c9041d87043c476544738df9a7945eb09f2c99995ebb9",
159
+ "byteSize": 1246
160
+ },
161
+ {
162
+ "path": "packages/core/package.json",
163
+ "sha256": "d034f01df3a182485df8fc213441b0aaeaf3ab0cf2ea10fc2364f1ee8f11df42",
164
+ "byteSize": 3570
165
+ },
166
+ {
167
+ "path": "packages/evals/package.json",
168
+ "sha256": "d1b6aed4f7db19c6052b9ec9358e720ced7b106ef4ad2bd6d7cc9d37b0ab161d",
169
+ "byteSize": 532
170
+ },
171
+ {
172
+ "path": "packages/runtime/package.json",
173
+ "sha256": "b1ab0889c3af19999d41f66da04e54f99c24e1b3c76f88845a6b80653e17eed3",
174
+ "byteSize": 4008
175
+ },
176
+ {
177
+ "path": "tooling/docs-site/package.json",
178
+ "sha256": "02386636a3fbcfa1f8221f9a1648d959964cfe9ed804b80a1e13f2a21f624a68",
179
+ "byteSize": 303
180
+ }
181
+ ],
182
+ "outputFiles": [
183
+ {
184
+ "path": "agent-catalog/agentOS/SKILL.md",
185
+ "sha256": "a4acb0b6cdfbfa2accd1189d49f6993801dffd63be0972911b87218efee53999",
186
+ "byteSize": 1048
187
+ },
188
+ {
189
+ "path": "agent-catalog/agentOS/references/package-map.md",
190
+ "sha256": "da752eace7b9c924dfae92c3bb613caaf9dc2c6e367ddc444e892439d3ec8f0e",
191
+ "byteSize": 14055
192
+ },
193
+ {
194
+ "path": "agent-catalog/agentOS/references/public-api/core.md",
195
+ "sha256": "2caebc8ef86189ff0cea096221dfb14bfbcdb9ee507fc186af60c192eb872826",
196
+ "byteSize": 69797
197
+ },
198
+ {
199
+ "path": "agent-catalog/agentOS/references/public-api/runtime.md",
200
+ "sha256": "447552c27308476057d2a609bbaf5592e9b64558e795a0ff63e69c14a818b033",
201
+ "byteSize": 31358
202
+ },
203
+ {
204
+ "path": "agent-catalog/agentOS/references/public-api/client.md",
205
+ "sha256": "cd5b84b526ed085c4a4775e59fbadc1811fb4ee447d4edf272f4ef52eac02ec5",
206
+ "byteSize": 3352
207
+ },
208
+ {
209
+ "path": "agent-catalog/agentOS/references/public-api/cli.md",
210
+ "sha256": "f710dd2771ad370f003f6051eb715376a637151e046a98b06c068502abb2408a",
211
+ "byteSize": 735
212
+ },
213
+ {
214
+ "path": "agent-catalog/agentOS/references/agent/start-here.md",
215
+ "sha256": "9a01b676da04d3de17a1a208c528eea3a0156c2a0612340cb340c24c2f116225",
216
+ "byteSize": 2787
217
+ },
218
+ {
219
+ "path": "agent-catalog/agentOS/references/agent/recipes.json",
220
+ "sha256": "9e3cd1f4812e60efe0ccc6ebf35fb74c2ed3fefa8c1bef2923397046252ebe06",
221
+ "byteSize": 4396
222
+ },
223
+ {
224
+ "path": "agent-catalog/agentOS/references/agent/primitives.json",
225
+ "sha256": "4bcd854d44eda53d1b4160d195be0e6af1156678439b8f222c88c5d91692366e",
226
+ "byteSize": 40874
227
+ },
228
+ {
229
+ "path": "agent-catalog/agentOS/references/agent/decision-graph.json",
230
+ "sha256": "d92ced96c8625079e1974d0e98b5ee12eb96014bdf1974ada3ada7c294e2efd1",
231
+ "byteSize": 18149
232
+ },
233
+ {
234
+ "path": "agent-catalog/agentOS/references/agent/errors.json",
235
+ "sha256": "939229df05f67cecb8166a5716e73d3dcee017a311f6fd6802c466c78a082db7",
236
+ "byteSize": 25336
237
+ },
238
+ {
239
+ "path": "agent-catalog/agentOS/references/agent/invariant-matrix.json",
240
+ "sha256": "9aa62077a27c2c6b26b4c02d9fe7b4efdcd01c56977720ee631260c266d290e8",
241
+ "byteSize": 15110
242
+ }
243
+ ],
244
+ "outputHashScope": "all generated files except references/provenance.json to avoid a self-referential hash",
245
+ "prohibitedSources": [
246
+ "catalog.source.json",
247
+ "archived CST events",
248
+ "network/npm registry reads",
249
+ "runtime imports"
250
+ ]
251
+ }
@@ -0,0 +1,20 @@
1
+ # @yansirplus/cli Public API Intent
2
+
3
+ <!-- generated by packages/cli/src/generate/generate-docs.mjs; edit exported TSDoc in package source -->
4
+
5
+ ## Public exports
6
+
7
+ - `.:compileAgentTree` - Compile an authored `agent/` tree into one normalized manifest plus provenance. Runtime facts and provider material are rejected before they can become manifest truth.
8
+ - `.:linkWorkspaceStaticTarget` - Link normalized workspace authoring intent to a closed-target residual program. Implementation wiring is static imports and factory composition; manifest and deployment JSON remain semantic/provenance data only.
9
+
10
+ ## Experimental exports
11
+
12
+ None.
13
+
14
+ ## Deprecated exports
15
+
16
+ None.
17
+
18
+ ## Internal-only exports
19
+
20
+ Any package file or symbol not listed above.
@@ -0,0 +1,90 @@
1
+ # @yansirplus/client Public API Intent
2
+
3
+ ## Public exports
4
+
5
+ - `.:AgentClientCommandMap`
6
+ - `.:AgentClientCommandOptions`
7
+ - `.:AgentClientCommandSpec`
8
+ - `.:AgentClientConnectionSnapshot`
9
+ - `.:AgentClientConnectionStatus`
10
+ - `.:AgentClientController`
11
+ - `.:AgentClientInputRequestSnapshot`
12
+ - `.:AgentClientListener`
13
+ - `.:AgentClientRpcInvoker`
14
+ - `.:AgentClientRunInspectionSnapshot`
15
+ - `.:AgentClientRunSnapshot`
16
+ - `.:AgentClientRunStatus`
17
+ - `.:AgentClientSelector`
18
+ - `.:AgentClientSnapshot`
19
+ - `.:AgentClientStore`
20
+ - `.:AgentClientStoreController`
21
+ - `.:AgentClientStreamCursor`
22
+ - `.:AgentClientStreamOptions`
23
+ - `.:AgentClientStreamSource`
24
+ - `.:AgentClientUnsubscribe`
25
+ - `.:appendRuntimeEventsToSnapshot`
26
+ - `.:createAgentClient`
27
+ - `.:CreateAgentClientOptions`
28
+ - `.:createAgentClientStore`
29
+ - `.:createInitialAgentClientSnapshot`
30
+ - `.:isCurrentContinuationRef`
31
+ - `.:isCurrentInputRequestRef`
32
+ - `.:projectAgentClientRunInspection`
33
+ - `.:selectAgentClientSnapshot`
34
+ - `./react:AgentClientSelector`
35
+ - `./react:AgentClientStore`
36
+ - `./react:useAgentClientSnapshot`
37
+ - `./react:useClientStore`
38
+ - `./svelte:AgentClientSelector`
39
+ - `./svelte:AgentClientStore`
40
+ - `./svelte:clientReadable`
41
+ - `./svelte:selectClientReadable`
42
+ - `./workspace-agent:createWorkspaceAgentClient`
43
+ - `./workspace-agent:createWorkspaceAgentClientBridge`
44
+ - `./workspace-agent:CreateWorkspaceAgentClientOptions`
45
+ - `./workspace-agent:WORKSPACE_AGENT_COMMAND`
46
+ - `./workspace-agent:WORKSPACE_AGENT_PRODUCT_COMMAND`
47
+ - `./workspace-agent:WorkspaceAgentClient`
48
+ - `./workspace-agent:WorkspaceAgentClientBridge`
49
+ - `./workspace-agent:WorkspaceAgentCommandInputByName`
50
+ - `./workspace-agent:WorkspaceAgentCommandMap`
51
+ - `./workspace-agent:WorkspaceAgentCommandName`
52
+ - `./workspace-agent:WorkspaceAgentCommandOutputByName`
53
+ - `./workspace-agent:WorkspaceAgentCustomCommandInput`
54
+ - `./workspace-agent:WorkspaceAgentDecideInputRequestCommandInput`
55
+ - `./workspace-agent:WorkspaceAgentDestroyCommandInput`
56
+ - `./workspace-agent:WorkspaceAgentFileEntry`
57
+ - `./workspace-agent:WorkspaceAgentMutationCommandOutput`
58
+ - `./workspace-agent:WorkspaceAgentProductClient`
59
+ - `./workspace-agent:WorkspaceAgentProductCommandInputByName`
60
+ - `./workspace-agent:WorkspaceAgentProductCommandMap`
61
+ - `./workspace-agent:WorkspaceAgentProductCommandName`
62
+ - `./workspace-agent:WorkspaceAgentProductCommandOutputByName`
63
+ - `./workspace-agent:WorkspaceAgentProductProjectionTypes`
64
+ - `./workspace-agent:WorkspaceAgentProjectionName`
65
+ - `./workspace-agent:WorkspaceAgentReadFileCommandInput`
66
+ - `./workspace-agent:WorkspaceAgentReadFileCommandOutput`
67
+ - `./workspace-agent:WorkspaceAgentReadStateCommandInput`
68
+ - `./workspace-agent:WorkspaceAgentReadStateCommandOutput`
69
+ - `./workspace-agent:WorkspaceAgentResetCommandInput`
70
+ - `./workspace-agent:WorkspaceAgentResumeInputRequestCommandInput`
71
+ - `./workspace-agent:WorkspaceAgentSessionInspectInput`
72
+ - `./workspace-agent:WorkspaceAgentSessionsClient`
73
+ - `./workspace-agent:WorkspaceAgentSessionSubmitTurnInput`
74
+ - `./workspace-agent:WorkspaceAgentSubmitCommandInput`
75
+ - `./workspace-agent:WorkspaceAgentWorkflowRunInput`
76
+ - `./workspace-agent:WorkspaceAgentWorkflowRunRef`
77
+ - `./workspace-agent:WorkspaceAgentWorkflowRunsInput`
78
+ - `./workspace-agent:WorkspaceAgentWorkflowsClient`
79
+
80
+ ## Experimental exports
81
+
82
+ None.
83
+
84
+ ## Deprecated exports
85
+
86
+ None.
87
+
88
+ ## Internal-only exports
89
+
90
+ Any package file or symbol not listed above.