@allthingsclaude/blueprints 0.1.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/LICENSE +21 -0
- package/README.md +413 -0
- package/bin/cli.js +4 -0
- package/content/agents/audit.md +553 -0
- package/content/agents/bootstrap.md +386 -0
- package/content/agents/finalize.md +490 -0
- package/content/agents/handoff.md +207 -0
- package/content/agents/implement.md +350 -0
- package/content/agents/parallelize.md +484 -0
- package/content/agents/plan.md +309 -0
- package/content/agents/research-codebase.md +33 -0
- package/content/agents/research-docs.md +34 -0
- package/content/agents/research-web.md +34 -0
- package/content/commands/audit.md +54 -0
- package/content/commands/bootstrap.md +46 -0
- package/content/commands/brainstorm.md +76 -0
- package/content/commands/challenge.md +26 -0
- package/content/commands/cleanup.md +326 -0
- package/content/commands/critique.md +34 -0
- package/content/commands/debug.md +283 -0
- package/content/commands/explain.md +340 -0
- package/content/commands/finalize.md +49 -0
- package/content/commands/flush.md +29 -0
- package/content/commands/handoff.md +46 -0
- package/content/commands/implement.md +67 -0
- package/content/commands/kickoff.md +65 -0
- package/content/commands/parallelize.md +118 -0
- package/content/commands/pickup.md +30 -0
- package/content/commands/plan.md +38 -0
- package/content/commands/refactor.md +406 -0
- package/content/commands/research.md +58 -0
- package/content/commands/test.md +229 -0
- package/content/commands/verify.md +16 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +150 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -0
- package/dist/installer.d.ts +49 -0
- package/dist/installer.d.ts.map +1 -0
- package/dist/installer.js +125 -0
- package/dist/installer.js.map +1 -0
- package/package.json +64 -0
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@allthingsclaude/blueprints",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Claude Code commands and agents for enhanced AI-assisted development workflows",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"blueprints": "./bin/cli.js",
|
|
10
|
+
"@allthingsclaude/blueprints": "./bin/cli.js"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "tsc",
|
|
14
|
+
"dev": "tsc --watch",
|
|
15
|
+
"test": "vitest run",
|
|
16
|
+
"test:watch": "vitest",
|
|
17
|
+
"prepublishOnly": "pnpm run build && pnpm run test",
|
|
18
|
+
"release:patch": "pnpm run build && pnpm run test && npm version patch && git push && git push --tags",
|
|
19
|
+
"release:minor": "pnpm run build && pnpm run test && npm version minor && git push && git push --tags",
|
|
20
|
+
"release:major": "pnpm run build && pnpm run test && npm version major && git push && git push --tags"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"claude",
|
|
24
|
+
"claude-code",
|
|
25
|
+
"ai",
|
|
26
|
+
"agents",
|
|
27
|
+
"commands",
|
|
28
|
+
"cli",
|
|
29
|
+
"development",
|
|
30
|
+
"workflow",
|
|
31
|
+
"anthropic"
|
|
32
|
+
],
|
|
33
|
+
"author": "Marko Radak (https://github.com/markoradak)",
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "https://github.com/allthingsclaude/blueprints.git"
|
|
38
|
+
},
|
|
39
|
+
"homepage": "https://github.com/allthingsclaude/blueprints#readme",
|
|
40
|
+
"bugs": {
|
|
41
|
+
"url": "https://github.com/allthingsclaude/blueprints/issues"
|
|
42
|
+
},
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=16.0.0"
|
|
45
|
+
},
|
|
46
|
+
"files": [
|
|
47
|
+
"bin/",
|
|
48
|
+
"dist/",
|
|
49
|
+
"content/",
|
|
50
|
+
"README.md"
|
|
51
|
+
],
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"chalk": "^4.1.2",
|
|
54
|
+
"commander": "^11.1.0",
|
|
55
|
+
"inquirer": "^8.2.6",
|
|
56
|
+
"ora": "^5.4.1"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@types/inquirer": "^8.2.10",
|
|
60
|
+
"@types/node": "^20.10.0",
|
|
61
|
+
"typescript": "^5.3.0",
|
|
62
|
+
"vitest": "^4.0.16"
|
|
63
|
+
}
|
|
64
|
+
}
|