@contractspec/bundle.library 2.9.1 → 3.1.1
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/.turbo/turbo-build.log +240 -214
- package/AGENTS.md +19 -12
- package/CHANGELOG.md +84 -0
- package/dist/application/context-storage/index.d.ts +18 -0
- package/dist/application/context-storage/index.js +29 -0
- package/dist/application/index.d.ts +1 -0
- package/dist/application/index.js +662 -2
- package/dist/application/mcp/cliMcp.js +12 -2
- package/dist/application/mcp/common.d.ts +11 -1
- package/dist/application/mcp/common.js +12 -2
- package/dist/application/mcp/contractsMcp.d.ts +51 -0
- package/dist/application/mcp/contractsMcp.js +531 -0
- package/dist/application/mcp/contractsMcpResources.d.ts +7 -0
- package/dist/application/mcp/contractsMcpResources.js +124 -0
- package/dist/application/mcp/contractsMcpTools.d.ts +9 -0
- package/dist/application/mcp/contractsMcpTools.js +200 -0
- package/dist/application/mcp/contractsMcpTypes.d.ts +50 -0
- package/dist/application/mcp/contractsMcpTypes.js +1 -0
- package/dist/application/mcp/docsMcp.js +12 -2
- package/dist/application/mcp/index.d.ts +2 -0
- package/dist/application/mcp/index.js +635 -2
- package/dist/application/mcp/internalMcp.js +12 -2
- package/dist/application/mcp/providerRankingMcp.d.ts +46 -0
- package/dist/application/mcp/providerRankingMcp.js +494 -0
- package/dist/components/docs/DocsIndexPage.js +1 -1
- package/dist/components/docs/architecture/ArchitectureControlPlanePage.d.ts +1 -0
- package/dist/components/docs/architecture/ArchitectureControlPlanePage.js +204 -0
- package/dist/components/docs/architecture/ArchitectureOverviewPage.js +17 -1
- package/dist/components/docs/architecture/index.d.ts +1 -0
- package/dist/components/docs/architecture/index.js +507 -289
- package/dist/components/docs/ecosystem/IntegrationsPage.js +6 -3
- package/dist/components/docs/ecosystem/PluginsPage.js +98 -98
- package/dist/components/docs/ecosystem/RegistryPage.js +39 -42
- package/dist/components/docs/ecosystem/TemplatesPage.js +26 -21
- package/dist/components/docs/ecosystem/ecosystem.docblocks.js +10 -10
- package/dist/components/docs/ecosystem/index.js +179 -174
- package/dist/components/docs/index.js +6795 -5376
- package/dist/components/docs/integrations/IntegrationsElevenLabsPage.js +2 -2
- package/dist/components/docs/integrations/IntegrationsGithubPage.d.ts +1 -0
- package/dist/components/docs/integrations/IntegrationsGithubPage.js +155 -0
- package/dist/components/docs/integrations/IntegrationsHealthRoutingPage.d.ts +1 -0
- package/dist/components/docs/integrations/IntegrationsHealthRoutingPage.js +168 -0
- package/dist/components/docs/integrations/IntegrationsMistralPage.d.ts +1 -0
- package/dist/components/docs/integrations/IntegrationsMistralPage.js +203 -0
- package/dist/components/docs/integrations/IntegrationsOpenAIPage.js +2 -2
- package/dist/components/docs/integrations/IntegrationsOverviewPage.js +136 -9
- package/dist/components/docs/integrations/IntegrationsSlackPage.d.ts +1 -0
- package/dist/components/docs/integrations/IntegrationsSlackPage.js +161 -0
- package/dist/components/docs/integrations/IntegrationsSpecModelPage.js +72 -0
- package/dist/components/docs/integrations/IntegrationsTwilioPage.js +2 -2
- package/dist/components/docs/integrations/IntegrationsWhatsappMetaPage.d.ts +1 -0
- package/dist/components/docs/integrations/IntegrationsWhatsappMetaPage.js +157 -0
- package/dist/components/docs/integrations/IntegrationsWhatsappTwilioPage.d.ts +1 -0
- package/dist/components/docs/integrations/IntegrationsWhatsappTwilioPage.js +165 -0
- package/dist/components/docs/integrations/index.d.ts +6 -0
- package/dist/components/docs/integrations/index.js +1688 -492
- package/dist/index.js +8016 -6597
- package/dist/node/application/context-storage/index.js +28 -0
- package/dist/node/application/index.js +662 -2
- package/dist/node/application/mcp/cliMcp.js +12 -2
- package/dist/node/application/mcp/common.js +12 -2
- package/dist/node/application/mcp/contractsMcp.js +530 -0
- package/dist/node/application/mcp/contractsMcpResources.js +123 -0
- package/dist/node/application/mcp/contractsMcpTools.js +199 -0
- package/dist/node/application/mcp/contractsMcpTypes.js +0 -0
- package/dist/node/application/mcp/docsMcp.js +12 -2
- package/dist/node/application/mcp/index.js +635 -2
- package/dist/node/application/mcp/internalMcp.js +12 -2
- package/dist/node/application/mcp/providerRankingMcp.js +493 -0
- package/dist/node/components/docs/DocsIndexPage.js +1 -1
- package/dist/node/components/docs/architecture/ArchitectureControlPlanePage.js +203 -0
- package/dist/node/components/docs/architecture/ArchitectureOverviewPage.js +17 -1
- package/dist/node/components/docs/architecture/index.js +507 -289
- package/dist/node/components/docs/ecosystem/IntegrationsPage.js +6 -3
- package/dist/node/components/docs/ecosystem/PluginsPage.js +98 -98
- package/dist/node/components/docs/ecosystem/RegistryPage.js +39 -42
- package/dist/node/components/docs/ecosystem/TemplatesPage.js +26 -21
- package/dist/node/components/docs/ecosystem/ecosystem.docblocks.js +10 -10
- package/dist/node/components/docs/ecosystem/index.js +179 -174
- package/dist/node/components/docs/index.js +6795 -5376
- package/dist/node/components/docs/integrations/IntegrationsElevenLabsPage.js +2 -2
- package/dist/node/components/docs/integrations/IntegrationsGithubPage.js +154 -0
- package/dist/node/components/docs/integrations/IntegrationsHealthRoutingPage.js +167 -0
- package/dist/node/components/docs/integrations/IntegrationsMistralPage.js +202 -0
- package/dist/node/components/docs/integrations/IntegrationsOpenAIPage.js +2 -2
- package/dist/node/components/docs/integrations/IntegrationsOverviewPage.js +136 -9
- package/dist/node/components/docs/integrations/IntegrationsSlackPage.js +160 -0
- package/dist/node/components/docs/integrations/IntegrationsSpecModelPage.js +72 -0
- package/dist/node/components/docs/integrations/IntegrationsTwilioPage.js +2 -2
- package/dist/node/components/docs/integrations/IntegrationsWhatsappMetaPage.js +156 -0
- package/dist/node/components/docs/integrations/IntegrationsWhatsappTwilioPage.js +164 -0
- package/dist/node/components/docs/integrations/index.js +1688 -492
- package/dist/node/index.js +8016 -6597
- package/package.json +195 -25
- package/src/application/context-storage/index.ts +58 -0
- package/src/application/index.ts +1 -0
- package/src/application/mcp/common.ts +28 -1
- package/src/application/mcp/contractsMcp.ts +34 -0
- package/src/application/mcp/contractsMcpResources.ts +142 -0
- package/src/application/mcp/contractsMcpTools.ts +246 -0
- package/src/application/mcp/contractsMcpTypes.ts +47 -0
- package/src/application/mcp/index.ts +2 -0
- package/src/application/mcp/providerRankingMcp.ts +380 -0
- package/src/components/docs/DocsIndexPage.tsx +2 -1
- package/src/components/docs/architecture/ArchitectureControlPlanePage.tsx +136 -0
- package/src/components/docs/architecture/ArchitectureOverviewPage.tsx +13 -1
- package/src/components/docs/architecture/index.ts +1 -0
- package/src/components/docs/ecosystem/IntegrationsPage.tsx +4 -3
- package/src/components/docs/ecosystem/PluginsPage.tsx +68 -87
- package/src/components/docs/ecosystem/RegistryPage.tsx +35 -43
- package/src/components/docs/ecosystem/TemplatesPage.tsx +28 -21
- package/src/components/docs/ecosystem/ecosystem.docblocks.ts +12 -10
- package/src/components/docs/generated/docs-index._common.json +1119 -1
- package/src/components/docs/generated/docs-index.health.json +98 -0
- package/src/components/docs/generated/docs-index.manifest.json +15 -5
- package/src/components/docs/generated/docs-index.metrics.json +8 -0
- package/src/components/docs/generated/docs-index.platform-integrations.json +89 -1
- package/src/components/docs/generated/docs-index.video-api-showcase.json +26 -0
- package/src/components/docs/integrations/IntegrationsElevenLabsPage.tsx +2 -2
- package/src/components/docs/integrations/IntegrationsGithubPage.tsx +90 -0
- package/src/components/docs/integrations/IntegrationsHealthRoutingPage.tsx +112 -0
- package/src/components/docs/integrations/IntegrationsMistralPage.tsx +133 -0
- package/src/components/docs/integrations/IntegrationsOpenAIPage.tsx +2 -2
- package/src/components/docs/integrations/IntegrationsOverviewPage.tsx +108 -9
- package/src/components/docs/integrations/IntegrationsSlackPage.tsx +98 -0
- package/src/components/docs/integrations/IntegrationsSpecModelPage.tsx +59 -0
- package/src/components/docs/integrations/IntegrationsTwilioPage.tsx +2 -2
- package/src/components/docs/integrations/IntegrationsWhatsappMetaPage.tsx +90 -0
- package/src/components/docs/integrations/IntegrationsWhatsappTwilioPage.tsx +92 -0
- package/src/components/docs/integrations/index.ts +6 -0
|
@@ -1,4 +1,204 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"id": "_common/acp.fs.access",
|
|
4
|
+
"title": "acp.fs.access",
|
|
5
|
+
"summary": "Perform file system access within an ACP session.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: filesystem\n- **File**: `packages/libs/contracts-spec/src/acp/commands/acpFsAccess.command.ts`",
|
|
6
|
+
"route": "/docs/reference/_common/acp.fs.access",
|
|
7
|
+
"source": "generated",
|
|
8
|
+
"contentPath": "_common/acp.fs.access.md"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"id": "_common/acp.prompt.turn",
|
|
12
|
+
"title": "acp.prompt.turn",
|
|
13
|
+
"summary": "Execute a prompt turn within an ACP session.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: prompt\n- **File**: `packages/libs/contracts-spec/src/acp/commands/acpPromptTurn.command.ts`\nRun ACP prompt turns with tool calls and structured outputs.",
|
|
14
|
+
"route": "/docs/reference/_common/acp.prompt.turn",
|
|
15
|
+
"source": "generated",
|
|
16
|
+
"contentPath": "_common/acp.prompt.turn.md"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"id": "_common/acp.session.init",
|
|
20
|
+
"title": "acp.session.init",
|
|
21
|
+
"summary": "Initialize a new ACP session.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: session\n- **File**: `packages/libs/contracts-spec/src/acp/commands/acpSessionInit.command.ts`\nStart a governed ACP session with configured tools and policies.",
|
|
22
|
+
"route": "/docs/reference/_common/acp.session.init",
|
|
23
|
+
"source": "generated",
|
|
24
|
+
"contentPath": "_common/acp.session.init.md"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"id": "_common/acp.session.resume",
|
|
28
|
+
"title": "acp.session.resume",
|
|
29
|
+
"summary": "Resume an existing ACP session.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: session\n- **File**: `packages/libs/contracts-spec/src/acp/commands/acpSessionResume.command.ts`\nContinue a previously initialized ACP session with full context.",
|
|
30
|
+
"route": "/docs/reference/_common/acp.session.resume",
|
|
31
|
+
"source": "generated",
|
|
32
|
+
"contentPath": "_common/acp.session.resume.md"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"id": "_common/acp.session.stop",
|
|
36
|
+
"title": "acp.session.stop",
|
|
37
|
+
"summary": "Stop an active ACP session.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: session\n- **File**: `packages/libs/contracts-spec/src/acp/commands/acpSessionStop.command.ts`\nTerminate ACP sessions cleanly with audit trails.",
|
|
38
|
+
"route": "/docs/reference/_common/acp.session.stop",
|
|
39
|
+
"source": "generated",
|
|
40
|
+
"contentPath": "_common/acp.session.stop.md"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"id": "_common/acp.terminal.exec",
|
|
44
|
+
"title": "acp.terminal.exec",
|
|
45
|
+
"summary": "Execute a terminal command within an ACP session.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: terminal\n- **File**: `packages/libs/contracts-spec/src/acp/commands/acpTerminalExec.command.ts`",
|
|
46
|
+
"route": "/docs/reference/_common/acp.terminal.exec",
|
|
47
|
+
"source": "generated",
|
|
48
|
+
"contentPath": "_common/acp.terminal.exec.md"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"id": "_common/acp.tool.calls",
|
|
52
|
+
"title": "acp.tool.calls",
|
|
53
|
+
"summary": "Execute tool calls within an ACP session.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: tools\n- **File**: `packages/libs/contracts-spec/src/acp/commands/acpToolCalls.command.ts`\nRun tool calls with safe governance and telemetry.",
|
|
54
|
+
"route": "/docs/reference/_common/acp.tool.calls",
|
|
55
|
+
"source": "generated",
|
|
56
|
+
"contentPath": "_common/acp.tool.calls.md"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": "_common/acp.transport",
|
|
60
|
+
"title": "acp.transport",
|
|
61
|
+
"summary": "Agent Client Protocol transport surfaces.\n- **Type**: capability (capability)\n- **Version**: 1.0.0\n- **Tags**: transport\n- **File**: `packages/libs/contracts-spec/src/acp/capabilities/acpTransport.capability.ts`",
|
|
62
|
+
"route": "/docs/reference/_common/acp.transport",
|
|
63
|
+
"source": "generated",
|
|
64
|
+
"contentPath": "_common/acp.transport.md"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"id": "_common/agent.approval.requested",
|
|
68
|
+
"title": "agent.approval.requested",
|
|
69
|
+
"summary": "Emitted when an approval is required for an agent action.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: approval\n- **File**: `packages/libs/contracts-spec/src/agent/events/agentApprovalRequested.event.ts`",
|
|
70
|
+
"route": "/docs/reference/_common/agent.approval.requested",
|
|
71
|
+
"source": "generated",
|
|
72
|
+
"contentPath": "_common/agent.approval.requested.md"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"id": "_common/agent.approvals",
|
|
76
|
+
"title": "agent.approvals",
|
|
77
|
+
"summary": "Approve or reject an agent step or run.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: approval\n- **File**: `packages/libs/contracts-spec/src/agent/commands/agentApprovals.command.ts`\nProvide governed human-in-the-loop control for risky steps.",
|
|
78
|
+
"route": "/docs/reference/_common/agent.approvals",
|
|
79
|
+
"source": "generated",
|
|
80
|
+
"contentPath": "_common/agent.approvals.md"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"id": "_common/agent.artifacts",
|
|
84
|
+
"title": "agent.artifacts",
|
|
85
|
+
"summary": "List artifacts produced by an agent run.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: artifacts\n- **File**: `packages/libs/contracts-spec/src/agent/queries/agentArtifacts.query.ts`\nProvide traceable outputs for audits and UI surfaces.",
|
|
86
|
+
"route": "/docs/reference/_common/agent.artifacts",
|
|
87
|
+
"source": "generated",
|
|
88
|
+
"contentPath": "_common/agent.artifacts.md"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"id": "_common/agent.cancel",
|
|
92
|
+
"title": "agent.cancel",
|
|
93
|
+
"summary": "Cancel an in-flight agent run.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: run, cancel\n- **File**: `packages/libs/contracts-spec/src/agent/commands/agentCancel.command.ts`\nProvide safe operator control to stop background agents.",
|
|
94
|
+
"route": "/docs/reference/_common/agent.cancel",
|
|
95
|
+
"source": "generated",
|
|
96
|
+
"contentPath": "_common/agent.cancel.md"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"id": "_common/agent.execution",
|
|
100
|
+
"title": "agent.execution",
|
|
101
|
+
"summary": "Background agent execution, approvals, and artifacts.\n- **Type**: capability (capability)\n- **Version**: 1.0.0\n- **Tags**: execution\n- **File**: `packages/libs/contracts-spec/src/agent/capabilities/agentExecution.capability.ts`",
|
|
102
|
+
"route": "/docs/reference/_common/agent.execution",
|
|
103
|
+
"source": "generated",
|
|
104
|
+
"contentPath": "_common/agent.execution.md"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"id": "_common/agent.run",
|
|
108
|
+
"title": "agent.run",
|
|
109
|
+
"summary": "Submit a background agent run with a context snapshot.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: run\n- **File**: `packages/libs/contracts-spec/src/agent/commands/agentRun.command.ts`",
|
|
110
|
+
"route": "/docs/reference/_common/agent.run",
|
|
111
|
+
"source": "generated",
|
|
112
|
+
"contentPath": "_common/agent.run.md"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"id": "_common/agent.run.audit",
|
|
116
|
+
"title": "agent.run.audit",
|
|
117
|
+
"summary": "Audit layout for agent runs and artifacts.\n- **Type**: presentation (presentation)\n- **Version**: 1.0.0\n- **Tags**: audit\n- **File**: `packages/libs/contracts-spec/src/agent/presentations/agentRunAudit.presentation.ts`",
|
|
118
|
+
"route": "/docs/reference/_common/agent.run.audit",
|
|
119
|
+
"source": "generated",
|
|
120
|
+
"contentPath": "_common/agent.run.audit.md"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"id": "_common/agent.run.completed",
|
|
124
|
+
"title": "agent.run.completed",
|
|
125
|
+
"summary": "Emitted when an agent run completes successfully.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: run\n- **File**: `packages/libs/contracts-spec/src/agent/events/agentRunCompleted.event.ts`\n```typescript",
|
|
126
|
+
"route": "/docs/reference/_common/agent.run.completed",
|
|
127
|
+
"source": "generated",
|
|
128
|
+
"contentPath": "_common/agent.run.completed.md"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"id": "_common/agent.run.failed",
|
|
132
|
+
"title": "agent.run.failed",
|
|
133
|
+
"summary": "Emitted when an agent run fails.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: run\n- **File**: `packages/libs/contracts-spec/src/agent/events/agentRunFailed.event.ts`\n```typescript\nexport const AgentRunFailedEvent = defineEvent({",
|
|
134
|
+
"route": "/docs/reference/_common/agent.run.failed",
|
|
135
|
+
"source": "generated",
|
|
136
|
+
"contentPath": "_common/agent.run.failed.md"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"id": "_common/agent.run.started",
|
|
140
|
+
"title": "agent.run.started",
|
|
141
|
+
"summary": "Emitted when an agent run starts executing.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: run\n- **File**: `packages/libs/contracts-spec/src/agent/events/agentRunStarted.event.ts`\n```typescript\nexport const AgentRunStartedEvent = defineEvent({",
|
|
142
|
+
"route": "/docs/reference/_common/agent.run.started",
|
|
143
|
+
"source": "generated",
|
|
144
|
+
"contentPath": "_common/agent.run.started.md"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"id": "_common/agent.status",
|
|
148
|
+
"title": "agent.status",
|
|
149
|
+
"summary": "Get status for agent runs.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: status\n- **File**: `packages/libs/contracts-spec/src/agent/queries/agentStatus.query.ts`\nProvide status and progress visibility for background agents.",
|
|
150
|
+
"route": "/docs/reference/_common/agent.status",
|
|
151
|
+
"source": "generated",
|
|
152
|
+
"contentPath": "_common/agent.status.md"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"id": "_common/context.pack.describe",
|
|
156
|
+
"title": "context.pack.describe",
|
|
157
|
+
"summary": "Describe a context pack and its sources.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: pack, describe\n- **File**: `packages/libs/contracts-spec/src/context/queries/contextPackDescribe.query.ts`",
|
|
158
|
+
"route": "/docs/reference/_common/context.pack.describe",
|
|
159
|
+
"source": "generated",
|
|
160
|
+
"contentPath": "_common/context.pack.describe.md"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"id": "_common/context.pack.search",
|
|
164
|
+
"title": "context.pack.search",
|
|
165
|
+
"summary": "Search and filter context packs and snapshots.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: pack, search\n- **File**: `packages/libs/contracts-spec/src/context/queries/contextPackSearch.query.ts`",
|
|
166
|
+
"route": "/docs/reference/_common/context.pack.search",
|
|
167
|
+
"source": "generated",
|
|
168
|
+
"contentPath": "_common/context.pack.search.md"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"id": "_common/context.pack.snapshot",
|
|
172
|
+
"title": "context.pack.snapshot",
|
|
173
|
+
"summary": "Create an immutable snapshot from a context pack.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: snapshot, create\n- **File**: `packages/libs/contracts-spec/src/context/commands/contextPackSnapshot.command.ts`",
|
|
174
|
+
"route": "/docs/reference/_common/context.pack.snapshot",
|
|
175
|
+
"source": "generated",
|
|
176
|
+
"contentPath": "_common/context.pack.snapshot.md"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"id": "_common/context.snapshot.created",
|
|
180
|
+
"title": "context.snapshot.created",
|
|
181
|
+
"summary": "Emitted when a context snapshot is created.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: snapshot\n- **File**: `packages/libs/contracts-spec/src/context/events/contextSnapshotCreated.event.ts`",
|
|
182
|
+
"route": "/docs/reference/_common/context.snapshot.created",
|
|
183
|
+
"source": "generated",
|
|
184
|
+
"contentPath": "_common/context.snapshot.created.md"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"id": "_common/context.snapshot.summary",
|
|
188
|
+
"title": "context.snapshot.summary",
|
|
189
|
+
"summary": "Summary layout for context snapshots.\n- **Type**: presentation (presentation)\n- **Version**: 1.0.0\n- **Tags**: snapshot, summary\n- **File**: `packages/libs/contracts-spec/src/context/presentations/contextSnapshot.presentation.ts`",
|
|
190
|
+
"route": "/docs/reference/_common/context.snapshot.summary",
|
|
191
|
+
"source": "generated",
|
|
192
|
+
"contentPath": "_common/context.snapshot.summary.md"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"id": "_common/context.system",
|
|
196
|
+
"title": "context.system",
|
|
197
|
+
"summary": "Context packs, snapshots, and discovery surfaces.\n- **Type**: capability (capability)\n- **Version**: 1.0.0\n- **Tags**: system\n- **File**: `packages/libs/contracts-spec/src/context/capabilities/contextSystem.capability.ts`",
|
|
198
|
+
"route": "/docs/reference/_common/context.system",
|
|
199
|
+
"source": "generated",
|
|
200
|
+
"contentPath": "_common/context.system.md"
|
|
201
|
+
},
|
|
2
202
|
{
|
|
3
203
|
"id": "_common/contractspec.docs",
|
|
4
204
|
"title": "contractspec.docs",
|
|
@@ -23,6 +223,286 @@
|
|
|
23
223
|
"source": "generated",
|
|
24
224
|
"contentPath": "_common/contractspec.presentations.md"
|
|
25
225
|
},
|
|
226
|
+
{
|
|
227
|
+
"id": "_common/control-plane.approval",
|
|
228
|
+
"title": "control-plane.approval",
|
|
229
|
+
"summary": "Human approval and rejection gates for execution steps.\n- **Type**: capability (capability)\n- **Version**: 1.0.0\n- **Tags**: approval\n- **File**: `packages/libs/contracts-spec/src/control-plane/capabilities/controlPlaneApproval.capability.ts`",
|
|
230
|
+
"route": "/docs/reference/_common/control-plane.approval",
|
|
231
|
+
"source": "generated",
|
|
232
|
+
"contentPath": "_common/control-plane.approval.md"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"id": "_common/control-plane.audit",
|
|
236
|
+
"title": "control-plane.audit",
|
|
237
|
+
"summary": "Trace, policy explanation, and replay-grade observability.\n- **Type**: capability (capability)\n- **Version**: 1.0.0\n- **Tags**: audit\n- **File**: `packages/libs/contracts-spec/src/control-plane/capabilities/controlPlaneAudit.capability.ts`",
|
|
238
|
+
"route": "/docs/reference/_common/control-plane.audit",
|
|
239
|
+
"source": "generated",
|
|
240
|
+
"contentPath": "_common/control-plane.audit.md"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"id": "_common/control-plane.channel-runtime",
|
|
244
|
+
"title": "control-plane.channel-runtime",
|
|
245
|
+
"summary": "Channel-facing runtime surfaces for controlled execution.\n- **Type**: capability (capability)\n- **Version**: 1.0.0\n- **Tags**: channels\n- **File**: `packages/libs/contracts-spec/src/control-plane/capabilities/controlPlaneChannelRuntime.capability.ts`",
|
|
246
|
+
"route": "/docs/reference/_common/control-plane.channel-runtime",
|
|
247
|
+
"source": "generated",
|
|
248
|
+
"contentPath": "_common/control-plane.channel-runtime.md"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"id": "_common/control-plane.core",
|
|
252
|
+
"title": "control-plane.core",
|
|
253
|
+
"summary": "Core intent, planning, and execution surfaces.\n- **Type**: capability (capability)\n- **Version**: 1.0.0\n- **Tags**: core\n- **File**: `packages/libs/contracts-spec/src/control-plane/capabilities/controlPlaneCore.capability.ts`",
|
|
254
|
+
"route": "/docs/reference/_common/control-plane.core",
|
|
255
|
+
"source": "generated",
|
|
256
|
+
"contentPath": "_common/control-plane.core.md"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"id": "_common/control-plane.skill-registry",
|
|
260
|
+
"title": "control-plane.skill-registry",
|
|
261
|
+
"summary": "Signed skill lifecycle and compatibility governance.\n- **Type**: capability (capability)\n- **Version**: 1.0.0\n- **Tags**: skills\n- **File**: `packages/libs/contracts-spec/src/control-plane/capabilities/controlPlaneSkillRegistry.capability.ts`",
|
|
262
|
+
"route": "/docs/reference/_common/control-plane.skill-registry",
|
|
263
|
+
"source": "generated",
|
|
264
|
+
"contentPath": "_common/control-plane.skill-registry.md"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"id": "_common/controlPlane.execution.approve",
|
|
268
|
+
"title": "controlPlane.execution.approve",
|
|
269
|
+
"summary": "Approve a pending execution step for continuation.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: approval\n- **File**: `packages/libs/contracts-spec/src/control-plane/commands/controlPlaneExecutionApprove.command.ts`",
|
|
270
|
+
"route": "/docs/reference/_common/controlPlane.execution.approve",
|
|
271
|
+
"source": "generated",
|
|
272
|
+
"contentPath": "_common/controlPlane.execution.approve.md"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"id": "_common/controlPlane.execution.cancel",
|
|
276
|
+
"title": "controlPlane.execution.cancel",
|
|
277
|
+
"summary": "Cancel an execution run and transition to terminal state.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: execution, approval\n- **File**: `packages/libs/contracts-spec/src/control-plane/commands/controlPlaneExecutionCancel.command.ts`",
|
|
278
|
+
"route": "/docs/reference/_common/controlPlane.execution.cancel",
|
|
279
|
+
"source": "generated",
|
|
280
|
+
"contentPath": "_common/controlPlane.execution.cancel.md"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"id": "_common/controlPlane.execution.completed",
|
|
284
|
+
"title": "controlPlane.execution.completed",
|
|
285
|
+
"summary": "Emitted when an execution run finishes successfully.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: execution\n- **File**: `packages/libs/contracts-spec/src/control-plane/events/controlPlaneExecutionCompleted.event.ts`",
|
|
286
|
+
"route": "/docs/reference/_common/controlPlane.execution.completed",
|
|
287
|
+
"source": "generated",
|
|
288
|
+
"contentPath": "_common/controlPlane.execution.completed.md"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"id": "_common/controlPlane.execution.failed",
|
|
292
|
+
"title": "controlPlane.execution.failed",
|
|
293
|
+
"summary": "Emitted when an execution run fails.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: execution, failure\n- **File**: `packages/libs/contracts-spec/src/control-plane/events/controlPlaneExecutionFailed.event.ts`",
|
|
294
|
+
"route": "/docs/reference/_common/controlPlane.execution.failed",
|
|
295
|
+
"source": "generated",
|
|
296
|
+
"contentPath": "_common/controlPlane.execution.failed.md"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"id": "_common/controlPlane.execution.get",
|
|
300
|
+
"title": "controlPlane.execution.get",
|
|
301
|
+
"summary": "Fetch the latest state for one execution.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: execution\n- **File**: `packages/libs/contracts-spec/src/control-plane/queries/controlPlaneExecutionGet.query.ts`",
|
|
302
|
+
"route": "/docs/reference/_common/controlPlane.execution.get",
|
|
303
|
+
"source": "generated",
|
|
304
|
+
"contentPath": "_common/controlPlane.execution.get.md"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"id": "_common/controlPlane.execution.list",
|
|
308
|
+
"title": "controlPlane.execution.list",
|
|
309
|
+
"summary": "List execution runs with filtering and pagination.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: execution\n- **File**: `packages/libs/contracts-spec/src/control-plane/queries/controlPlaneExecutionList.query.ts`",
|
|
310
|
+
"route": "/docs/reference/_common/controlPlane.execution.list",
|
|
311
|
+
"source": "generated",
|
|
312
|
+
"contentPath": "_common/controlPlane.execution.list.md"
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"id": "_common/controlPlane.execution.reject",
|
|
316
|
+
"title": "controlPlane.execution.reject",
|
|
317
|
+
"summary": "Reject a pending execution step.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: approval\n- **File**: `packages/libs/contracts-spec/src/control-plane/commands/controlPlaneExecutionReject.command.ts`",
|
|
318
|
+
"route": "/docs/reference/_common/controlPlane.execution.reject",
|
|
319
|
+
"source": "generated",
|
|
320
|
+
"contentPath": "_common/controlPlane.execution.reject.md"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"id": "_common/controlPlane.execution.start",
|
|
324
|
+
"title": "controlPlane.execution.start",
|
|
325
|
+
"summary": "Start executing an approved compiled plan.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: execution\n- **File**: `packages/libs/contracts-spec/src/control-plane/commands/controlPlaneExecutionStart.command.ts`",
|
|
326
|
+
"route": "/docs/reference/_common/controlPlane.execution.start",
|
|
327
|
+
"source": "generated",
|
|
328
|
+
"contentPath": "_common/controlPlane.execution.start.md"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"id": "_common/controlPlane.execution.step.blocked",
|
|
332
|
+
"title": "controlPlane.execution.step.blocked",
|
|
333
|
+
"summary": "Emitted when policy blocks an execution step.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: execution, blocked\n- **File**: `packages/libs/contracts-spec/src/control-plane/events/controlPlaneExecutionStepBlocked.event.ts`",
|
|
334
|
+
"route": "/docs/reference/_common/controlPlane.execution.step.blocked",
|
|
335
|
+
"source": "generated",
|
|
336
|
+
"contentPath": "_common/controlPlane.execution.step.blocked.md"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"id": "_common/controlPlane.execution.step.completed",
|
|
340
|
+
"title": "controlPlane.execution.step.completed",
|
|
341
|
+
"summary": "Emitted when an execution step completes.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: execution\n- **File**: `packages/libs/contracts-spec/src/control-plane/events/controlPlaneExecutionStepCompleted.event.ts`",
|
|
342
|
+
"route": "/docs/reference/_common/controlPlane.execution.step.completed",
|
|
343
|
+
"source": "generated",
|
|
344
|
+
"contentPath": "_common/controlPlane.execution.step.completed.md"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"id": "_common/controlPlane.execution.step.started",
|
|
348
|
+
"title": "controlPlane.execution.step.started",
|
|
349
|
+
"summary": "Emitted when an execution step starts.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: execution\n- **File**: `packages/libs/contracts-spec/src/control-plane/events/controlPlaneExecutionStepStarted.event.ts`",
|
|
350
|
+
"route": "/docs/reference/_common/controlPlane.execution.step.started",
|
|
351
|
+
"source": "generated",
|
|
352
|
+
"contentPath": "_common/controlPlane.execution.step.started.md"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"id": "_common/controlPlane.intent.received",
|
|
356
|
+
"title": "controlPlane.intent.received",
|
|
357
|
+
"summary": "Emitted when a new control plane intent is accepted.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: intent\n- **File**: `packages/libs/contracts-spec/src/control-plane/events/controlPlaneIntentReceived.event.ts`",
|
|
358
|
+
"route": "/docs/reference/_common/controlPlane.intent.received",
|
|
359
|
+
"source": "generated",
|
|
360
|
+
"contentPath": "_common/controlPlane.intent.received.md"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"id": "_common/controlPlane.intent.submit",
|
|
364
|
+
"title": "controlPlane.intent.submit",
|
|
365
|
+
"summary": "Submit a natural-language intent to the control plane.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: intent\n- **File**: `packages/libs/contracts-spec/src/control-plane/commands/controlPlaneIntentSubmit.command.ts`",
|
|
366
|
+
"route": "/docs/reference/_common/controlPlane.intent.submit",
|
|
367
|
+
"source": "generated",
|
|
368
|
+
"contentPath": "_common/controlPlane.intent.submit.md"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"id": "_common/controlPlane.plan.compile",
|
|
372
|
+
"title": "controlPlane.plan.compile",
|
|
373
|
+
"summary": "Compile an intent into a deterministic plan DAG.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: plan\n- **File**: `packages/libs/contracts-spec/src/control-plane/commands/controlPlanePlanCompile.command.ts`",
|
|
374
|
+
"route": "/docs/reference/_common/controlPlane.plan.compile",
|
|
375
|
+
"source": "generated",
|
|
376
|
+
"contentPath": "_common/controlPlane.plan.compile.md"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"id": "_common/controlPlane.plan.compiled",
|
|
380
|
+
"title": "controlPlane.plan.compiled",
|
|
381
|
+
"summary": "Emitted when an intent is compiled into an executable plan.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: plan\n- **File**: `packages/libs/contracts-spec/src/control-plane/events/controlPlanePlanCompiled.event.ts`",
|
|
382
|
+
"route": "/docs/reference/_common/controlPlane.plan.compiled",
|
|
383
|
+
"source": "generated",
|
|
384
|
+
"contentPath": "_common/controlPlane.plan.compiled.md"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"id": "_common/controlPlane.plan.rejected",
|
|
388
|
+
"title": "controlPlane.plan.rejected",
|
|
389
|
+
"summary": "Emitted when a plan fails verification or governance checks.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: plan, governance\n- **File**: `packages/libs/contracts-spec/src/control-plane/events/controlPlanePlanRejected.event.ts`",
|
|
390
|
+
"route": "/docs/reference/_common/controlPlane.plan.rejected",
|
|
391
|
+
"source": "generated",
|
|
392
|
+
"contentPath": "_common/controlPlane.plan.rejected.md"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"id": "_common/controlPlane.plan.verify",
|
|
396
|
+
"title": "controlPlane.plan.verify",
|
|
397
|
+
"summary": "Run policy and risk validation against a compiled plan.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: plan, governance\n- **File**: `packages/libs/contracts-spec/src/control-plane/commands/controlPlanePlanVerify.command.ts`",
|
|
398
|
+
"route": "/docs/reference/_common/controlPlane.plan.verify",
|
|
399
|
+
"source": "generated",
|
|
400
|
+
"contentPath": "_common/controlPlane.plan.verify.md"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"id": "_common/controlPlane.policy.explain",
|
|
404
|
+
"title": "controlPlane.policy.explain",
|
|
405
|
+
"summary": "Explain policy outcomes for an execution or step.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: policy, audit\n- **File**: `packages/libs/contracts-spec/src/control-plane/queries/controlPlanePolicyExplain.query.ts`",
|
|
406
|
+
"route": "/docs/reference/_common/controlPlane.policy.explain",
|
|
407
|
+
"source": "generated",
|
|
408
|
+
"contentPath": "_common/controlPlane.policy.explain.md"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"id": "_common/controlPlane.skill.disable",
|
|
412
|
+
"title": "controlPlane.skill.disable",
|
|
413
|
+
"summary": "Disable an installed skill in the control plane registry.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: skills, governance\n- **File**: `packages/libs/contracts-spec/src/control-plane/commands/controlPlaneSkillDisable.command.ts`",
|
|
414
|
+
"route": "/docs/reference/_common/controlPlane.skill.disable",
|
|
415
|
+
"source": "generated",
|
|
416
|
+
"contentPath": "_common/controlPlane.skill.disable.md"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"id": "_common/controlPlane.skill.install",
|
|
420
|
+
"title": "controlPlane.skill.install",
|
|
421
|
+
"summary": "Install a signed skill artifact after verification checks.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: skills\n- **File**: `packages/libs/contracts-spec/src/control-plane/commands/controlPlaneSkillInstall.command.ts`",
|
|
422
|
+
"route": "/docs/reference/_common/controlPlane.skill.install",
|
|
423
|
+
"source": "generated",
|
|
424
|
+
"contentPath": "_common/controlPlane.skill.install.md"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"id": "_common/controlPlane.skill.installed",
|
|
428
|
+
"title": "controlPlane.skill.installed",
|
|
429
|
+
"summary": "Emitted when a skill artifact is verified and installed.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: skills\n- **File**: `packages/libs/contracts-spec/src/control-plane/events/controlPlaneSkillInstalled.event.ts`",
|
|
430
|
+
"route": "/docs/reference/_common/controlPlane.skill.installed",
|
|
431
|
+
"source": "generated",
|
|
432
|
+
"contentPath": "_common/controlPlane.skill.installed.md"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"id": "_common/controlPlane.skill.list",
|
|
436
|
+
"title": "controlPlane.skill.list",
|
|
437
|
+
"summary": "List installed and available skill artifacts.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: skills\n- **File**: `packages/libs/contracts-spec/src/control-plane/queries/controlPlaneSkillList.query.ts`",
|
|
438
|
+
"route": "/docs/reference/_common/controlPlane.skill.list",
|
|
439
|
+
"source": "generated",
|
|
440
|
+
"contentPath": "_common/controlPlane.skill.list.md"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"id": "_common/controlPlane.skill.rejected",
|
|
444
|
+
"title": "controlPlane.skill.rejected",
|
|
445
|
+
"summary": "Emitted when a skill install attempt is rejected.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: skills, governance\n- **File**: `packages/libs/contracts-spec/src/control-plane/events/controlPlaneSkillRejected.event.ts`",
|
|
446
|
+
"route": "/docs/reference/_common/controlPlane.skill.rejected",
|
|
447
|
+
"source": "generated",
|
|
448
|
+
"contentPath": "_common/controlPlane.skill.rejected.md"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"id": "_common/controlPlane.skill.verify",
|
|
452
|
+
"title": "controlPlane.skill.verify",
|
|
453
|
+
"summary": "Verify skill signature and compatibility constraints.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: skills, governance\n- **File**: `packages/libs/contracts-spec/src/control-plane/queries/controlPlaneSkillVerify.query.ts`",
|
|
454
|
+
"route": "/docs/reference/_common/controlPlane.skill.verify",
|
|
455
|
+
"source": "generated",
|
|
456
|
+
"contentPath": "_common/controlPlane.skill.verify.md"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"id": "_common/controlPlane.trace.get",
|
|
460
|
+
"title": "controlPlane.trace.get",
|
|
461
|
+
"summary": "Return the replayable trace timeline for one execution.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: trace, audit\n- **File**: `packages/libs/contracts-spec/src/control-plane/queries/controlPlaneTraceGet.query.ts`",
|
|
462
|
+
"route": "/docs/reference/_common/controlPlane.trace.get",
|
|
463
|
+
"source": "generated",
|
|
464
|
+
"contentPath": "_common/controlPlane.trace.get.md"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"id": "_common/database.context",
|
|
468
|
+
"title": "database.context",
|
|
469
|
+
"summary": "Schema, migration, dictionary, and read-only query surfaces.\n- **Type**: capability (capability)\n- **Version**: 1.0.0\n- **Tags**: context\n- **File**: `packages/libs/contracts-spec/src/database/capabilities/databaseContext.capability.ts`",
|
|
470
|
+
"route": "/docs/reference/_common/database.context",
|
|
471
|
+
"source": "generated",
|
|
472
|
+
"contentPath": "_common/database.context.md"
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"id": "_common/database.dictionary.get",
|
|
476
|
+
"title": "database.dictionary.get",
|
|
477
|
+
"summary": "Retrieve a data dictionary entry for a schema field.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: dictionary\n- **File**: `packages/libs/contracts-spec/src/database/queries/databaseDictionaryGet.query.ts`",
|
|
478
|
+
"route": "/docs/reference/_common/database.dictionary.get",
|
|
479
|
+
"source": "generated",
|
|
480
|
+
"contentPath": "_common/database.dictionary.get.md"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"id": "_common/database.migrations.list",
|
|
484
|
+
"title": "database.migrations.list",
|
|
485
|
+
"summary": "List registered database migrations and statuses.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: migrations\n- **File**: `packages/libs/contracts-spec/src/database/queries/databaseMigrationsList.query.ts`",
|
|
486
|
+
"route": "/docs/reference/_common/database.migrations.list",
|
|
487
|
+
"source": "generated",
|
|
488
|
+
"contentPath": "_common/database.migrations.list.md"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"id": "_common/database.query.readonly",
|
|
492
|
+
"title": "database.query.readonly",
|
|
493
|
+
"summary": "Execute a governed read-only query via a data view.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: query, readonly\n- **File**: `packages/libs/contracts-spec/src/database/queries/databaseQueryReadonly.query.ts`",
|
|
494
|
+
"route": "/docs/reference/_common/database.query.readonly",
|
|
495
|
+
"source": "generated",
|
|
496
|
+
"contentPath": "_common/database.query.readonly.md"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"id": "_common/database.schema.describe",
|
|
500
|
+
"title": "database.schema.describe",
|
|
501
|
+
"summary": "Describe database schemas and models with PII indicators.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: describe\n- **File**: `packages/libs/contracts-spec/src/database/queries/databaseSchemaDescribe.query.ts`",
|
|
502
|
+
"route": "/docs/reference/_common/database.schema.describe",
|
|
503
|
+
"source": "generated",
|
|
504
|
+
"contentPath": "_common/database.schema.describe.md"
|
|
505
|
+
},
|
|
26
506
|
{
|
|
27
507
|
"id": "_common/docs.contract.reference",
|
|
28
508
|
"title": "docs.contract.reference",
|
|
@@ -111,6 +591,94 @@
|
|
|
111
591
|
"source": "generated",
|
|
112
592
|
"contentPath": "_common/opencode.example.echo.md"
|
|
113
593
|
},
|
|
594
|
+
{
|
|
595
|
+
"id": "_common/provider-ranking.benchmark.custom.completed",
|
|
596
|
+
"title": "provider-ranking.benchmark.custom.completed",
|
|
597
|
+
"summary": "Emitted when a custom benchmark run finishes.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: custom, eval\n- **File**: `packages/libs/contracts-spec/src/provider-ranking/events/benchmarkCustomCompleted.event.ts`",
|
|
598
|
+
"route": "/docs/reference/_common/provider-ranking.benchmark.custom.completed",
|
|
599
|
+
"source": "generated",
|
|
600
|
+
"contentPath": "_common/provider-ranking.benchmark.custom.completed.md"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"id": "_common/provider-ranking.benchmark.ingest",
|
|
604
|
+
"title": "provider-ranking.benchmark.ingest",
|
|
605
|
+
"summary": "Trigger ingestion of external benchmark data from a public source.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: ingest\n- **File**: `packages/libs/contracts-spec/src/provider-ranking/commands/benchmarkIngest.command.ts`",
|
|
606
|
+
"route": "/docs/reference/_common/provider-ranking.benchmark.ingest",
|
|
607
|
+
"source": "generated",
|
|
608
|
+
"contentPath": "_common/provider-ranking.benchmark.ingest.md"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"id": "_common/provider-ranking.benchmark.ingested",
|
|
612
|
+
"title": "provider-ranking.benchmark.ingested",
|
|
613
|
+
"summary": "Emitted after external benchmark data is ingested.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: ingest\n- **File**: `packages/libs/contracts-spec/src/provider-ranking/events/benchmarkIngested.event.ts`",
|
|
614
|
+
"route": "/docs/reference/_common/provider-ranking.benchmark.ingested",
|
|
615
|
+
"source": "generated",
|
|
616
|
+
"contentPath": "_common/provider-ranking.benchmark.ingested.md"
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"id": "_common/provider-ranking.benchmark.results.list",
|
|
620
|
+
"title": "provider-ranking.benchmark.results.list",
|
|
621
|
+
"summary": "List raw benchmark results with pagination, filterable by source, model, and dimension.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: results\n- **File**: `packages/libs/contracts-spec/src/provider-ranking/queries/benchmarkResultsList.query.ts`",
|
|
622
|
+
"route": "/docs/reference/_common/provider-ranking.benchmark.results.list",
|
|
623
|
+
"source": "generated",
|
|
624
|
+
"contentPath": "_common/provider-ranking.benchmark.results.list.md"
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"id": "_common/provider-ranking.benchmark.run-custom",
|
|
628
|
+
"title": "provider-ranking.benchmark.run-custom",
|
|
629
|
+
"summary": "Launch a custom benchmark evaluation against a specific model.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: custom, eval\n- **File**: `packages/libs/contracts-spec/src/provider-ranking/commands/benchmarkRunCustom.command.ts`",
|
|
630
|
+
"route": "/docs/reference/_common/provider-ranking.benchmark.run-custom",
|
|
631
|
+
"source": "generated",
|
|
632
|
+
"contentPath": "_common/provider-ranking.benchmark.run-custom.md"
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"id": "_common/provider-ranking.model.comparison",
|
|
636
|
+
"title": "provider-ranking.model.comparison",
|
|
637
|
+
"summary": "Side-by-side comparison of AI model scores and capabilities.\n- **Type**: presentation (presentation)\n- **Version**: 1.0.0\n- **Tags**: comparison\n- **File**: `packages/libs/contracts-spec/src/provider-ranking/presentations/modelComparison.presentation.ts`",
|
|
638
|
+
"route": "/docs/reference/_common/provider-ranking.model.comparison",
|
|
639
|
+
"source": "generated",
|
|
640
|
+
"contentPath": "_common/provider-ranking.model.comparison.md"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"id": "_common/provider-ranking.model.profile.get",
|
|
644
|
+
"title": "provider-ranking.model.profile.get",
|
|
645
|
+
"summary": "Get detailed profile for a single model including all scores, metadata, cost, and capabilities.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: model, profile\n- **File**: `packages/libs/contracts-spec/src/provider-ranking/queries/modelProfileGet.query.ts`",
|
|
646
|
+
"route": "/docs/reference/_common/provider-ranking.model.profile.get",
|
|
647
|
+
"source": "generated",
|
|
648
|
+
"contentPath": "_common/provider-ranking.model.profile.get.md"
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"id": "_common/provider-ranking.ranking.get",
|
|
652
|
+
"title": "provider-ranking.ranking.get",
|
|
653
|
+
"summary": "Get ranked list of providers/models with composite scores, filterable by dimension.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: leaderboard\n- **File**: `packages/libs/contracts-spec/src/provider-ranking/queries/providerRankingGet.query.ts`",
|
|
654
|
+
"route": "/docs/reference/_common/provider-ranking.ranking.get",
|
|
655
|
+
"source": "generated",
|
|
656
|
+
"contentPath": "_common/provider-ranking.ranking.get.md"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"id": "_common/provider-ranking.ranking.refresh",
|
|
660
|
+
"title": "provider-ranking.ranking.refresh",
|
|
661
|
+
"summary": "Recompute composite rankings from latest benchmark data.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: refresh\n- **File**: `packages/libs/contracts-spec/src/provider-ranking/commands/rankingRefresh.command.ts`",
|
|
662
|
+
"route": "/docs/reference/_common/provider-ranking.ranking.refresh",
|
|
663
|
+
"source": "generated",
|
|
664
|
+
"contentPath": "_common/provider-ranking.ranking.refresh.md"
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"id": "_common/provider-ranking.ranking.updated",
|
|
668
|
+
"title": "provider-ranking.ranking.updated",
|
|
669
|
+
"summary": "Emitted when composite rankings are recomputed.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **Tags**: refresh\n- **File**: `packages/libs/contracts-spec/src/provider-ranking/events/rankingUpdated.event.ts`",
|
|
670
|
+
"route": "/docs/reference/_common/provider-ranking.ranking.updated",
|
|
671
|
+
"source": "generated",
|
|
672
|
+
"contentPath": "_common/provider-ranking.ranking.updated.md"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"id": "_common/provider-ranking.system",
|
|
676
|
+
"title": "provider-ranking.system",
|
|
677
|
+
"summary": "Benchmark ingestion, scoring, and ranking for AI providers and models.\n- **Type**: capability (capability)\n- **Version**: 1.0.0\n- **Tags**: system\n- **File**: `packages/libs/contracts-spec/src/provider-ranking/capabilities/providerRanking.capability.ts`",
|
|
678
|
+
"route": "/docs/reference/_common/provider-ranking.system",
|
|
679
|
+
"source": "generated",
|
|
680
|
+
"contentPath": "_common/provider-ranking.system.md"
|
|
681
|
+
},
|
|
114
682
|
{
|
|
115
683
|
"id": "_common/report.getContractVerificationStatus",
|
|
116
684
|
"title": "report.getContractVerificationStatus",
|
|
@@ -189,6 +757,237 @@
|
|
|
189
757
|
"kind": "reference",
|
|
190
758
|
"visibility": "mixed"
|
|
191
759
|
},
|
|
760
|
+
{
|
|
761
|
+
"id": "docs.tech.acp.fs.access",
|
|
762
|
+
"title": "ACP file system access",
|
|
763
|
+
"summary": "Access file system through ACP.",
|
|
764
|
+
"route": "/docs/tech/acp/fs/access",
|
|
765
|
+
"source": "docblock",
|
|
766
|
+
"contentPath": "docblocks/docs/tech/acp/fs/access.md",
|
|
767
|
+
"tags": ["acp", "filesystem"],
|
|
768
|
+
"kind": "reference",
|
|
769
|
+
"visibility": "public"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"id": "docs.tech.acp.prompt.turn",
|
|
773
|
+
"title": "ACP prompt turn",
|
|
774
|
+
"summary": "Execute a prompt turn within a session.",
|
|
775
|
+
"route": "/docs/tech/acp/prompt/turn",
|
|
776
|
+
"source": "docblock",
|
|
777
|
+
"contentPath": "docblocks/docs/tech/acp/prompt/turn.md",
|
|
778
|
+
"tags": ["acp", "prompt"],
|
|
779
|
+
"kind": "reference",
|
|
780
|
+
"visibility": "public"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"id": "docs.tech.acp.session.init",
|
|
784
|
+
"title": "ACP session init",
|
|
785
|
+
"summary": "Initialize a new ACP session.",
|
|
786
|
+
"route": "/docs/tech/acp/session/init",
|
|
787
|
+
"source": "docblock",
|
|
788
|
+
"contentPath": "docblocks/docs/tech/acp/session/init.md",
|
|
789
|
+
"tags": ["acp", "session"],
|
|
790
|
+
"kind": "reference",
|
|
791
|
+
"visibility": "public"
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
"id": "docs.tech.acp.session.resume",
|
|
795
|
+
"title": "ACP session resume",
|
|
796
|
+
"summary": "Resume an existing ACP session.",
|
|
797
|
+
"route": "/docs/tech/acp/session/resume",
|
|
798
|
+
"source": "docblock",
|
|
799
|
+
"contentPath": "docblocks/docs/tech/acp/session/resume.md",
|
|
800
|
+
"tags": ["acp", "session"],
|
|
801
|
+
"kind": "reference",
|
|
802
|
+
"visibility": "public"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"id": "docs.tech.acp.session.stop",
|
|
806
|
+
"title": "ACP session stop",
|
|
807
|
+
"summary": "Stop an ACP session.",
|
|
808
|
+
"route": "/docs/tech/acp/session/stop",
|
|
809
|
+
"source": "docblock",
|
|
810
|
+
"contentPath": "docblocks/docs/tech/acp/session/stop.md",
|
|
811
|
+
"tags": ["acp", "session"],
|
|
812
|
+
"kind": "reference",
|
|
813
|
+
"visibility": "public"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"id": "docs.tech.acp.terminal.exec",
|
|
817
|
+
"title": "ACP terminal exec",
|
|
818
|
+
"summary": "Execute terminal commands via ACP.",
|
|
819
|
+
"route": "/docs/tech/acp/terminal/exec",
|
|
820
|
+
"source": "docblock",
|
|
821
|
+
"contentPath": "docblocks/docs/tech/acp/terminal/exec.md",
|
|
822
|
+
"tags": ["acp", "terminal"],
|
|
823
|
+
"kind": "reference",
|
|
824
|
+
"visibility": "public"
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"id": "docs.tech.acp.tool.calls",
|
|
828
|
+
"title": "ACP tool calls",
|
|
829
|
+
"summary": "Execute ACP tool calls.",
|
|
830
|
+
"route": "/docs/tech/acp/tool/calls",
|
|
831
|
+
"source": "docblock",
|
|
832
|
+
"contentPath": "docblocks/docs/tech/acp/tool/calls.md",
|
|
833
|
+
"tags": ["acp", "tools"],
|
|
834
|
+
"kind": "reference",
|
|
835
|
+
"visibility": "public"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"id": "docs.tech.acp.transport",
|
|
839
|
+
"title": "ACP transport",
|
|
840
|
+
"summary": "Agent Client Protocol transport surfaces.",
|
|
841
|
+
"route": "/docs/tech/acp/transport",
|
|
842
|
+
"source": "docblock",
|
|
843
|
+
"contentPath": "docblocks/docs/tech/acp/transport.md",
|
|
844
|
+
"tags": ["acp", "transport"],
|
|
845
|
+
"kind": "reference",
|
|
846
|
+
"visibility": "public"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"id": "docs.tech.agent.approval.requested",
|
|
850
|
+
"title": "Agent approval requested event",
|
|
851
|
+
"summary": "Emitted when approval is required.",
|
|
852
|
+
"route": "/docs/tech/agent/approval/requested",
|
|
853
|
+
"source": "docblock",
|
|
854
|
+
"contentPath": "docblocks/docs/tech/agent/approval/requested.md",
|
|
855
|
+
"tags": ["agent", "event", "approval"],
|
|
856
|
+
"kind": "reference",
|
|
857
|
+
"visibility": "public"
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"id": "docs.tech.agent.approvals",
|
|
861
|
+
"title": "Agent approvals",
|
|
862
|
+
"summary": "Resolve an agent approval request.",
|
|
863
|
+
"route": "/docs/tech/agent/approvals",
|
|
864
|
+
"source": "docblock",
|
|
865
|
+
"contentPath": "docblocks/docs/tech/agent/approvals.md",
|
|
866
|
+
"tags": ["agent", "approval"],
|
|
867
|
+
"kind": "reference",
|
|
868
|
+
"visibility": "public"
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"id": "docs.tech.agent.artifacts",
|
|
872
|
+
"title": "Agent artifacts",
|
|
873
|
+
"summary": "List artifacts produced by an agent run.",
|
|
874
|
+
"route": "/docs/tech/agent/artifacts",
|
|
875
|
+
"source": "docblock",
|
|
876
|
+
"contentPath": "docblocks/docs/tech/agent/artifacts.md",
|
|
877
|
+
"tags": ["agent", "artifacts"],
|
|
878
|
+
"kind": "reference",
|
|
879
|
+
"visibility": "public"
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
"id": "docs.tech.agent.cancel",
|
|
883
|
+
"title": "Cancel agent run",
|
|
884
|
+
"summary": "Cancel an in-flight agent run.",
|
|
885
|
+
"route": "/docs/tech/agent/cancel",
|
|
886
|
+
"source": "docblock",
|
|
887
|
+
"contentPath": "docblocks/docs/tech/agent/cancel.md",
|
|
888
|
+
"tags": ["agent", "cancel"],
|
|
889
|
+
"kind": "reference",
|
|
890
|
+
"visibility": "public"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"id": "docs.tech.agent.execution",
|
|
894
|
+
"title": "Agent execution",
|
|
895
|
+
"summary": "Background agent execution, approvals, and artifacts.",
|
|
896
|
+
"route": "/docs/tech/agent/execution",
|
|
897
|
+
"source": "docblock",
|
|
898
|
+
"contentPath": "docblocks/docs/tech/agent/execution.md",
|
|
899
|
+
"tags": ["agent", "execution"],
|
|
900
|
+
"kind": "reference",
|
|
901
|
+
"visibility": "public"
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"id": "docs.tech.agent.run",
|
|
905
|
+
"title": "Run agent",
|
|
906
|
+
"summary": "Submit a background agent run.",
|
|
907
|
+
"route": "/docs/tech/agent/run",
|
|
908
|
+
"source": "docblock",
|
|
909
|
+
"contentPath": "docblocks/docs/tech/agent/run.md",
|
|
910
|
+
"tags": ["agent", "run"],
|
|
911
|
+
"kind": "reference",
|
|
912
|
+
"visibility": "public"
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"id": "docs.tech.agent.run.audit",
|
|
916
|
+
"title": "Agent run audit presentation",
|
|
917
|
+
"summary": "Presentation spec for agent run audit views.",
|
|
918
|
+
"route": "/docs/tech/agent/run/audit",
|
|
919
|
+
"source": "docblock",
|
|
920
|
+
"contentPath": "docblocks/docs/tech/agent/run/audit.md",
|
|
921
|
+
"tags": ["agent", "presentation", "audit"],
|
|
922
|
+
"kind": "reference",
|
|
923
|
+
"visibility": "public"
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"id": "docs.tech.agent.run.completed",
|
|
927
|
+
"title": "Agent run completed event",
|
|
928
|
+
"summary": "Emitted when an agent run completes.",
|
|
929
|
+
"route": "/docs/tech/agent/run/completed",
|
|
930
|
+
"source": "docblock",
|
|
931
|
+
"contentPath": "docblocks/docs/tech/agent/run/completed.md",
|
|
932
|
+
"tags": ["agent", "event"],
|
|
933
|
+
"kind": "reference",
|
|
934
|
+
"visibility": "public"
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"id": "docs.tech.agent.run.failed",
|
|
938
|
+
"title": "Agent run failed event",
|
|
939
|
+
"summary": "Emitted when an agent run fails.",
|
|
940
|
+
"route": "/docs/tech/agent/run/failed",
|
|
941
|
+
"source": "docblock",
|
|
942
|
+
"contentPath": "docblocks/docs/tech/agent/run/failed.md",
|
|
943
|
+
"tags": ["agent", "event"],
|
|
944
|
+
"kind": "reference",
|
|
945
|
+
"visibility": "public"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"id": "docs.tech.agent.run.form",
|
|
949
|
+
"title": "Agent run form",
|
|
950
|
+
"summary": "Form specification for launching an agent run.",
|
|
951
|
+
"route": "/docs/tech/agent/run/form",
|
|
952
|
+
"source": "docblock",
|
|
953
|
+
"contentPath": "docblocks/docs/tech/agent/run/form.md",
|
|
954
|
+
"tags": ["agent", "form"],
|
|
955
|
+
"kind": "reference",
|
|
956
|
+
"visibility": "public"
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
"id": "docs.tech.agent.run.index",
|
|
960
|
+
"title": "Agent run index view",
|
|
961
|
+
"summary": "Data view for listing agent runs.",
|
|
962
|
+
"route": "/docs/tech/agent/run/index",
|
|
963
|
+
"source": "docblock",
|
|
964
|
+
"contentPath": "docblocks/docs/tech/agent/run/index.md",
|
|
965
|
+
"tags": ["agent", "data-view"],
|
|
966
|
+
"kind": "reference",
|
|
967
|
+
"visibility": "public"
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"id": "docs.tech.agent.run.started",
|
|
971
|
+
"title": "Agent run started event",
|
|
972
|
+
"summary": "Emitted when an agent run starts.",
|
|
973
|
+
"route": "/docs/tech/agent/run/started",
|
|
974
|
+
"source": "docblock",
|
|
975
|
+
"contentPath": "docblocks/docs/tech/agent/run/started.md",
|
|
976
|
+
"tags": ["agent", "event"],
|
|
977
|
+
"kind": "reference",
|
|
978
|
+
"visibility": "public"
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"id": "docs.tech.agent.status",
|
|
982
|
+
"title": "Agent status",
|
|
983
|
+
"summary": "Query agent run status.",
|
|
984
|
+
"route": "/docs/tech/agent/status",
|
|
985
|
+
"source": "docblock",
|
|
986
|
+
"contentPath": "docblocks/docs/tech/agent/status.md",
|
|
987
|
+
"tags": ["agent", "status"],
|
|
988
|
+
"kind": "reference",
|
|
989
|
+
"visibility": "public"
|
|
990
|
+
},
|
|
192
991
|
{
|
|
193
992
|
"id": "docs.tech.auth.better-auth-nextjs",
|
|
194
993
|
"title": "Better Auth + Next.js integration (ContractSpec)",
|
|
@@ -212,6 +1011,94 @@
|
|
|
212
1011
|
"visibility": "public",
|
|
213
1012
|
"owners": ["@contractspec/app.cli-contractspec"]
|
|
214
1013
|
},
|
|
1014
|
+
{
|
|
1015
|
+
"id": "docs.tech.context.pack.describe",
|
|
1016
|
+
"title": "Describe context pack",
|
|
1017
|
+
"summary": "Describe a context pack and its sources.",
|
|
1018
|
+
"route": "/docs/tech/context/pack/describe",
|
|
1019
|
+
"source": "docblock",
|
|
1020
|
+
"contentPath": "docblocks/docs/tech/context/pack/describe.md",
|
|
1021
|
+
"tags": ["context", "pack", "describe"],
|
|
1022
|
+
"kind": "reference",
|
|
1023
|
+
"visibility": "public"
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"id": "docs.tech.context.pack.search",
|
|
1027
|
+
"title": "Search context packs",
|
|
1028
|
+
"summary": "Search and filter context packs and snapshots.",
|
|
1029
|
+
"route": "/docs/tech/context/pack/search",
|
|
1030
|
+
"source": "docblock",
|
|
1031
|
+
"contentPath": "docblocks/docs/tech/context/pack/search.md",
|
|
1032
|
+
"tags": ["context", "pack", "search"],
|
|
1033
|
+
"kind": "reference",
|
|
1034
|
+
"visibility": "public"
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"id": "docs.tech.context.pack.search.form",
|
|
1038
|
+
"title": "Context pack search form",
|
|
1039
|
+
"summary": "Form used to search context packs in UI surfaces.",
|
|
1040
|
+
"route": "/docs/tech/context/pack/search-form",
|
|
1041
|
+
"source": "docblock",
|
|
1042
|
+
"contentPath": "docblocks/docs/tech/context/pack/search/form.md",
|
|
1043
|
+
"tags": ["context", "form", "search"],
|
|
1044
|
+
"kind": "reference",
|
|
1045
|
+
"visibility": "public"
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"id": "docs.tech.context.pack.snapshot",
|
|
1049
|
+
"title": "Create context snapshot",
|
|
1050
|
+
"summary": "Create an immutable context snapshot from a pack.",
|
|
1051
|
+
"route": "/docs/tech/context/pack/snapshot",
|
|
1052
|
+
"source": "docblock",
|
|
1053
|
+
"contentPath": "docblocks/docs/tech/context/pack/snapshot.md",
|
|
1054
|
+
"tags": ["context", "snapshot", "create"],
|
|
1055
|
+
"kind": "reference",
|
|
1056
|
+
"visibility": "public"
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
"id": "docs.tech.context.snapshot.created",
|
|
1060
|
+
"title": "Context snapshot created event",
|
|
1061
|
+
"summary": "Emitted when a context snapshot is created.",
|
|
1062
|
+
"route": "/docs/tech/context/snapshot/created",
|
|
1063
|
+
"source": "docblock",
|
|
1064
|
+
"contentPath": "docblocks/docs/tech/context/snapshot/created.md",
|
|
1065
|
+
"tags": ["context", "snapshot", "event"],
|
|
1066
|
+
"kind": "reference",
|
|
1067
|
+
"visibility": "public"
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"id": "docs.tech.context.snapshot.index",
|
|
1071
|
+
"title": "Context snapshot index view",
|
|
1072
|
+
"summary": "Data view for listing context snapshots.",
|
|
1073
|
+
"route": "/docs/tech/context/snapshot/index",
|
|
1074
|
+
"source": "docblock",
|
|
1075
|
+
"contentPath": "docblocks/docs/tech/context/snapshot/index.md",
|
|
1076
|
+
"tags": ["context", "snapshot", "data-view"],
|
|
1077
|
+
"kind": "reference",
|
|
1078
|
+
"visibility": "public"
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"id": "docs.tech.context.snapshot.presentation",
|
|
1082
|
+
"title": "Context snapshot presentation",
|
|
1083
|
+
"summary": "Presentation spec for snapshot summaries.",
|
|
1084
|
+
"route": "/docs/tech/context/snapshot/presentation",
|
|
1085
|
+
"source": "docblock",
|
|
1086
|
+
"contentPath": "docblocks/docs/tech/context/snapshot/presentation.md",
|
|
1087
|
+
"tags": ["context", "presentation", "snapshot"],
|
|
1088
|
+
"kind": "reference",
|
|
1089
|
+
"visibility": "public"
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
"id": "docs.tech.context.system",
|
|
1093
|
+
"title": "Context system",
|
|
1094
|
+
"summary": "Context packs, snapshots, and discovery surfaces.",
|
|
1095
|
+
"route": "/docs/tech/context/system",
|
|
1096
|
+
"source": "docblock",
|
|
1097
|
+
"contentPath": "docblocks/docs/tech/context/system.md",
|
|
1098
|
+
"tags": ["context", "system", "snapshot"],
|
|
1099
|
+
"kind": "reference",
|
|
1100
|
+
"visibility": "public"
|
|
1101
|
+
},
|
|
215
1102
|
{
|
|
216
1103
|
"id": "docs.tech.contracts.openapi-export",
|
|
217
1104
|
"title": "OpenAPI export (OpenAPI 3.1) from OperationSpecRegistry",
|
|
@@ -267,6 +1154,72 @@
|
|
|
267
1154
|
"kind": "reference",
|
|
268
1155
|
"visibility": "public"
|
|
269
1156
|
},
|
|
1157
|
+
{
|
|
1158
|
+
"id": "docs.tech.database.context",
|
|
1159
|
+
"title": "Database context",
|
|
1160
|
+
"summary": "Schema, migrations, dictionary, and read-only query surfaces.",
|
|
1161
|
+
"route": "/docs/tech/database/context",
|
|
1162
|
+
"source": "docblock",
|
|
1163
|
+
"contentPath": "docblocks/docs/tech/database/context.md",
|
|
1164
|
+
"tags": ["database", "context"],
|
|
1165
|
+
"kind": "reference",
|
|
1166
|
+
"visibility": "public"
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
"id": "docs.tech.database.dictionary.get",
|
|
1170
|
+
"title": "Get data dictionary entry",
|
|
1171
|
+
"summary": "Retrieve a dictionary entry for a schema field.",
|
|
1172
|
+
"route": "/docs/tech/database/dictionary/get",
|
|
1173
|
+
"source": "docblock",
|
|
1174
|
+
"contentPath": "docblocks/docs/tech/database/dictionary/get.md",
|
|
1175
|
+
"tags": ["database", "dictionary"],
|
|
1176
|
+
"kind": "reference",
|
|
1177
|
+
"visibility": "public"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"id": "docs.tech.database.migrations.list",
|
|
1181
|
+
"title": "List database migrations",
|
|
1182
|
+
"summary": "List migration history for a database.",
|
|
1183
|
+
"route": "/docs/tech/database/migrations/list",
|
|
1184
|
+
"source": "docblock",
|
|
1185
|
+
"contentPath": "docblocks/docs/tech/database/migrations/list.md",
|
|
1186
|
+
"tags": ["database", "migrations"],
|
|
1187
|
+
"kind": "reference",
|
|
1188
|
+
"visibility": "public"
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"id": "docs.tech.database.query.readonly",
|
|
1192
|
+
"title": "Read-only data query",
|
|
1193
|
+
"summary": "Perform a governed read-only query via data views.",
|
|
1194
|
+
"route": "/docs/tech/database/query/readonly",
|
|
1195
|
+
"source": "docblock",
|
|
1196
|
+
"contentPath": "docblocks/docs/tech/database/query/readonly.md",
|
|
1197
|
+
"tags": ["database", "query", "readonly"],
|
|
1198
|
+
"kind": "reference",
|
|
1199
|
+
"visibility": "public"
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
"id": "docs.tech.database.schema.describe",
|
|
1203
|
+
"title": "Describe database schema",
|
|
1204
|
+
"summary": "Describe schemas and models with PII signals.",
|
|
1205
|
+
"route": "/docs/tech/database/schema/describe",
|
|
1206
|
+
"source": "docblock",
|
|
1207
|
+
"contentPath": "docblocks/docs/tech/database/schema/describe.md",
|
|
1208
|
+
"tags": ["database", "schema"],
|
|
1209
|
+
"kind": "reference",
|
|
1210
|
+
"visibility": "public"
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
"id": "docs.tech.database.schema.index",
|
|
1214
|
+
"title": "Database schema index view",
|
|
1215
|
+
"summary": "Data view for listing schemas and model counts.",
|
|
1216
|
+
"route": "/docs/tech/database/schema/index",
|
|
1217
|
+
"source": "docblock",
|
|
1218
|
+
"contentPath": "docblocks/docs/tech/database/schema/index.md",
|
|
1219
|
+
"tags": ["database", "data-view"],
|
|
1220
|
+
"kind": "reference",
|
|
1221
|
+
"visibility": "public"
|
|
1222
|
+
},
|
|
270
1223
|
{
|
|
271
1224
|
"id": "docs.tech.docs-examples",
|
|
272
1225
|
"title": "Examples catalog",
|
|
@@ -410,6 +1363,171 @@
|
|
|
410
1363
|
"kind": "reference",
|
|
411
1364
|
"visibility": "public"
|
|
412
1365
|
},
|
|
1366
|
+
{
|
|
1367
|
+
"id": "docs.tech.provider-ranking.benchmark.custom.completed",
|
|
1368
|
+
"title": "Custom benchmark completed event",
|
|
1369
|
+
"summary": "Emitted when a custom benchmark run finishes.",
|
|
1370
|
+
"route": "/docs/tech/provider-ranking/benchmark/custom/completed",
|
|
1371
|
+
"source": "docblock",
|
|
1372
|
+
"contentPath": "docblocks/docs/tech/provider-ranking/benchmark/custom/completed.md",
|
|
1373
|
+
"tags": ["ai", "ranking", "event", "custom"],
|
|
1374
|
+
"kind": "reference",
|
|
1375
|
+
"visibility": "public"
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"id": "docs.tech.provider-ranking.benchmark.ingest",
|
|
1379
|
+
"title": "Ingest benchmark data",
|
|
1380
|
+
"summary": "Trigger ingestion of external benchmark data.",
|
|
1381
|
+
"route": "/docs/tech/provider-ranking/benchmark/ingest",
|
|
1382
|
+
"source": "docblock",
|
|
1383
|
+
"contentPath": "docblocks/docs/tech/provider-ranking/benchmark/ingest.md",
|
|
1384
|
+
"tags": ["ai", "ranking", "ingest"],
|
|
1385
|
+
"kind": "reference",
|
|
1386
|
+
"visibility": "public"
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
"id": "docs.tech.provider-ranking.benchmark.ingest.form",
|
|
1390
|
+
"title": "Benchmark ingest form",
|
|
1391
|
+
"summary": "Form specification for triggering benchmark ingestion.",
|
|
1392
|
+
"route": "/docs/tech/provider-ranking/benchmark/ingest/form",
|
|
1393
|
+
"source": "docblock",
|
|
1394
|
+
"contentPath": "docblocks/docs/tech/provider-ranking/benchmark/ingest/form.md",
|
|
1395
|
+
"tags": ["ai", "ranking", "form"],
|
|
1396
|
+
"kind": "reference",
|
|
1397
|
+
"visibility": "public"
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"id": "docs.tech.provider-ranking.benchmark.ingested",
|
|
1401
|
+
"title": "Benchmark ingested event",
|
|
1402
|
+
"summary": "Emitted after external benchmark data is ingested.",
|
|
1403
|
+
"route": "/docs/tech/provider-ranking/benchmark/ingested",
|
|
1404
|
+
"source": "docblock",
|
|
1405
|
+
"contentPath": "docblocks/docs/tech/provider-ranking/benchmark/ingested.md",
|
|
1406
|
+
"tags": ["ai", "ranking", "event"],
|
|
1407
|
+
"kind": "reference",
|
|
1408
|
+
"visibility": "public"
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
"id": "docs.tech.provider-ranking.benchmark.results.index",
|
|
1412
|
+
"title": "Benchmark results view",
|
|
1413
|
+
"summary": "Data view for raw benchmark results.",
|
|
1414
|
+
"route": "/docs/tech/provider-ranking/benchmark/results/index",
|
|
1415
|
+
"source": "docblock",
|
|
1416
|
+
"contentPath": "docblocks/docs/tech/provider-ranking/benchmark/results/index.md",
|
|
1417
|
+
"tags": ["ai", "ranking", "data-view"],
|
|
1418
|
+
"kind": "reference",
|
|
1419
|
+
"visibility": "public"
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
"id": "docs.tech.provider-ranking.benchmark.results.list",
|
|
1423
|
+
"title": "List benchmark results",
|
|
1424
|
+
"summary": "List raw benchmark results.",
|
|
1425
|
+
"route": "/docs/tech/provider-ranking/benchmark/results/list",
|
|
1426
|
+
"source": "docblock",
|
|
1427
|
+
"contentPath": "docblocks/docs/tech/provider-ranking/benchmark/results/list.md",
|
|
1428
|
+
"tags": ["ai", "ranking", "results"],
|
|
1429
|
+
"kind": "reference",
|
|
1430
|
+
"visibility": "public"
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
"id": "docs.tech.provider-ranking.benchmark.run-custom",
|
|
1434
|
+
"title": "Run custom benchmark",
|
|
1435
|
+
"summary": "Launch a custom benchmark evaluation against a model.",
|
|
1436
|
+
"route": "/docs/tech/provider-ranking/benchmark/run-custom",
|
|
1437
|
+
"source": "docblock",
|
|
1438
|
+
"contentPath": "docblocks/docs/tech/provider-ranking/benchmark/run-custom.md",
|
|
1439
|
+
"tags": ["ai", "ranking", "custom", "eval"],
|
|
1440
|
+
"kind": "reference",
|
|
1441
|
+
"visibility": "public"
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
"id": "docs.tech.provider-ranking.benchmark.run-custom.form",
|
|
1445
|
+
"title": "Custom benchmark form",
|
|
1446
|
+
"summary": "Form specification for launching custom benchmarks.",
|
|
1447
|
+
"route": "/docs/tech/provider-ranking/benchmark/run-custom/form",
|
|
1448
|
+
"source": "docblock",
|
|
1449
|
+
"contentPath": "docblocks/docs/tech/provider-ranking/benchmark/run-custom/form.md",
|
|
1450
|
+
"tags": ["ai", "ranking", "form"],
|
|
1451
|
+
"kind": "reference",
|
|
1452
|
+
"visibility": "public"
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
"id": "docs.tech.provider-ranking.model.comparison",
|
|
1456
|
+
"title": "Model comparison presentation",
|
|
1457
|
+
"summary": "Presentation spec for side-by-side model comparison.",
|
|
1458
|
+
"route": "/docs/tech/provider-ranking/model/comparison",
|
|
1459
|
+
"source": "docblock",
|
|
1460
|
+
"contentPath": "docblocks/docs/tech/provider-ranking/model/comparison.md",
|
|
1461
|
+
"tags": ["ai", "ranking", "presentation", "comparison"],
|
|
1462
|
+
"kind": "reference",
|
|
1463
|
+
"visibility": "public"
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
"id": "docs.tech.provider-ranking.model.profile.get",
|
|
1467
|
+
"title": "Get model profile",
|
|
1468
|
+
"summary": "Get detailed profile for a single model.",
|
|
1469
|
+
"route": "/docs/tech/provider-ranking/model/profile/get",
|
|
1470
|
+
"source": "docblock",
|
|
1471
|
+
"contentPath": "docblocks/docs/tech/provider-ranking/model/profile/get.md",
|
|
1472
|
+
"tags": ["ai", "ranking", "model", "profile"],
|
|
1473
|
+
"kind": "reference",
|
|
1474
|
+
"visibility": "public"
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"id": "docs.tech.provider-ranking.ranking.get",
|
|
1478
|
+
"title": "Get provider rankings",
|
|
1479
|
+
"summary": "Get ranked list of providers/models.",
|
|
1480
|
+
"route": "/docs/tech/provider-ranking/ranking/get",
|
|
1481
|
+
"source": "docblock",
|
|
1482
|
+
"contentPath": "docblocks/docs/tech/provider-ranking/ranking/get.md",
|
|
1483
|
+
"tags": ["ai", "ranking", "leaderboard"],
|
|
1484
|
+
"kind": "reference",
|
|
1485
|
+
"visibility": "public"
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
"id": "docs.tech.provider-ranking.ranking.index",
|
|
1489
|
+
"title": "Provider rankings view",
|
|
1490
|
+
"summary": "Data view for the model leaderboard.",
|
|
1491
|
+
"route": "/docs/tech/provider-ranking/ranking/index",
|
|
1492
|
+
"source": "docblock",
|
|
1493
|
+
"contentPath": "docblocks/docs/tech/provider-ranking/ranking/index.md",
|
|
1494
|
+
"tags": ["ai", "ranking", "data-view"],
|
|
1495
|
+
"kind": "reference",
|
|
1496
|
+
"visibility": "public"
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"id": "docs.tech.provider-ranking.ranking.refresh",
|
|
1500
|
+
"title": "Refresh rankings",
|
|
1501
|
+
"summary": "Recompute composite rankings from latest benchmark data.",
|
|
1502
|
+
"route": "/docs/tech/provider-ranking/ranking/refresh",
|
|
1503
|
+
"source": "docblock",
|
|
1504
|
+
"contentPath": "docblocks/docs/tech/provider-ranking/ranking/refresh.md",
|
|
1505
|
+
"tags": ["ai", "ranking", "refresh"],
|
|
1506
|
+
"kind": "reference",
|
|
1507
|
+
"visibility": "public"
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
"id": "docs.tech.provider-ranking.ranking.updated",
|
|
1511
|
+
"title": "Ranking updated event",
|
|
1512
|
+
"summary": "Emitted when composite rankings are recomputed.",
|
|
1513
|
+
"route": "/docs/tech/provider-ranking/ranking/updated",
|
|
1514
|
+
"source": "docblock",
|
|
1515
|
+
"contentPath": "docblocks/docs/tech/provider-ranking/ranking/updated.md",
|
|
1516
|
+
"tags": ["ai", "ranking", "event"],
|
|
1517
|
+
"kind": "reference",
|
|
1518
|
+
"visibility": "public"
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
"id": "docs.tech.provider-ranking.system",
|
|
1522
|
+
"title": "AI Provider Ranking",
|
|
1523
|
+
"summary": "Benchmark ingestion, scoring, and ranking for AI providers and models.",
|
|
1524
|
+
"route": "/docs/tech/provider-ranking/system",
|
|
1525
|
+
"source": "docblock",
|
|
1526
|
+
"contentPath": "docblocks/docs/tech/provider-ranking/system.md",
|
|
1527
|
+
"tags": ["ai", "ranking", "benchmark"],
|
|
1528
|
+
"kind": "reference",
|
|
1529
|
+
"visibility": "public"
|
|
1530
|
+
},
|
|
413
1531
|
{
|
|
414
1532
|
"id": "docs.tech.report-verification-table",
|
|
415
1533
|
"title": "Contract Verification Table",
|
|
@@ -586,7 +1704,7 @@
|
|
|
586
1704
|
{
|
|
587
1705
|
"id": "docs.tech.workflows.overview",
|
|
588
1706
|
"title": "WorkflowSpec Overview",
|
|
589
|
-
"summary": "WorkflowSpec provides a declarative, versioned format for long-running flows that mix automation and human review. Specs stay inside `@contractspec/lib.contracts-spec` (`src/workflow/spec.ts`) so the same definition powers runtime execution, documentation, and future generation.",
|
|
1707
|
+
"summary": "WorkflowSpec provides a declarative, versioned format for long-running flows that mix automation and human review, including runtime adapter capabilities/ports for checkpointing and suspend-resume orchestration. Specs stay inside `@contractspec/lib.contracts-spec` (`src/workflow/spec.ts`) so the same definition powers runtime execution, documentation, and future generation.",
|
|
590
1708
|
"route": "/docs/tech/workflows/overview",
|
|
591
1709
|
"source": "docblock",
|
|
592
1710
|
"contentPath": "docblocks/docs/tech/workflows/overview.md",
|