@detergent-software/atk 0.12.1-dev.2 → 0.12.2-dev.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/package.json +67 -67
- package/tool-adapters/claude-code.json +34 -34
package/package.json
CHANGED
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@detergent-software/atk",
|
|
3
|
-
"version": "0.12.
|
|
4
|
-
"description": "Agentic Tool Kit — CLI for managing AI coding tool assets.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"atk": "./build/cli.js"
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"build",
|
|
11
|
-
"!build/__tests__",
|
|
12
|
-
"tool-adapters"
|
|
13
|
-
],
|
|
14
|
-
"scripts": {
|
|
15
|
-
"build": "tsc",
|
|
16
|
-
"dev": "tsc --watch",
|
|
17
|
-
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
18
|
-
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
|
|
19
|
-
"lint": "eslint src/",
|
|
20
|
-
"lint:fix": "eslint src/ --fix --cache",
|
|
21
|
-
"test": "vitest run",
|
|
22
|
-
"test:watch": "vitest",
|
|
23
|
-
"typecheck": "tsc --noEmit"
|
|
24
|
-
},
|
|
25
|
-
"repository": {
|
|
26
|
-
"type": "git",
|
|
27
|
-
"url": "https://github.com/EmergentSoftware/agentic-toolkit.git",
|
|
28
|
-
"directory": "packages/cli"
|
|
29
|
-
},
|
|
30
|
-
"publishConfig": {
|
|
31
|
-
"registry": "https://registry.npmjs.org",
|
|
32
|
-
"access": "public"
|
|
33
|
-
},
|
|
34
|
-
"engines": {
|
|
35
|
-
"node": ">=24.0.0"
|
|
36
|
-
},
|
|
37
|
-
"dependencies": {
|
|
38
|
-
"chalk": "^5.4.0",
|
|
39
|
-
"diff": "8.0.3",
|
|
40
|
-
"ink": "^6.0.0",
|
|
41
|
-
"ink-spinner": "^5.0.0",
|
|
42
|
-
"ink-text-input": "^6.0.0",
|
|
43
|
-
"pastel": "^4.0.0",
|
|
44
|
-
"react": "^19.0.0",
|
|
45
|
-
"semver": "^7.7.0",
|
|
46
|
-
"zod": "^4.0.0"
|
|
47
|
-
},
|
|
48
|
-
"devDependencies": {
|
|
49
|
-
"@eslint/js": "^9.0.0",
|
|
50
|
-
"@testing-library/react": "^16.0.0",
|
|
51
|
-
"@types/diff": "^7.0.0",
|
|
52
|
-
"@types/node": "^24.0.0",
|
|
53
|
-
"@types/react": "^19.0.0",
|
|
54
|
-
"@types/semver": "^7.5.0",
|
|
55
|
-
"@vitest/eslint-plugin": "^1.0.0",
|
|
56
|
-
"eslint": "^9.0.0",
|
|
57
|
-
"eslint-config-prettier": "^10.0.0",
|
|
58
|
-
"eslint-plugin-perfectionist": "^5.0.0",
|
|
59
|
-
"eslint-plugin-react": "^7.37.0",
|
|
60
|
-
"eslint-plugin-react-hooks": "^7.0.0",
|
|
61
|
-
"ink-testing-library": "^4.0.0",
|
|
62
|
-
"prettier": "^3.4.0",
|
|
63
|
-
"typescript": "^5.7.0",
|
|
64
|
-
"typescript-eslint": "^8.0.0",
|
|
65
|
-
"vitest": "^4.0.0"
|
|
66
|
-
}
|
|
67
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@detergent-software/atk",
|
|
3
|
+
"version": "0.12.2-dev.1",
|
|
4
|
+
"description": "Agentic Tool Kit — CLI for managing AI coding tool assets.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"atk": "./build/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"build",
|
|
11
|
+
"!build/__tests__",
|
|
12
|
+
"tool-adapters"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsc",
|
|
16
|
+
"dev": "tsc --watch",
|
|
17
|
+
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
18
|
+
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
|
|
19
|
+
"lint": "eslint src/",
|
|
20
|
+
"lint:fix": "eslint src/ --fix --cache",
|
|
21
|
+
"test": "vitest run",
|
|
22
|
+
"test:watch": "vitest",
|
|
23
|
+
"typecheck": "tsc --noEmit"
|
|
24
|
+
},
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/EmergentSoftware/agentic-toolkit.git",
|
|
28
|
+
"directory": "packages/cli"
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"registry": "https://registry.npmjs.org",
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=24.0.0"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"chalk": "^5.4.0",
|
|
39
|
+
"diff": "8.0.3",
|
|
40
|
+
"ink": "^6.0.0",
|
|
41
|
+
"ink-spinner": "^5.0.0",
|
|
42
|
+
"ink-text-input": "^6.0.0",
|
|
43
|
+
"pastel": "^4.0.0",
|
|
44
|
+
"react": "^19.0.0",
|
|
45
|
+
"semver": "^7.7.0",
|
|
46
|
+
"zod": "^4.0.0"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@eslint/js": "^9.0.0",
|
|
50
|
+
"@testing-library/react": "^16.0.0",
|
|
51
|
+
"@types/diff": "^7.0.0",
|
|
52
|
+
"@types/node": "^24.0.0",
|
|
53
|
+
"@types/react": "^19.0.0",
|
|
54
|
+
"@types/semver": "^7.5.0",
|
|
55
|
+
"@vitest/eslint-plugin": "^1.0.0",
|
|
56
|
+
"eslint": "^9.0.0",
|
|
57
|
+
"eslint-config-prettier": "^10.0.0",
|
|
58
|
+
"eslint-plugin-perfectionist": "^5.0.0",
|
|
59
|
+
"eslint-plugin-react": "^7.37.0",
|
|
60
|
+
"eslint-plugin-react-hooks": "^7.0.0",
|
|
61
|
+
"ink-testing-library": "^4.0.0",
|
|
62
|
+
"prettier": "^3.4.0",
|
|
63
|
+
"typescript": "^5.7.0",
|
|
64
|
+
"typescript-eslint": "^8.0.0",
|
|
65
|
+
"vitest": "^4.0.0"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "../../../schemas/adapter.schema.json",
|
|
3
|
-
"tool": "claude-code",
|
|
4
|
-
"displayName": "Claude Code",
|
|
5
|
-
"configDetection": [".claude/"],
|
|
6
|
-
"placements": {
|
|
7
|
-
"skill": {
|
|
8
|
-
"path": ".claude/skills/{name}/",
|
|
9
|
-
"entrypointName": "SKILL.md"
|
|
10
|
-
},
|
|
11
|
-
"agent": {
|
|
12
|
-
"path": ".claude/agents/{name}.md"
|
|
13
|
-
},
|
|
14
|
-
"rule": {
|
|
15
|
-
"path": ".claude/rules/{name}.md"
|
|
16
|
-
},
|
|
17
|
-
"hook": {
|
|
18
|
-
"path": ".claude/hooks/{name}.sh",
|
|
19
|
-
"configFile": ".claude/settings.json",
|
|
20
|
-
"configKey": "hooks",
|
|
21
|
-
"configMerge": true
|
|
22
|
-
},
|
|
23
|
-
"memory-template": {
|
|
24
|
-
"path": ".claude/CLAUDE.md"
|
|
25
|
-
},
|
|
26
|
-
"mcp-config": {
|
|
27
|
-
"path": "",
|
|
28
|
-
"configFile": ".mcp.json",
|
|
29
|
-
"configKey": "mcpServers",
|
|
30
|
-
"configMerge": true,
|
|
31
|
-
"fileless": true
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../schemas/adapter.schema.json",
|
|
3
|
+
"tool": "claude-code",
|
|
4
|
+
"displayName": "Claude Code",
|
|
5
|
+
"configDetection": [".claude/"],
|
|
6
|
+
"placements": {
|
|
7
|
+
"skill": {
|
|
8
|
+
"path": ".claude/skills/{name}/",
|
|
9
|
+
"entrypointName": "SKILL.md"
|
|
10
|
+
},
|
|
11
|
+
"agent": {
|
|
12
|
+
"path": ".claude/agents/{name}.md"
|
|
13
|
+
},
|
|
14
|
+
"rule": {
|
|
15
|
+
"path": ".claude/rules/{name}.md"
|
|
16
|
+
},
|
|
17
|
+
"hook": {
|
|
18
|
+
"path": ".claude/hooks/{name}.sh",
|
|
19
|
+
"configFile": ".claude/settings.json",
|
|
20
|
+
"configKey": "hooks",
|
|
21
|
+
"configMerge": true
|
|
22
|
+
},
|
|
23
|
+
"memory-template": {
|
|
24
|
+
"path": ".claude/CLAUDE.md"
|
|
25
|
+
},
|
|
26
|
+
"mcp-config": {
|
|
27
|
+
"path": "",
|
|
28
|
+
"configFile": ".mcp.json",
|
|
29
|
+
"configKey": "mcpServers",
|
|
30
|
+
"configMerge": true,
|
|
31
|
+
"fileless": true
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|