@chris1807/claude-kit 2.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.
Files changed (47) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +821 -0
  3. package/bin/cli.js +521 -0
  4. package/package.json +50 -0
  5. package/templates/agents/global/api-tester.md +75 -0
  6. package/templates/agents/global/azure-ops.md +59 -0
  7. package/templates/agents/global/backend.md +245 -0
  8. package/templates/agents/global/build-validator.md +50 -0
  9. package/templates/agents/global/frontend.md +254 -0
  10. package/templates/agents/global/legacy.md +218 -0
  11. package/templates/agents/global/lint-checker.md +86 -0
  12. package/templates/agents/global/manager.md +138 -0
  13. package/templates/agents/global/mockup.md +95 -0
  14. package/templates/agents/global/reviewer.md +149 -0
  15. package/templates/agents/global/security-auditor.md +74 -0
  16. package/templates/agents/global/test-runner.md +98 -0
  17. package/templates/agents/global/uat-generator.md +107 -0
  18. package/templates/agents/project/db-admin.md +106 -0
  19. package/templates/agents/project/deployer.md +113 -0
  20. package/templates/agents/project/devops-tracker.md +101 -0
  21. package/templates/commands/add-to-release.md +55 -0
  22. package/templates/commands/cherry-pick.md +96 -0
  23. package/templates/commands/cleanup-branches.md +73 -0
  24. package/templates/commands/create-release.md +65 -0
  25. package/templates/commands/deploy-release.md +147 -0
  26. package/templates/commands/deploy.md +65 -0
  27. package/templates/commands/explain.md +49 -0
  28. package/templates/commands/implement.md +170 -0
  29. package/templates/commands/promote.md +71 -0
  30. package/templates/commands/quote.md +39 -0
  31. package/templates/commands/review.md +32 -0
  32. package/templates/commands/rework.md +158 -0
  33. package/templates/commands/rollback.md +106 -0
  34. package/templates/commands/status.md +111 -0
  35. package/templates/hooks/auto-format.sh +46 -0
  36. package/templates/hooks/protected-files.sh +52 -0
  37. package/templates/hooks/secret-blocker.sh +68 -0
  38. package/templates/hooks/self-improve.sh +7 -0
  39. package/templates/hooks/sensitive-data-blocker.sh +43 -0
  40. package/templates/hooks/sensitive-data-mcp-blocker.sh +40 -0
  41. package/templates/hooks/sensitive-data-output-blocker.sh +63 -0
  42. package/templates/hooks/test-on-change.sh +46 -0
  43. package/templates/hooks/uat-reminder.sh +9 -0
  44. package/templates/infrastructure/CLAUDE-WORKFLOW.md +274 -0
  45. package/templates/infrastructure/azure-pipelines-template.yml +199 -0
  46. package/templates/infrastructure/mcp.json +35 -0
  47. package/templates/infrastructure/settings.json +94 -0
@@ -0,0 +1,35 @@
1
+ {
2
+ "mcpServers": {
3
+ "playwright": {
4
+ "command": "npx",
5
+ "args": ["@playwright/mcp"]
6
+ },
7
+ "mongodb": {
8
+ "command": "npx",
9
+ "args": ["-y", "mongodb-mcp-server"],
10
+ "env": {
11
+ "MDB_MCP_CONNECTION_STRING": "${MONGODB_CONNECTION_STRING}"
12
+ }
13
+ },
14
+ "teams": {
15
+ "command": "npx",
16
+ "args": ["-y", "@anthropic/mcp-teams-server"],
17
+ "env": {
18
+ "TEAMS_TENANT_ID": "${TEAMS_TENANT_ID}",
19
+ "TEAMS_CLIENT_ID": "${TEAMS_CLIENT_ID}",
20
+ "TEAMS_CLIENT_SECRET": "${TEAMS_CLIENT_SECRET}"
21
+ }
22
+ },
23
+ "stripe": {
24
+ "command": "npx",
25
+ "args": ["-y", "@stripe/mcp"],
26
+ "env": {
27
+ "STRIPE_SECRET_KEY": "${STRIPE_SECRET_KEY}"
28
+ }
29
+ },
30
+ "azure": {
31
+ "command": "npx",
32
+ "args": ["-y", "@azure/mcp@latest", "server", "start"]
33
+ }
34
+ }
35
+ }
@@ -0,0 +1,94 @@
1
+ {
2
+ "enableAllProjectMcpServers": true,
3
+ "hooks": {
4
+ "PreToolUse": [
5
+ {
6
+ "matcher": "Write|Edit",
7
+ "hooks": [
8
+ {
9
+ "type": "command",
10
+ "command": "bash .claude/hooks/secret-blocker.sh"
11
+ },
12
+ {
13
+ "type": "command",
14
+ "command": "bash .claude/hooks/protected-files.sh"
15
+ }
16
+ ]
17
+ },
18
+ {
19
+ "matcher": "Bash",
20
+ "hooks": [
21
+ {
22
+ "type": "command",
23
+ "command": "bash .claude/hooks/sensitive-data-blocker.sh"
24
+ }
25
+ ]
26
+ },
27
+ {
28
+ "matcher": "mcp__mongodb|mcp__mssql|mcp__postgres",
29
+ "hooks": [
30
+ {
31
+ "type": "command",
32
+ "command": "bash .claude/hooks/sensitive-data-mcp-blocker.sh"
33
+ }
34
+ ]
35
+ }
36
+ ],
37
+ "PostToolUse": [
38
+ {
39
+ "matcher": "Edit|Write",
40
+ "hooks": [
41
+ {
42
+ "type": "command",
43
+ "command": "bash .claude/hooks/auto-format.sh"
44
+ },
45
+ {
46
+ "type": "command",
47
+ "command": "bash .claude/hooks/test-on-change.sh"
48
+ }
49
+ ]
50
+ },
51
+ {
52
+ "matcher": "Bash",
53
+ "hooks": [
54
+ {
55
+ "type": "command",
56
+ "command": "bash .claude/hooks/sensitive-data-output-blocker.sh"
57
+ }
58
+ ]
59
+ },
60
+ {
61
+ "matcher": "mcp__mongodb|mcp__mssql|mcp__postgres",
62
+ "hooks": [
63
+ {
64
+ "type": "command",
65
+ "command": "bash .claude/hooks/sensitive-data-output-blocker.sh"
66
+ }
67
+ ]
68
+ },
69
+ {
70
+ "matcher": "Read|Grep",
71
+ "hooks": [
72
+ {
73
+ "type": "command",
74
+ "command": "bash .claude/hooks/sensitive-data-output-blocker.sh"
75
+ }
76
+ ]
77
+ }
78
+ ],
79
+ "Stop": [
80
+ {
81
+ "hooks": [
82
+ {
83
+ "type": "command",
84
+ "command": "bash .claude/hooks/uat-reminder.sh"
85
+ },
86
+ {
87
+ "type": "command",
88
+ "command": "bash .claude/hooks/self-improve.sh"
89
+ }
90
+ ]
91
+ }
92
+ ]
93
+ }
94
+ }