@claude-code-mastery/starter-kit 1.0.0
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/.starter-kit/profiles/clean.md +113 -0
- package/.claude/.starter-kit/profiles/go.md +458 -0
- package/.claude/.starter-kit/profiles/node.md +429 -0
- package/.claude/.starter-kit/profiles/python.md +475 -0
- package/.claude/.starter-kit/shared/analytics-rybbit.md +55 -0
- package/.claude/.starter-kit/shared/claude-md-base.md +93 -0
- package/.claude/.starter-kit/shared/deployment-dokploy.md +158 -0
- package/.claude/.starter-kit/shared/feature-manifest.md +43 -0
- package/.claude/.starter-kit/shared/mcp-and-pooler.md +38 -0
- package/.claude/.starter-kit/shared/mongo-setup.md +20 -0
- package/.claude/.starter-kit/shared/profile-config.md +65 -0
- package/.claude/.starter-kit/shared/seo.md +113 -0
- package/.claude/.starter-kit/shared/sql-setup.md +37 -0
- package/.claude/commands/add-feature.md +349 -0
- package/.claude/commands/add-project-setup.md +156 -0
- package/.claude/commands/architecture.md +27 -0
- package/.claude/commands/commit.md +61 -0
- package/.claude/commands/convert-project-to-starter-kit.md +508 -0
- package/.claude/commands/create-api.md +385 -0
- package/.claude/commands/create-e2e.md +230 -0
- package/.claude/commands/diagram.md +301 -0
- package/.claude/commands/help.md +120 -0
- package/.claude/commands/install-global.md +145 -0
- package/.claude/commands/new-project.md +244 -0
- package/.claude/commands/optimize-docker.md +352 -0
- package/.claude/commands/progress.md +61 -0
- package/.claude/commands/projects-created.md +79 -0
- package/.claude/commands/quickstart.md +105 -0
- package/.claude/commands/refactor.md +267 -0
- package/.claude/commands/remove-project.md +95 -0
- package/.claude/commands/review.md +59 -0
- package/.claude/commands/security-check.md +77 -0
- package/.claude/commands/set-project-profile-default.md +79 -0
- package/.claude/commands/setup.md +337 -0
- package/.claude/commands/show-user-guide.md +58 -0
- package/.claude/commands/starter-kit.md +90 -0
- package/.claude/commands/test-plan.md +118 -0
- package/.claude/commands/update-project.md +413 -0
- package/.claude/commands/what-is-my-ai-doing.md +42 -0
- package/.claude/commands/worktree.md +124 -0
- package/.claude/hooks/block-dangerous-bash.py +55 -0
- package/.claude/hooks/check-branch.sh +116 -0
- package/.claude/hooks/check-e2e.sh +71 -0
- package/.claude/hooks/check-env-sync.sh +41 -0
- package/.claude/hooks/check-file-length.py +47 -0
- package/.claude/hooks/check-ports.sh +59 -0
- package/.claude/hooks/check-rulecatch.sh +33 -0
- package/.claude/hooks/check-rybbit.sh +63 -0
- package/.claude/hooks/lint-on-save.sh +59 -0
- package/.claude/hooks/verify-no-secrets.sh +80 -0
- package/.claude/settings.json +34 -0
- package/.claude/skills/api-conventions/SKILL.md +34 -0
- package/.claude/skills/code-review/SKILL.md +87 -0
- package/.claude/skills/code-review/references/mongodb-checks.md +25 -0
- package/.claude/skills/code-review/references/project-checks.md +38 -0
- package/.claude/skills/create-service/SKILL.md +222 -0
- package/.claude/skills/debugger/SKILL.md +39 -0
- package/.claude/skills/dependency-vetting/SKILL.md +46 -0
- package/.claude/skills/design-review/SKILL.md +50 -0
- package/.claude/skills/mcp-builder/SKILL.md +57 -0
- package/.claude/skills/mongodb-rules/SKILL.md +62 -0
- package/.claude/skills/terminal-tui/SKILL.md +106 -0
- package/.claude/skills/test-writer/SKILL.md +78 -0
- package/LICENSE +21 -0
- package/README.md +2152 -0
- package/bin/cli.js +205 -0
- package/claude-mastery-project.conf +220 -0
- package/global-claude-md/CLAUDE.md +212 -0
- package/global-claude-md/settings.json +3 -0
- package/package.json +81 -0
package/package.json
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@claude-code-mastery/starter-kit",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Production-ready Claude Code starter kit — commands, hooks, skills, and agents for AI-assisted development",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"bin": {
|
|
10
|
+
"@claude-code-mastery/starter-kit": "./bin/cli.js"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
".claude/commands/",
|
|
14
|
+
".claude/hooks/",
|
|
15
|
+
".claude/skills/",
|
|
16
|
+
".claude/agents/",
|
|
17
|
+
".claude/.starter-kit/",
|
|
18
|
+
".claude/settings.json",
|
|
19
|
+
"bin/",
|
|
20
|
+
"claude-mastery-project.conf",
|
|
21
|
+
"global-claude-md/"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"dev": "tsx watch src/index.ts",
|
|
25
|
+
"dev:website": "PORT=3000 tsx watch src/index.ts",
|
|
26
|
+
"dev:api": "PORT=3001 tsx watch src/index.ts",
|
|
27
|
+
"dev:dashboard": "PORT=3002 tsx watch src/index.ts",
|
|
28
|
+
"dev:test:website": "PORT=4000 tsx watch src/index.ts",
|
|
29
|
+
"dev:test:api": "PORT=4010 tsx watch src/index.ts",
|
|
30
|
+
"dev:test:dashboard": "PORT=4020 tsx watch src/index.ts",
|
|
31
|
+
"build": "tsc --noEmit && tsc",
|
|
32
|
+
"postbuild": "pnpm build:optimize",
|
|
33
|
+
"build:optimize": "classpresso optimize",
|
|
34
|
+
"start": "node dist/index.js",
|
|
35
|
+
"typecheck": "tsc --noEmit",
|
|
36
|
+
"test": "pnpm test:unit && pnpm test:e2e",
|
|
37
|
+
"test:unit": "vitest run",
|
|
38
|
+
"test:unit:watch": "vitest",
|
|
39
|
+
"test:coverage": "vitest run --coverage",
|
|
40
|
+
"test:e2e": "pnpm test:kill-ports && playwright test",
|
|
41
|
+
"test:e2e:ui": "pnpm test:kill-ports && playwright test --ui",
|
|
42
|
+
"test:e2e:headed": "pnpm test:kill-ports && playwright test --headed",
|
|
43
|
+
"test:e2e:report": "playwright show-report",
|
|
44
|
+
"test:e2e:chromium": "pnpm test:kill-ports && playwright test --project=chromium",
|
|
45
|
+
"test:kill-ports": "lsof -ti:4000,4010,4020 | xargs kill -9 2>/dev/null || true",
|
|
46
|
+
"lint": "tsc --noEmit",
|
|
47
|
+
"db:query": "tsx scripts/db-query.ts",
|
|
48
|
+
"db:query:list": "tsx scripts/db-query.ts --list",
|
|
49
|
+
"content:build": "tsx scripts/build-content.ts",
|
|
50
|
+
"content:build:id": "tsx scripts/build-content.ts --id",
|
|
51
|
+
"content:list": "tsx scripts/build-content.ts --list",
|
|
52
|
+
"content:dry-run": "tsx scripts/build-content.ts --dry-run",
|
|
53
|
+
"ai:monitor": "npx @rulecatch/ai-pooler monitor --no-api-key",
|
|
54
|
+
"docker:optimize": "echo 'Run /optimize-docker in Claude Code to audit your Dockerfile'",
|
|
55
|
+
"clean": "rm -rf dist coverage test-results playwright-report",
|
|
56
|
+
"precommit": "tsc --noEmit"
|
|
57
|
+
},
|
|
58
|
+
"engines": {
|
|
59
|
+
"node": ">=20.0.0"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@playwright/test": "^1.42.0",
|
|
63
|
+
"@types/node": "^25.2.3",
|
|
64
|
+
"tsx": "^4.7.0",
|
|
65
|
+
"typescript": "^5.4.0",
|
|
66
|
+
"classpresso": "^1.7.2",
|
|
67
|
+
"vitest": "^2.0.0"
|
|
68
|
+
},
|
|
69
|
+
"dependencies": {
|
|
70
|
+
"strictdb": "^0.1.0",
|
|
71
|
+
"zod": "^3.23.0"
|
|
72
|
+
},
|
|
73
|
+
"peerDependencies": {
|
|
74
|
+
"mongodb": "^6.5.0"
|
|
75
|
+
},
|
|
76
|
+
"peerDependenciesMeta": {
|
|
77
|
+
"mongodb": {
|
|
78
|
+
"optional": true
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|