cc-codeconductor 0.3.2 → 0.3.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-codeconductor",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "A multi-agent orchestration framework for AI-assisted software engineering workflows.",
5
5
  "keywords": [
6
6
  "ai",
@@ -51,6 +51,7 @@ Antigravity CLI loads custom slash commands from `.agents/workflows/*.md`. The f
51
51
  | Slash Command | Workflow Description |
52
52
  | ---------------- | ------------------------------------------------------------------ |
53
53
  | `/cc-feature` | Runs the full feature design, implementation, and review workflow |
54
+ | `/cc-council` | Runs Council-Driven Development workflow (SDD, TDD, surgical changes) |
54
55
  | `/cc-fix` | Runs the bug fix verification and repair workflow |
55
56
  | `/cc-refactor` | Runs the code refactoring and test safety workflow |
56
57
  | `/cc-review` | Runs a structured, multi-perspective code review and audit |
@@ -1,5 +1 @@
1
- ---
2
- name: commit
3
- description: Genera un commit en inglés siguiendo Conventional Commits basado en los cambios staged
4
- ---
5
1
  {{COMMIT_WORKFLOW}}
@@ -0,0 +1,64 @@
1
+ ---
2
+ name: cc-council
3
+ description: Run the full Council-Driven Development workflow — SDD spec creation, TDD enforcement, surgical implementation, and multi-perspective review.
4
+ ---
5
+
6
+ # Council-Driven Workflow
7
+
8
+ Task request: $ARGUMENTS
9
+
10
+ ## Step 1 — Deliberation & Specification (SDD)
11
+
12
+ Invoke the `council` skill to analyze the request before writing any code. The council must act as a steering committee involving `task-coach` (Product), `architect`, and `devil`.
13
+
14
+ The council must:
15
+ 1. Clarify the prompt and define the absolute minimum scope (Simplicity Gate).
16
+ 2. Explicitly document all assumptions and resolve ambiguities (Think Before Coding).
17
+ 3. Draft a Task Card & Technical Plan (The Specification).
18
+
19
+ **STOP here. Show the agreed Task Card & Technical Plan and wait for human confirmation before continuing.**
20
+
21
+ ---
22
+
23
+ ## Step 2 — Test Definition (TDD)
24
+
25
+ Invoke `tester` with the approved Task Card & Technical Plan.
26
+
27
+ tester must:
28
+ 1. Write failing tests based on the Acceptance Criteria defined in the Task Card.
29
+ 2. Confirm the tests fail as expected (Red state).
30
+
31
+ **Goal-Driven Execution (Karpathy)**: Do not proceed until verifiable tests are written and fail for the correct reasons.
32
+
33
+ ---
34
+
35
+ ## Step 3 — Surgical Implementation
36
+
37
+ Invoke `implementer` with the failing tests and the Technical Plan.
38
+
39
+ implementer must:
40
+ 1. Write the minimal code required to pass the tests.
41
+ 2. Touch ONLY the files specified in the Technical Plan (Surgical Changes).
42
+ 3. NOT refactor adjacent code, change existing styles, or build speculative features.
43
+ 4. Run the tests. Loop `implementer` -> `tester` until all tests pass (Green state).
44
+
45
+ ---
46
+
47
+ ## Step 4 — Multi-Perspective Council Review
48
+
49
+ Invoke the `council` skill on the generated diff to perform the final review phase.
50
+
51
+ The council will evaluate the diff against the 6 axes (Architecture, Security, Product, Delivery, DataOps, Devil).
52
+
53
+ If ANY agent votes CRITICAL (especially due to over-engineering, scope creep, or missing the verifiable goals):
54
+ - The Review Report status is **BLOCKED**.
55
+ - Return to Step 3 with the feedback.
56
+
57
+ If APPROVED (no CRITICAL findings):
58
+ - Deliver the final Council Verdict and the diff summary.
59
+
60
+ ---
61
+
62
+ ## Completion
63
+
64
+ Deliver the complete Council Verdict. The feature is only complete when tests pass and the council explicitly approves the implementation according to the specification.