@absolutejs/agent-control 0.1.0
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/LICENSE +3 -0
- package/README.md +10 -0
- package/dist/index.d.ts +37 -0
- package/dist/index.js +114 -0
- package/dist/manifest.d.ts +1 -0
- package/dist/manifest.js +5948 -0
- package/dist/manifest.json +16 -0
- package/package.json +52 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"contract": 2,
|
|
3
|
+
"identity": {
|
|
4
|
+
"accent": "#dc2626",
|
|
5
|
+
"category": "security",
|
|
6
|
+
"description": "Authenticated operator API for agent inventory, durable kill switches, source revocation, restoration, and leased idempotent operations.",
|
|
7
|
+
"docsUrl": "https://github.com/absolutejs/agent-control",
|
|
8
|
+
"name": "@absolutejs/agent-control",
|
|
9
|
+
"tagline": "See and stop every capability an agent holds."
|
|
10
|
+
},
|
|
11
|
+
"settings": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"properties": {}
|
|
14
|
+
},
|
|
15
|
+
"wiring": []
|
|
16
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@absolutejs/agent-control",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Authenticated operator API for AI agent inventory, kill switches, revocation, and restoration.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/absolutejs/agent-control.git"
|
|
10
|
+
},
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"main": "./dist/index.js",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"absolutejs": {
|
|
17
|
+
"manifestContract": 2
|
|
18
|
+
},
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"import": "./dist/index.js"
|
|
23
|
+
},
|
|
24
|
+
"./manifest": {
|
|
25
|
+
"types": "./dist/manifest.d.ts",
|
|
26
|
+
"import": "./dist/manifest.js"
|
|
27
|
+
},
|
|
28
|
+
"./manifest.json": "./dist/manifest.json"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist",
|
|
32
|
+
"README.md",
|
|
33
|
+
"LICENSE"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"format": "prettier --write \"./**/*.{ts,json,md}\"",
|
|
37
|
+
"typecheck": "tsc --noEmit",
|
|
38
|
+
"test": "bun test",
|
|
39
|
+
"build": "rm -rf dist && bun build src/index.ts src/manifest.ts --outdir dist --target=bun --external @absolutejs/agency --external @sinclair/typebox && tsc -p tsconfig.build.json && absolute-manifest emit",
|
|
40
|
+
"check:package": "bun run format && bun run typecheck && bun run test && bun run build"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@absolutejs/agency": "^0.4.0",
|
|
44
|
+
"@absolutejs/manifest": "^0.2.0",
|
|
45
|
+
"@sinclair/typebox": "^0.34.0"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/bun": "^1.3.14",
|
|
49
|
+
"prettier": "3.5.3",
|
|
50
|
+
"typescript": "5.8.3"
|
|
51
|
+
}
|
|
52
|
+
}
|