create-conductor-flow 0.0.1 → 0.0.2
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/conductor/commands/conductor/implement.toml +3 -3
- package/dist/conductor/commands/conductor/newTrack.toml +2 -2
- package/dist/conductor/commands/conductor/revert.toml +2 -2
- package/dist/conductor/commands/conductor/review.toml +1 -1
- package/dist/conductor/commands/conductor/setup.toml +2 -2
- package/dist/conductor/commands/conductor/status.toml +1 -1
- package/package.json +2 -1
|
@@ -15,7 +15,7 @@ CRITICAL: You must validate the success of every tool call. If any tool call fai
|
|
|
15
15
|
- **Tech Stack**
|
|
16
16
|
- **Workflow**
|
|
17
17
|
|
|
18
|
-
2. **Handle Failure:** If ANY of these are missing (or their resolved paths do not exist), Announce: "Conductor is not set up. Please run `/conductor
|
|
18
|
+
2. **Handle Failure:** If ANY of these are missing (or their resolved paths do not exist), Announce: "Conductor is not set up. Please run `/conductor:setup`." and HALT.
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
---
|
|
@@ -23,7 +23,7 @@ CRITICAL: You must validate the success of every tool call. If any tool call fai
|
|
|
23
23
|
## 2.0 TRACK SELECTION
|
|
24
24
|
**PROTOCOL: Identify and select the track to be implemented.**
|
|
25
25
|
|
|
26
|
-
1. **Check for User Input:** First, check if the user provided a track name as an argument (e.g., `/conductor
|
|
26
|
+
1. **Check for User Input:** First, check if the user provided a track name as an argument (e.g., `/conductor:implement <track_description>`).
|
|
27
27
|
|
|
28
28
|
2. **Locate and Parse Tracks Registry:**
|
|
29
29
|
- Resolve the **Tracks Registry**.
|
|
@@ -156,7 +156,7 @@ CRITICAL: You must validate the success of every tool call. If any tool call fai
|
|
|
156
156
|
|
|
157
157
|
3. **Handle User Response:**
|
|
158
158
|
* **If user chooses "A" (Review):**
|
|
159
|
-
* Announce: "Please run `/conductor
|
|
159
|
+
* Announce: "Please run `/conductor:review` to verify your changes. You will be able to archive or delete the track after the review."
|
|
160
160
|
* **If user chooses "B" (Archive):**
|
|
161
161
|
i. **Create Archive Directory:** Check for the existence of `conductor/archive/`. If it does not exist, create it.
|
|
162
162
|
ii. **Archive Track Folder:** Move the track's folder from its current location (resolved via the **Tracks Directory**) to `conductor/archive/<track_id>`.
|
|
@@ -17,7 +17,7 @@ CRITICAL: You must validate the success of every tool call. If any tool call fai
|
|
|
17
17
|
|
|
18
18
|
2. **Handle Failure:**
|
|
19
19
|
- If ANY of these files are missing, you MUST halt the operation immediately.
|
|
20
|
-
- Announce: "Conductor is not set up. Please run `/conductor
|
|
20
|
+
- Announce: "Conductor is not set up. Please run `/conductor:setup` to set up the environment."
|
|
21
21
|
- Do NOT proceed to New Track Initialization.
|
|
22
22
|
|
|
23
23
|
---
|
|
@@ -152,6 +152,6 @@ CRITICAL: You must validate the success of every tool call. If any tool call fai
|
|
|
152
152
|
- **Announce:** Inform the user you are committing the **Tracks Registry** changes.
|
|
153
153
|
- **Commit Changes:** Stage the **Tracks Registry** files and commit with the message `chore(conductor): Add new track '<track_description>'`.
|
|
154
154
|
8. **Announce Completion:** Inform the user:
|
|
155
|
-
> "New track '<track_id>' has been created and added to the tracks file. You can now start implementation by running `/conductor
|
|
155
|
+
> "New track '<track_id>' has been created and added to the tracks file. You can now start implementation by running `/conductor:implement`."
|
|
156
156
|
|
|
157
157
|
"""
|
|
@@ -20,7 +20,7 @@ CRITICAL: You must validate the success of every tool call. If any tool call fai
|
|
|
20
20
|
|
|
21
21
|
2. **Verify Track Exists:** Check if the **Tracks Registry** is not empty.
|
|
22
22
|
|
|
23
|
-
3. **Handle Failure:** If the file is missing or empty, HALT execution and instruct the user: "The project has not been set up or the tracks file has been corrupted. Please run `/conductor
|
|
23
|
+
3. **Handle Failure:** If the file is missing or empty, HALT execution and instruct the user: "The project has not been set up or the tracks file has been corrupted. Please run `/conductor:setup` to set up the plan, or restore the tracks file."
|
|
24
24
|
|
|
25
25
|
---
|
|
26
26
|
|
|
@@ -29,7 +29,7 @@ CRITICAL: You must validate the success of every tool call. If any tool call fai
|
|
|
29
29
|
|
|
30
30
|
1. **Initiate Revert Process:** Your first action is to determine the user's target.
|
|
31
31
|
|
|
32
|
-
2. **Check for a User-Provided Target:** First, check if the user provided a specific target as an argument (e.g., `/conductor
|
|
32
|
+
2. **Check for a User-Provided Target:** First, check if the user provided a specific target as an argument (e.g., `/conductor:revert track <track_id>`).
|
|
33
33
|
* **IF a target is provided:** Proceed directly to the **Direct Confirmation Path (A)** below.
|
|
34
34
|
* **IF NO target is provided:** You MUST proceed to the **Guided Selection Menu Path (B)**. This is the default behavior.
|
|
35
35
|
|
|
@@ -26,7 +26,7 @@ CRITICAL: You must validate the success of every tool call. If any tool call fai
|
|
|
26
26
|
|
|
27
27
|
2. **Handle Failure:**
|
|
28
28
|
- If ANY of these files are missing, list the missing files, then you MUST halt the operation immediately.
|
|
29
|
-
- Announce: "Conductor is not set up. Please run `/conductor
|
|
29
|
+
- Announce: "Conductor is not set up. Please run `/conductor:setup` to set up the environment."
|
|
30
30
|
- Do NOT proceed to Review Protocol.
|
|
31
31
|
|
|
32
32
|
---
|
|
@@ -26,7 +26,7 @@ CRITICAL: When determining model complexity, ALWAYS select the "flash" model, re
|
|
|
26
26
|
- If `STEP` is "2.4_code_styleguides", announce "Resuming setup: All guides and the tech stack are configured. Next, we will define the project workflow." and proceed to **Section 2.5**.
|
|
27
27
|
- If `STEP` is "2.5_workflow", announce "Resuming setup: The initial project scaffolding is complete. Next, we will generate the first track." and proceed to **Phase 2 (3.0)**.
|
|
28
28
|
- If `STEP` is "3.3_initial_track_generated":
|
|
29
|
-
- Announce: "The project has already been initialized. You can create a new track with `/conductor
|
|
29
|
+
- Announce: "The project has already been initialized. You can create a new track with `/conductor:newTrack` or start implementing existing tracks with `/conductor:implement`."
|
|
30
30
|
- Halt the `setup` process.
|
|
31
31
|
- If `STEP` is unrecognized, announce an error and halt.
|
|
32
32
|
|
|
@@ -452,5 +452,5 @@ CRITICAL: When determining model complexity, ALWAYS select the "flash" model, re
|
|
|
452
452
|
### 3.4 Final Announcement
|
|
453
453
|
1. **Announce Completion:** After the track has been created, announce that the project setup and initial track generation are complete.
|
|
454
454
|
2. **Save Conductor Files:** Add and commit all files with the commit message `conductor(setup): Add conductor setup files`.
|
|
455
|
-
3. **Next Steps:** Inform the user that they can now begin work by running `/conductor
|
|
455
|
+
3. **Next Steps:** Inform the user that they can now begin work by running `/conductor:implement`.
|
|
456
456
|
"""
|
|
@@ -19,7 +19,7 @@ CRITICAL: You must validate the success of every tool call. If any tool call fai
|
|
|
19
19
|
|
|
20
20
|
2. **Handle Failure:**
|
|
21
21
|
- If ANY of these files are missing, you MUST halt the operation immediately.
|
|
22
|
-
- Announce: "Conductor is not set up. Please run `/conductor
|
|
22
|
+
- Announce: "Conductor is not set up. Please run `/conductor:setup` to set up the environment."
|
|
23
23
|
- Do NOT proceed to Status Overview Protocol.
|
|
24
24
|
|
|
25
25
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-conductor-flow",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Conductor Scaffolding CLI - Generate spec-driven, portable Gemini Conductor workflows for any coding agent",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
},
|
|
46
46
|
"type": "module",
|
|
47
47
|
"bin": {
|
|
48
|
+
"create-conductor-flow": "dist/index.js",
|
|
48
49
|
"conductor-init": "dist/index.js"
|
|
49
50
|
},
|
|
50
51
|
"files": [
|