-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.92 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
{
"name": "all-for-claudecode",
"version": "2.14.0",
"description": "Claude Code plugin that automates the full dev cycle \u2014 spec, plan, implement, review, clean.",
"bin": {
"all-for-claudecode": "bin/cli.mjs"
},
"type": "module",
"files": [
"agents/",
"bin/",
"skills/",
"docs/",
"hooks/",
"schemas/",
"scripts/",
"templates/",
".claude-plugin/",
"LICENSE",
"README.md",
"MIGRATION.md"
],
"author": {
"name": "jhlee0409",
"email": "relee6203@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jhlee0409/all-for-claudecode.git"
},
"homepage": "https://github.com/jhlee0409/all-for-claudecode#readme",
"bugs": {
"url": "https://github.com/jhlee0409/all-for-claudecode/issues"
},
"scripts": {
"lint": "shellcheck -x --source-path=scripts --severity=warning scripts/*.sh && bash scripts/afc-schema-validate.sh --all && bash scripts/afc-consistency-check.sh",
"qa": "bash scripts/afc-qa-audit.sh",
"test": "vendor/shellspec/shellspec",
"test:all": "npm run lint && npm run qa && npm run test",
"setup:test": "bash scripts/install-shellspec.sh",
"sync:cache": "bash scripts/afc-sync-cache.sh",
"validate:plugin": "claude plugin validate . 2>&1 || echo '[afc:validate] claude CLI not available \u2014 skipping plugin validation'"
},
"engines": {
"node": ">=18"
},
"keywords": [
"claude-code",
"claude-code-plugin",
"claude-code-plugins",
"claude-plugin",
"anthropic",
"pipeline",
"automation",
"workflow-automation",
"development-workflow",
"sdlc-automation",
"hooks",
"slash-commands",
"developer-tools",
"ai-agents",
"agentic-coding",
"ai-coding",
"code-review",
"code-generation",
"quality-gates",
"ci-gates",
"critic-loop",
"task-orchestration",
"spec-driven-development"
]
}