-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 999 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 999 Bytes
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
{
"name": "adlc-cli",
"version": "2.0.0",
"description": "Dual-mode CLI for coding agents: skill management (install skills, generate slash commands, wire lifecycle events) + headless task execution (run any agent CLI headlessly with a task — the invocation layer the Agentic Container delegates to).",
"type": "module",
"bin": {
"adlc-cli": "bin/adlc-cli.mjs",
"adlc-skills-cli": "bin/adlc-skills-cli.mjs"
},
"scripts": {
"test": "node --test",
"prepublishOnly": "npm test"
},
"engines": {
"node": ">=18"
},
"files": [
"bin/",
"src/",
"shim/"
],
"keywords": [
"ai",
"agent",
"cli",
"skills",
"opencode",
"claude",
"cursor",
"codex",
"copilot",
"gemini",
"goose"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tikalk/adlc-cli.git"
},
"homepage": "https://github.com/tikalk/adlc-cli#readme",
"publishConfig": {
"provenance": true
}
}