@kood/claude-code 0.3.8 → 0.3.9
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/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/.claude/agents/code-reviewer.md +16 -1
- package/templates/.claude/agents/dependency-manager.md +16 -1
- package/templates/.claude/agents/deployment-validator.md +16 -1
- package/templates/.claude/agents/git-operator.md +16 -1
- package/templates/.claude/agents/implementation-executor.md +16 -1
- package/templates/.claude/agents/lint-fixer.md +16 -1
- package/templates/.claude/agents/refactor-advisor.md +16 -1
- package/templates/.claude/commands/agent-creator.md +16 -1
- package/templates/.claude/commands/bug-fix.md +16 -1
- package/templates/.claude/commands/command-creator.md +17 -1
- package/templates/.claude/commands/docs-creator.md +17 -1
- package/templates/.claude/commands/docs-refactor.md +17 -1
- package/templates/.claude/commands/execute.md +17 -1
- package/templates/.claude/commands/git-all.md +16 -1
- package/templates/.claude/commands/git-session.md +17 -1
- package/templates/.claude/commands/git.md +17 -1
- package/templates/.claude/commands/lint-fix.md +17 -1
- package/templates/.claude/commands/lint-init.md +17 -1
- package/templates/.claude/commands/plan.md +17 -1
- package/templates/.claude/commands/prd.md +17 -1
- package/templates/.claude/commands/pre-deploy.md +17 -1
- package/templates/.claude/commands/refactor.md +17 -1
- package/templates/.claude/commands/version-update.md +17 -1
- package/templates/hono/CLAUDE.md +1 -0
- package/templates/nextjs/CLAUDE.md +12 -9
- package/templates/nextjs/docs/architecture.md +812 -0
- package/templates/npx/CLAUDE.md +1 -0
- package/templates/tanstack-start/CLAUDE.md +1 -0
package/templates/npx/CLAUDE.md
CHANGED
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
| Task | Required Actions |
|
|
49
49
|
|------|-----------------|
|
|
50
50
|
| **Before Starting** | Read relevant docs (Commander → commander, Files → fs-extra) |
|
|
51
|
+
| **Document Search** | Use serena mcp (document indexing/search, context length optimization) |
|
|
51
52
|
| **Console Output** | Use logger functions (info/success/error/warn) |
|
|
52
53
|
| **File Operations** | Async API (`fs-extra`), `path.join` for paths |
|
|
53
54
|
| **Error Handling** | try-catch + `process.exit(1)`, clear error messages to users |
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
| Task | Required Actions |
|
|
55
55
|
|------|-----------------|
|
|
56
56
|
| **Before Starting** | Read related docs (UI → design, API → tanstack-start, DB → prisma, Auth → better-auth) |
|
|
57
|
+
| **Document Search** | Use serena mcp (document indexing/search, context length optimization) |
|
|
57
58
|
| **Code Search** | Use ast-grep (function/component/pattern search) |
|
|
58
59
|
| **Complex Tasks** | Sequential Thinking MCP (5+ step tasks) |
|
|
59
60
|
| **Large Changes** | gemini-review (3+ file changes, architecture decisions) |
|