claude-code-conductor 0.2.0__py3-none-any.whl

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 (57) hide show
  1. c3/__init__.py +3 -0
  2. c3/__main__.py +4 -0
  3. c3/_template/.claude/CLAUDE.md +182 -0
  4. c3/_template/.claude/agents/architect.md +50 -0
  5. c3/_template/.claude/agents/code-reviewer.md +50 -0
  6. c3/_template/.claude/agents/developer.md +55 -0
  7. c3/_template/.claude/agents/doc-writer.md +62 -0
  8. c3/_template/.claude/agents/interviewer.md +46 -0
  9. c3/_template/.claude/agents/planner.md +59 -0
  10. c3/_template/.claude/agents/project-setup.md +106 -0
  11. c3/_template/.claude/agents/security-reviewer.md +51 -0
  12. c3/_template/.claude/agents/tdd-develop.md +117 -0
  13. c3/_template/.claude/agents/tester.md +48 -0
  14. c3/_template/.claude/commands/develop.md +10 -0
  15. c3/_template/.claude/commands/doc.md +174 -0
  16. c3/_template/.claude/commands/extract-lib.md +292 -0
  17. c3/_template/.claude/commands/init-session.md +110 -0
  18. c3/_template/.claude/commands/mcp.md +322 -0
  19. c3/_template/.claude/commands/promote-pattern.md +135 -0
  20. c3/_template/.claude/commands/review.md +9 -0
  21. c3/_template/.claude/commands/setup.md +206 -0
  22. c3/_template/.claude/commands/start.md +88 -0
  23. c3/_template/.claude/docs/parallel-orchestra-manifest.md +108 -0
  24. c3/_template/.claude/hooks/clear_file_history.py +39 -0
  25. c3/_template/.claude/hooks/enable_sandbox.py +61 -0
  26. c3/_template/.claude/hooks/pre_compact.py +82 -0
  27. c3/_template/.claude/hooks/pre_tool.py +64 -0
  28. c3/_template/.claude/hooks/statusline.py +170 -0
  29. c3/_template/.claude/hooks/stop.py +202 -0
  30. c3/_template/.claude/hooks/validate_skill_change.py +33 -0
  31. c3/_template/.claude/hooks/worktree_guard.py +53 -0
  32. c3/_template/.claude/memory/.gitkeep +0 -0
  33. c3/_template/.claude/rules/code-review-checklist.md +91 -0
  34. c3/_template/.claude/rules/promoted/index.md +5 -0
  35. c3/_template/.claude/rules/security-review-checklist.md +84 -0
  36. c3/_template/.claude/settings.json +136 -0
  37. c3/_template/.claude/settings.local.json +126 -0
  38. c3/_template/.claude/skills/dev-workflow.md +484 -0
  39. c3/_template/.claude/skills/parallel-execution.md +121 -0
  40. c3/_template/.claude/skills/promoted/index.md +5 -0
  41. c3/_template/.claude/skills/worktree-tdd-workflow.md +71 -0
  42. c3/cli.py +63 -0
  43. c3/cli_doctor.py +135 -0
  44. c3/cli_init.py +70 -0
  45. c3/cli_list.py +69 -0
  46. c3/cli_po.py +102 -0
  47. c3/cli_update.py +117 -0
  48. c3/paths.py +64 -0
  49. c3/po/__init__.py +11 -0
  50. c3/po/detect.py +44 -0
  51. c3/po/manifest.py +336 -0
  52. c3/po/run.py +105 -0
  53. claude_code_conductor-0.2.0.dist-info/METADATA +362 -0
  54. claude_code_conductor-0.2.0.dist-info/RECORD +57 -0
  55. claude_code_conductor-0.2.0.dist-info/WHEEL +4 -0
  56. claude_code_conductor-0.2.0.dist-info/entry_points.txt +2 -0
  57. claude_code_conductor-0.2.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,136 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(python .claude/hooks/clear_file_history.py*)",
5
+ "Bash(python .claude/hooks/enable_sandbox.py*)",
6
+ "Bash(python .claude/hooks/stop.py*)",
7
+ "Bash(python .claude/hooks/pre_tool.py*)",
8
+ "Bash(python .claude/hooks/pre_compact.py*)",
9
+ "Bash(python .claude/hooks/validate_skill_change.py*)",
10
+ "Bash(python .claude/hooks/statusline.py*)",
11
+ "Read(**)",
12
+ "Glob(**)",
13
+ "Grep(**)",
14
+ "Edit(.claude/reports/**)",
15
+ "Write(.claude/reports/**)",
16
+ "Write(.claude/tmp/**)",
17
+ "Write(.claude/memory/**)",
18
+ "Edit(.claude/memory/sessions/**)",
19
+ "Write(.claude/memory/sessions/**)",
20
+ "Write(.claude/rules/promoted/**)",
21
+ "Write(.claude/skills/promoted/**)",
22
+ "Bash(git status*)",
23
+ "Bash(git diff*)",
24
+ "Bash(git log*)",
25
+ "Bash(git add*)",
26
+ "Bash(git commit*)",
27
+ "Bash(git rev-parse*)"
28
+ ],
29
+ "deny": [
30
+ "Read(.env)",
31
+ "Read(**/.env)",
32
+ "Read(**.env.*)"
33
+ ]
34
+ },
35
+ "sandbox": {
36
+ "enabled": true,
37
+ "autoAllowBashIfSandboxed": true,
38
+ "allowUnsandboxedCommands": false,
39
+ "excludedCommands": [],
40
+ "network": {
41
+ "allowUnixSockets": [],
42
+ "allowAllUnixSockets": false,
43
+ "allowLocalBinding": false,
44
+ "allowedDomains": []
45
+ },
46
+ "enableWeakerNestedSandbox": true
47
+ },
48
+ "statusLine": {
49
+ "type": "command",
50
+ "command": "python .claude/hooks/statusline.py"
51
+ },
52
+ "hooks": {
53
+ "PreToolUse": [
54
+ {
55
+ "matcher": "Bash",
56
+ "hooks": [
57
+ {
58
+ "type": "command",
59
+ "command": "python .claude/hooks/pre_tool.py"
60
+ }
61
+ ]
62
+ },
63
+ {
64
+ "matcher": "Write",
65
+ "hooks": [
66
+ {
67
+ "type": "command",
68
+ "command": "python .claude/hooks/worktree_guard.py"
69
+ }
70
+ ]
71
+ },
72
+ {
73
+ "matcher": "Edit",
74
+ "hooks": [
75
+ {
76
+ "type": "command",
77
+ "command": "python .claude/hooks/worktree_guard.py"
78
+ }
79
+ ]
80
+ }
81
+ ],
82
+ "PostToolUse": [
83
+ {
84
+ "matcher": "Write",
85
+ "hooks": [
86
+ {
87
+ "type": "command",
88
+ "command": "python .claude/hooks/validate_skill_change.py"
89
+ }
90
+ ]
91
+ },
92
+ {
93
+ "matcher": "Edit",
94
+ "hooks": [
95
+ {
96
+ "type": "command",
97
+ "command": "python .claude/hooks/validate_skill_change.py"
98
+ }
99
+ ]
100
+ }
101
+ ],
102
+ "PreCompact": [
103
+ {
104
+ "matcher": "",
105
+ "hooks": [
106
+ {
107
+ "type": "command",
108
+ "command": "python .claude/hooks/pre_compact.py"
109
+ }
110
+ ]
111
+ }
112
+ ],
113
+ "Stop": [
114
+ {
115
+ "matcher": "",
116
+ "hooks": [
117
+ {
118
+ "type": "command",
119
+ "command": "python .claude/hooks/stop.py"
120
+ }
121
+ ]
122
+ }
123
+ ],
124
+ "UserPromptSubmit": [
125
+ {
126
+ "matcher": "",
127
+ "hooks": [
128
+ {
129
+ "type": "command",
130
+ "command": "python .claude/hooks/statusline.py"
131
+ }
132
+ ]
133
+ }
134
+ ]
135
+ }
136
+ }
@@ -0,0 +1,126 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(python .claude/hooks/clear_file_history.py*)",
5
+ "Bash(python .claude/hooks/enable_sandbox.py*)",
6
+ "Bash(python .claude/hooks/stop.py*)",
7
+ "Bash(python .claude/hooks/pre_tool.py*)",
8
+ "Bash(python .claude/hooks/pre_compact.py*)",
9
+ "Bash(python .claude/hooks/validate_skill_change.py*)",
10
+ "Bash(python .claude/hooks/statusline.py*)",
11
+ "Bash(python -m pytest tests/test_task_manager.py -v)",
12
+ "Bash(python *)",
13
+ "Bash(pytest *)",
14
+ "Bash(xargs wc *)",
15
+ "Bash(git add*)",
16
+ "Bash(git commit*)",
17
+ "Bash(git status*)",
18
+ "Bash(git diff*)",
19
+ "Bash(git log*)",
20
+ "Bash(pytest*)",
21
+ "Bash(python -m pytest*)",
22
+ "Bash(mkdir*)",
23
+ "Edit(**)",
24
+ "Edit(.claude/reports/**)",
25
+ "Edit(.claude/memory/sessions/**)",
26
+ "Glob(**)",
27
+ "Grep(**)",
28
+ "Read(**)",
29
+ "Write(**)",
30
+ "Write(.claude/tmp/**)",
31
+ "Write(.claude/memory/**)",
32
+ "Write(.claude/reports/**)",
33
+ "Write(.claude/memory/sessions/**)",
34
+ "Write(.claude/rules/promoted/**)",
35
+ "Write(.claude/skills/promoted/**)",
36
+ "WebFetch(domain:github.com)",
37
+ "WebFetch(domain:pypi.org)",
38
+ "Bash(grep \"\\\\.py$\")",
39
+ "WebFetch(domain:raw.githubusercontent.com)"
40
+ ]
41
+ },
42
+ "hooks": {
43
+ "PreToolUse": [
44
+ {
45
+ "matcher": "Bash",
46
+ "hooks": [
47
+ {
48
+ "type": "command",
49
+ "command": "python .claude/hooks/pre_tool.py"
50
+ }
51
+ ]
52
+ },
53
+ {
54
+ "matcher": "Write",
55
+ "hooks": [
56
+ {
57
+ "type": "command",
58
+ "command": "python .claude/hooks/worktree_guard.py"
59
+ }
60
+ ]
61
+ },
62
+ {
63
+ "matcher": "Edit",
64
+ "hooks": [
65
+ {
66
+ "type": "command",
67
+ "command": "python .claude/hooks/worktree_guard.py"
68
+ }
69
+ ]
70
+ }
71
+ ],
72
+ "PostToolUse": [
73
+ {
74
+ "matcher": "Write",
75
+ "hooks": [
76
+ {
77
+ "type": "command",
78
+ "command": "python .claude/hooks/validate_skill_change.py"
79
+ }
80
+ ]
81
+ },
82
+ {
83
+ "matcher": "Edit",
84
+ "hooks": [
85
+ {
86
+ "type": "command",
87
+ "command": "python .claude/hooks/validate_skill_change.py"
88
+ }
89
+ ]
90
+ }
91
+ ],
92
+ "PreCompact": [
93
+ {
94
+ "matcher": "",
95
+ "hooks": [
96
+ {
97
+ "type": "command",
98
+ "command": "python .claude/hooks/pre_compact.py"
99
+ }
100
+ ]
101
+ }
102
+ ],
103
+ "Stop": [
104
+ {
105
+ "matcher": "",
106
+ "hooks": [
107
+ {
108
+ "type": "command",
109
+ "command": "python .claude/hooks/stop.py"
110
+ }
111
+ ]
112
+ }
113
+ ],
114
+ "UserPromptSubmit": [
115
+ {
116
+ "matcher": "",
117
+ "hooks": [
118
+ {
119
+ "type": "command",
120
+ "command": "python .claude/hooks/statusline.py"
121
+ }
122
+ ]
123
+ }
124
+ ]
125
+ }
126
+ }