@absolutejs/agent 0.23.19 → 0.23.21
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/dist/manifest.js +6 -13
- package/dist/manifest.js.map +3 -3
- package/dist/manifest.json +5 -19
- package/package.json +14 -14
package/dist/manifest.js
CHANGED
|
@@ -32,6 +32,10 @@ var manifest = defineManifest()({
|
|
|
32
32
|
name: "@absolutejs/agent",
|
|
33
33
|
tagline: "Build agents that can safely act, persist, pay, and be found."
|
|
34
34
|
},
|
|
35
|
+
integration: {
|
|
36
|
+
description: "The host must supply explicit identity, policy, durable stores, sandbox, signing, interoperability, spend, operations, and conformance components before defining the stack.",
|
|
37
|
+
mode: "code-first"
|
|
38
|
+
},
|
|
35
39
|
settings: Type.Object({}),
|
|
36
40
|
tools: {
|
|
37
41
|
inspect_agent_stack: tool.workspace({
|
|
@@ -68,22 +72,11 @@ var manifest = defineManifest()({
|
|
|
68
72
|
}
|
|
69
73
|
})
|
|
70
74
|
},
|
|
71
|
-
wiring: [
|
|
72
|
-
{
|
|
73
|
-
description: "Import the typed stack composer and add each production capability explicitly.",
|
|
74
|
-
id: "default",
|
|
75
|
-
server: {
|
|
76
|
-
code: "defineAgentStack([])",
|
|
77
|
-
imports: [{ from: "@absolutejs/agent", names: ["defineAgentStack"] }],
|
|
78
|
-
placement: "module-scope"
|
|
79
|
-
},
|
|
80
|
-
title: "Production agent stack"
|
|
81
|
-
}
|
|
82
|
-
]
|
|
75
|
+
wiring: []
|
|
83
76
|
});
|
|
84
77
|
export {
|
|
85
78
|
manifest
|
|
86
79
|
};
|
|
87
80
|
|
|
88
|
-
//# debugId=
|
|
81
|
+
//# debugId=E9746E39EA986B7664756E2164756E21
|
|
89
82
|
//# sourceMappingURL=manifest.js.map
|
package/dist/manifest.js.map
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/manifest.ts"],
|
|
4
4
|
"sourcesContent": [
|
|
5
|
-
"import { defineManifest, toolFactory } from \"@absolutejs/manifest\";\nimport { Type } from \"@sinclair/typebox\";\n\nconst tool = toolFactory<never>();\n\nexport const manifest = defineManifest<Record<string, never>, never>()({\n contract: 2,\n discovery: {\n audiences: [\"agent-hosts\", \"application-developers\"],\n intents: [\n \"build an agent-first application\",\n \"audit an agent stack\",\n \"compose agent infrastructure\",\n \"orchestrate a durable agent purchase\",\n ],\n keywords: [\n \"agents\",\n \"absolutejs\",\n \"identity\",\n \"orchestration\",\n \"security\",\n \"interoperability\",\n \"commerce\",\n ],\n protocols: [\"OAuth 2.0\", \"MCP\", \"A2A 1.0\", \"Arazzo 1.1\", \"WebMCP\"],\n },\n identity: {\n accent: \"#111827\",\n category: \"ai\",\n description:\n \"The discoverable production agent stack for AbsoluteJS: auth.md identity and delegation, policy-gated actions, certified tenant-scoped effect adapters, durable execution, sandboxing, trust, memory, triggers, MCP, A2A, Arazzo, WebMCP, spend controls, operations, and conformance.\",\n docsUrl: \"https://github.com/absolutejs/agent\",\n name: \"@absolutejs/agent\",\n tagline: \"Build agents that can safely act, persist, pay, and be found.\",\n },\n settings: Type.Object({}),\n tools: {\n inspect_agent_stack: tool.workspace({\n annotations: { readOnlyHint: true },\n authorization: {\n approval: \"never\",\n audience: \"admin\",\n effects: [\"read\"],\n requiredScopes: [\"agent-stack:inspect\"],\n },\n capabilities: [\"read\", \"glob\"],\n description:\n \"Inspect an AbsoluteJS project for the production agent stack and report missing safety or discoverability packages.\",\n input: Type.Object({}),\n handler: async (_input, workspace) => {\n const packageFiles = (await workspace.glob?.(\"**/package.json\")) ?? [];\n const packageFile = packageFiles.find(\n (file) => !file.includes(\"node_modules\"),\n );\n if (packageFile === undefined) return \"No package.json found.\";\n const source = (await workspace.read(packageFile)) ?? \"\";\n if (source.includes('\"@absolutejs/agent\"')) {\n return \"The @absolutejs/agent production stack is installed.\";\n }\n const expected = [\n \"@absolutejs/auth\",\n \"@absolutejs/agency\",\n \"@absolutejs/agent-runtime\",\n \"@absolutejs/agent-sandbox\",\n \"@absolutejs/agent-trust\",\n \"@absolutejs/agent-discovery\",\n \"@absolutejs/agent-conformance\",\n ];\n const missing = expected.filter((name) => !source.includes(name));\n\n return missing.length === 0\n ? \"Core production agent packages are present.\"\n : `Missing production agent packages: ${missing.join(\", \")}`;\n },\n }),\n },\n wiring: [
|
|
5
|
+
"import { defineManifest, toolFactory } from \"@absolutejs/manifest\";\nimport { Type } from \"@sinclair/typebox\";\n\nconst tool = toolFactory<never>();\n\nexport const manifest = defineManifest<Record<string, never>, never>()({\n contract: 2,\n discovery: {\n audiences: [\"agent-hosts\", \"application-developers\"],\n intents: [\n \"build an agent-first application\",\n \"audit an agent stack\",\n \"compose agent infrastructure\",\n \"orchestrate a durable agent purchase\",\n ],\n keywords: [\n \"agents\",\n \"absolutejs\",\n \"identity\",\n \"orchestration\",\n \"security\",\n \"interoperability\",\n \"commerce\",\n ],\n protocols: [\"OAuth 2.0\", \"MCP\", \"A2A 1.0\", \"Arazzo 1.1\", \"WebMCP\"],\n },\n identity: {\n accent: \"#111827\",\n category: \"ai\",\n description:\n \"The discoverable production agent stack for AbsoluteJS: auth.md identity and delegation, policy-gated actions, certified tenant-scoped effect adapters, durable execution, sandboxing, trust, memory, triggers, MCP, A2A, Arazzo, WebMCP, spend controls, operations, and conformance.\",\n docsUrl: \"https://github.com/absolutejs/agent\",\n name: \"@absolutejs/agent\",\n tagline: \"Build agents that can safely act, persist, pay, and be found.\",\n },\n integration: {\n description:\n \"The host must supply explicit identity, policy, durable stores, sandbox, signing, interoperability, spend, operations, and conformance components before defining the stack.\",\n mode: \"code-first\",\n },\n settings: Type.Object({}),\n tools: {\n inspect_agent_stack: tool.workspace({\n annotations: { readOnlyHint: true },\n authorization: {\n approval: \"never\",\n audience: \"admin\",\n effects: [\"read\"],\n requiredScopes: [\"agent-stack:inspect\"],\n },\n capabilities: [\"read\", \"glob\"],\n description:\n \"Inspect an AbsoluteJS project for the production agent stack and report missing safety or discoverability packages.\",\n input: Type.Object({}),\n handler: async (_input, workspace) => {\n const packageFiles = (await workspace.glob?.(\"**/package.json\")) ?? [];\n const packageFile = packageFiles.find(\n (file) => !file.includes(\"node_modules\"),\n );\n if (packageFile === undefined) return \"No package.json found.\";\n const source = (await workspace.read(packageFile)) ?? \"\";\n if (source.includes('\"@absolutejs/agent\"')) {\n return \"The @absolutejs/agent production stack is installed.\";\n }\n const expected = [\n \"@absolutejs/auth\",\n \"@absolutejs/agency\",\n \"@absolutejs/agent-runtime\",\n \"@absolutejs/agent-sandbox\",\n \"@absolutejs/agent-trust\",\n \"@absolutejs/agent-discovery\",\n \"@absolutejs/agent-conformance\",\n ];\n const missing = expected.filter((name) => !source.includes(name));\n\n return missing.length === 0\n ? \"Core production agent packages are present.\"\n : `Missing production agent packages: ${missing.join(\", \")}`;\n },\n }),\n },\n wiring: [],\n});\n"
|
|
6
6
|
],
|
|
7
|
-
"mappings": ";;AAAA;AACA;AAEA,IAAM,OAAO,YAAmB;AAEzB,IAAM,WAAW,eAA6C,EAAE;AAAA,EACrE,UAAU;AAAA,EACV,WAAW;AAAA,IACT,WAAW,CAAC,eAAe,wBAAwB;AAAA,IACnD,SAAS;AAAA,MACP;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,IACF;AAAA,IACA,UAAU;AAAA,MACR;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,IACF;AAAA,IACA,WAAW,CAAC,aAAa,OAAO,WAAW,cAAc,QAAQ;AAAA,EACnE;AAAA,EACA,UAAU;AAAA,IACR,QAAQ;AAAA,IACR,UAAU;AAAA,IACV,aACE;AAAA,IACF,SAAS;AAAA,IACT,MAAM;AAAA,IACN,SAAS;AAAA,EACX;AAAA,EACA,UAAU,KAAK,OAAO,CAAC,CAAC;AAAA,EACxB,OAAO;AAAA,IACL,qBAAqB,KAAK,UAAU;AAAA,MAClC,aAAa,EAAE,cAAc,KAAK;AAAA,MAClC,eAAe;AAAA,QACb,UAAU;AAAA,QACV,UAAU;AAAA,QACV,SAAS,CAAC,MAAM;AAAA,QAChB,gBAAgB,CAAC,qBAAqB;AAAA,MACxC;AAAA,MACA,cAAc,CAAC,QAAQ,MAAM;AAAA,MAC7B,aACE;AAAA,MACF,OAAO,KAAK,OAAO,CAAC,CAAC;AAAA,MACrB,SAAS,OAAO,QAAQ,cAAc;AAAA,QACpC,MAAM,eAAgB,MAAM,UAAU,OAAO,iBAAiB,KAAM,CAAC;AAAA,QACrE,MAAM,cAAc,aAAa,KAC/B,CAAC,SAAS,CAAC,KAAK,SAAS,cAAc,CACzC;AAAA,QACA,IAAI,gBAAgB;AAAA,UAAW,OAAO;AAAA,QACtC,MAAM,SAAU,MAAM,UAAU,KAAK,WAAW,KAAM;AAAA,QACtD,IAAI,OAAO,SAAS,qBAAqB,GAAG;AAAA,UAC1C,OAAO;AAAA,QACT;AAAA,QACA,MAAM,WAAW;AAAA,UACf;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,QACF;AAAA,QACA,MAAM,UAAU,SAAS,OAAO,CAAC,SAAS,CAAC,OAAO,SAAS,IAAI,CAAC;AAAA,QAEhE,OAAO,QAAQ,WAAW,IACtB,gDACA,sCAAsC,QAAQ,KAAK,IAAI;AAAA;AAAA,IAE/D,CAAC;AAAA,EACH;AAAA,EACA,QAAQ
|
|
8
|
-
"debugId": "
|
|
7
|
+
"mappings": ";;AAAA;AACA;AAEA,IAAM,OAAO,YAAmB;AAEzB,IAAM,WAAW,eAA6C,EAAE;AAAA,EACrE,UAAU;AAAA,EACV,WAAW;AAAA,IACT,WAAW,CAAC,eAAe,wBAAwB;AAAA,IACnD,SAAS;AAAA,MACP;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,IACF;AAAA,IACA,UAAU;AAAA,MACR;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,IACF;AAAA,IACA,WAAW,CAAC,aAAa,OAAO,WAAW,cAAc,QAAQ;AAAA,EACnE;AAAA,EACA,UAAU;AAAA,IACR,QAAQ;AAAA,IACR,UAAU;AAAA,IACV,aACE;AAAA,IACF,SAAS;AAAA,IACT,MAAM;AAAA,IACN,SAAS;AAAA,EACX;AAAA,EACA,aAAa;AAAA,IACX,aACE;AAAA,IACF,MAAM;AAAA,EACR;AAAA,EACA,UAAU,KAAK,OAAO,CAAC,CAAC;AAAA,EACxB,OAAO;AAAA,IACL,qBAAqB,KAAK,UAAU;AAAA,MAClC,aAAa,EAAE,cAAc,KAAK;AAAA,MAClC,eAAe;AAAA,QACb,UAAU;AAAA,QACV,UAAU;AAAA,QACV,SAAS,CAAC,MAAM;AAAA,QAChB,gBAAgB,CAAC,qBAAqB;AAAA,MACxC;AAAA,MACA,cAAc,CAAC,QAAQ,MAAM;AAAA,MAC7B,aACE;AAAA,MACF,OAAO,KAAK,OAAO,CAAC,CAAC;AAAA,MACrB,SAAS,OAAO,QAAQ,cAAc;AAAA,QACpC,MAAM,eAAgB,MAAM,UAAU,OAAO,iBAAiB,KAAM,CAAC;AAAA,QACrE,MAAM,cAAc,aAAa,KAC/B,CAAC,SAAS,CAAC,KAAK,SAAS,cAAc,CACzC;AAAA,QACA,IAAI,gBAAgB;AAAA,UAAW,OAAO;AAAA,QACtC,MAAM,SAAU,MAAM,UAAU,KAAK,WAAW,KAAM;AAAA,QACtD,IAAI,OAAO,SAAS,qBAAqB,GAAG;AAAA,UAC1C,OAAO;AAAA,QACT;AAAA,QACA,MAAM,WAAW;AAAA,UACf;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,QACF;AAAA,QACA,MAAM,UAAU,SAAS,OAAO,CAAC,SAAS,CAAC,OAAO,SAAS,IAAI,CAAC;AAAA,QAEhE,OAAO,QAAQ,WAAW,IACtB,gDACA,sCAAsC,QAAQ,KAAK,IAAI;AAAA;AAAA,IAE/D,CAAC;AAAA,EACH;AAAA,EACA,QAAQ,CAAC;AACX,CAAC;",
|
|
8
|
+
"debugId": "E9746E39EA986B7664756E2164756E21",
|
|
9
9
|
"names": []
|
|
10
10
|
}
|
package/dist/manifest.json
CHANGED
|
@@ -36,29 +36,15 @@
|
|
|
36
36
|
"name": "@absolutejs/agent",
|
|
37
37
|
"tagline": "Build agents that can safely act, persist, pay, and be found."
|
|
38
38
|
},
|
|
39
|
+
"integration": {
|
|
40
|
+
"description": "The host must supply explicit identity, policy, durable stores, sandbox, signing, interoperability, spend, operations, and conformance components before defining the stack.",
|
|
41
|
+
"mode": "code-first"
|
|
42
|
+
},
|
|
39
43
|
"settings": {
|
|
40
44
|
"type": "object",
|
|
41
45
|
"properties": {}
|
|
42
46
|
},
|
|
43
|
-
"wiring": [
|
|
44
|
-
{
|
|
45
|
-
"description": "Import the typed stack composer and add each production capability explicitly.",
|
|
46
|
-
"id": "default",
|
|
47
|
-
"server": {
|
|
48
|
-
"code": "defineAgentStack([])",
|
|
49
|
-
"imports": [
|
|
50
|
-
{
|
|
51
|
-
"from": "@absolutejs/agent",
|
|
52
|
-
"names": [
|
|
53
|
-
"defineAgentStack"
|
|
54
|
-
]
|
|
55
|
-
}
|
|
56
|
-
],
|
|
57
|
-
"placement": "module-scope"
|
|
58
|
-
},
|
|
59
|
-
"title": "Production agent stack"
|
|
60
|
-
}
|
|
61
|
-
],
|
|
47
|
+
"wiring": [],
|
|
62
48
|
"tools": {
|
|
63
49
|
"inspect_agent_stack": {
|
|
64
50
|
"annotations": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@absolutejs/agent",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.21",
|
|
4
4
|
"description": "The production-grade, provider-neutral agent stack for AbsoluteJS: auth, actions, runtime, sandboxing, trust, memory, inbox, discovery, MCP, A2A, policy, wallet limits, controls, and conformance.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -142,23 +142,23 @@
|
|
|
142
142
|
"release": "bun run format && bun run check:package && npm publish --access public"
|
|
143
143
|
},
|
|
144
144
|
"dependencies": {
|
|
145
|
-
"@absolutejs/a2a": "^0.3.
|
|
145
|
+
"@absolutejs/a2a": "^0.3.6",
|
|
146
146
|
"@absolutejs/agency": "^0.7.3",
|
|
147
|
-
"@absolutejs/agent-conformance": "^0.14.
|
|
148
|
-
"@absolutejs/agent-control": "^0.5.
|
|
149
|
-
"@absolutejs/agent-discovery": "^0.2.
|
|
150
|
-
"@absolutejs/agent-inbox": "^0.3.
|
|
151
|
-
"@absolutejs/agent-memory": "^0.1.
|
|
152
|
-
"@absolutejs/agent-runtime": "^0.2.
|
|
153
|
-
"@absolutejs/agent-sandbox": "^0.2.
|
|
154
|
-
"@absolutejs/agent-trust": "^0.2.
|
|
155
|
-
"@absolutejs/arazzo": "^0.1.
|
|
156
|
-
"@absolutejs/auth": "^0.57.
|
|
157
|
-
"@absolutejs/manifest": "^0.7.
|
|
147
|
+
"@absolutejs/agent-conformance": "^0.14.1",
|
|
148
|
+
"@absolutejs/agent-control": "^0.5.7",
|
|
149
|
+
"@absolutejs/agent-discovery": "^0.2.2",
|
|
150
|
+
"@absolutejs/agent-inbox": "^0.3.4",
|
|
151
|
+
"@absolutejs/agent-memory": "^0.1.6",
|
|
152
|
+
"@absolutejs/agent-runtime": "^0.2.5",
|
|
153
|
+
"@absolutejs/agent-sandbox": "^0.2.1",
|
|
154
|
+
"@absolutejs/agent-trust": "^0.2.1",
|
|
155
|
+
"@absolutejs/arazzo": "^0.1.3",
|
|
156
|
+
"@absolutejs/auth": "^0.57.6",
|
|
157
|
+
"@absolutejs/manifest": "^0.7.3",
|
|
158
158
|
"@absolutejs/mcp": "^0.11.3",
|
|
159
159
|
"@absolutejs/policy": "^0.3.0",
|
|
160
160
|
"@absolutejs/wallet": "^0.9.3",
|
|
161
|
-
"@absolutejs/webmcp": "^0.1.
|
|
161
|
+
"@absolutejs/webmcp": "^0.1.5",
|
|
162
162
|
"@sinclair/typebox": "^0.34.0"
|
|
163
163
|
},
|
|
164
164
|
"devDependencies": {
|