Skip to content

Commit 6b14aaa

Browse files
committed
fix(conductor): remove hardcoded path hints in favor of Universal File Resolution Protocol
1 parent fe902f3 commit 6b14aaa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

commands/conductor/implement.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ CRITICAL: You must validate the success of every tool call. If any tool call fai
6363
a. **Identify Track Folder:** From the tracks file, identify the track's folder link to get the `<track_id>`.
6464
b. **Read Files:**
6565
- **Track Context:** Using the **Universal File Resolution Protocol**, resolve and read the **Specification** and **Implementation Plan** for the selected track.
66-
- **Workflow:** Resolve **Workflow** (Default: `conductor/workflow.md`).
66+
- **Workflow:** Resolve **Workflow** (via the **Universal File Resolution Protocol** using the project's index file).
6767
c. **Error Handling:** If you fail to read any of these files, you MUST stop and inform the user of the error.
6868
6969
4. **Execute Tasks and Update Track Plan:**

commands/conductor/newTrack.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ CRITICAL: You must validate the success of every tool call. If any tool call fai
9191
9292
2. **Generate Plan:**
9393
* Read the confirmed `spec.md` content for this track.
94-
* Resolve and read the **Workflow** file (Default: `conductor/workflow.md`).
94+
* Resolve and read the **Workflow** file (via the **Universal File Resolution Protocol** using the project's index file).
9595
* Generate a `plan.md` with a hierarchical list of Phases, Tasks, and Sub-tasks.
9696
* **CRITICAL:** The plan structure MUST adhere to the methodology in the **Workflow** file (e.g., TDD tasks for "Write Tests" and "Implement").
9797
* Include status markers `[ ]` for **EVERY** task and sub-task. The format must be:

commands/conductor/revert.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ CRITICAL: You must validate the success of every tool call. If any tool call fai
4545
4646
* **PATH B: Guided Selection Menu**
4747
1. **Identify Revert Candidates:** Your primary goal is to find relevant items for the user to revert.
48-
* **Scan All Plans:** You MUST read the **Tracks Registry** and every track's **Implementation Plan** (resolved via **Universal File Resolution Protocol**, checking `conductor/tracks/<track_id>/index.md` if available).
48+
* **Scan All Plans:** You MUST read the **Tracks Registry** and every track's **Implementation Plan** (resolved via **Universal File Resolution Protocol** using the track's index file).
4949
* **Prioritize In-Progress:** First, find **all** Tracks, Phases, and Tasks marked as "in-progress" (`[~]`).
5050
* **Fallback to Completed:** If and only if NO in-progress items are found, find the **5 most recently completed** Tasks and Phases (`[x]`).
5151
2. **Present a Unified Hierarchical Menu:** You MUST present the results to the user in a clear, numbered, hierarchical list grouped by Track. The introductory text MUST change based on the context.

commands/conductor/status.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ CRITICAL: You must validate the success of every tool call. If any tool call fai
3232
2. **Locate and Read Tracks:**
3333
- Parse the **Tracks Registry** to identify all registered tracks and their paths.
3434
* **Parsing Logic:** When reading the **Tracks Registry** to identify tracks, look for lines matching either the new standard format `- [ ] **Track:` or the legacy format `## [ ] Track:`.
35-
- For each track, resolve and read its **Implementation Plan** (using **Universal File Resolution Protocol**, checking `conductor/tracks/<track_id>/index.md` if available).
35+
- For each track, resolve and read its **Implementation Plan** (using **Universal File Resolution Protocol** via the track's index file).
3636
3737
### 2.2 Parse and Summarize Plan
3838
1. **Parse Content:**

0 commit comments

Comments
 (0)