-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.99 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@amittell/agentcli",
"version": "0.3.2",
"description": "Agent-native workflow manifest CLI, schema, and protocol surface for standalone planning and backend compilation.",
"type": "module",
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./cli": "./src/cli.js",
"./jsonrpc": "./src/jsonrpc.js",
"./schema": "./src/schema.js",
"./targets": "./src/targets.js",
"./shell": "./src/shell.js",
"./validate": "./src/validate.js",
"./compile/standalone": "./src/compiler/standalone.js",
"./compile/openclaw-scheduler": "./src/compiler/openclaw-scheduler.js",
"./apply": "./src/apply.js",
"./capabilities": "./src/capabilities.js",
"./shorthand": "./src/shorthand.js",
"./inspect": "./src/inspect.js",
"./home": "./src/home.js",
"./describe": "./src/describe.js",
"./sanitize": "./src/sanitize.js",
"./fields": "./src/fields.js",
"./io": "./src/io.js"
},
"bin": {
"agentcli": "bin/agentcli.js"
},
"engines": {
"node": ">=22.5.0"
},
"scripts": {
"test": "node --test",
"lint": "eslint . --max-warnings=0"
},
"files": [
"bin",
"docs",
"!docs/superpowers",
"examples",
"skills",
"src",
"AGENTS.md",
"CONTEXT.md",
"MANIFEST-QUICK-REF.md",
"CHANGELOG.md",
"README.md",
"LICENSE",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"SECURITY.md"
],
"keywords": [
"agent",
"cli",
"workflow",
"scheduler",
"manifest",
"json-rpc",
"automation",
"orchestration"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/amittell/agentcli.git"
},
"bugs": {
"url": "https://github.com/amittell/agentcli/issues"
},
"homepage": "https://github.com/amittell/agentcli#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.2",
"globals": "^17.4.0"
}
}