create-ai-project 1.12.1 → 1.13.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/.claude/agents-en/investigator.md +158 -0
- package/.claude/agents-en/solver.md +160 -0
- package/.claude/agents-en/verifier.md +189 -0
- package/.claude/agents-ja/investigator.md +158 -0
- package/.claude/agents-ja/solver.md +160 -0
- package/.claude/agents-ja/verifier.md +189 -0
- package/.claude/commands-en/diagnose.md +160 -0
- package/.claude/commands-ja/diagnose.md +160 -0
- package/README.ja.md +4 -0
- package/README.md +4 -0
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -133,6 +133,7 @@ Essential commands for Claude Code:
|
|
|
133
133
|
| `/front-design` | Create frontend design docs | React/Vite architecture planning |
|
|
134
134
|
| `/front-plan` | Create frontend work plan | After frontend design approval |
|
|
135
135
|
| `/front-build` | Execute frontend implementation | React component development |
|
|
136
|
+
| `/diagnose` | Root cause analysis workflow | Debugging, troubleshooting |
|
|
136
137
|
|
|
137
138
|
[Full command reference →](docs/guides/en/use-cases.md)
|
|
138
139
|
|
|
@@ -256,6 +257,9 @@ A: Those help write code. This manages entire development lifecycle with special
|
|
|
256
257
|
| **quality-fixer** | Automated fixes | On any quality issue |
|
|
257
258
|
| **code-reviewer** | Compliance check | `/review` command |
|
|
258
259
|
| **integration-test-reviewer** | Test implementation quality | After test implementation |
|
|
260
|
+
| **investigator** | Problem investigation | `/diagnose` Step 1 |
|
|
261
|
+
| **verifier** | Investigation verification | `/diagnose` Step 3 |
|
|
262
|
+
| **solver** | Solution derivation | `/diagnose` Step 4 |
|
|
259
263
|
|
|
260
264
|
[Full agent list →](.claude/agents-en/)
|
|
261
265
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-ai-project",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.1",
|
|
4
4
|
"packageManager": "npm@10.8.2",
|
|
5
|
-
"description": "TypeScript
|
|
5
|
+
"description": "TypeScript boilerplate with skills and sub-agents for Claude Code. Prevents context exhaustion through role-based task splitting.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"typescript",
|
|
8
8
|
"boilerplate",
|
|
@@ -13,7 +13,12 @@
|
|
|
13
13
|
"claude-code",
|
|
14
14
|
"anthropic",
|
|
15
15
|
"ai-development",
|
|
16
|
-
"llm-development"
|
|
16
|
+
"llm-development",
|
|
17
|
+
"skills",
|
|
18
|
+
"sub-agents",
|
|
19
|
+
"agentic",
|
|
20
|
+
"workflow",
|
|
21
|
+
"multi-agent"
|
|
17
22
|
],
|
|
18
23
|
"author": "Shinsuke Kagawa",
|
|
19
24
|
"license": "MIT",
|