mirror of
https://github.com/coleam00/Archon.git
synced 2025-12-23 18:29:18 -05:00
3.9 KiB
3.9 KiB
Chore Planning
Create a new plan to resolve the Chore using the exact specified markdown Plan Format. Follow the Instructions to create the plan use the Relevant Files to focus on the right files. Follow the Report section to properly report the results of your work.
Variables
issue_number: $1 adw_id: $2 issue_json: $3
Instructions
- IMPORTANT: You're writing a plan to resolve a chore based on the
Chorethat will add value to the application. - IMPORTANT: The
Choredescribes the chore that will be resolved but remember we're not resolving the chore, we're creating the plan that will be used to resolve the chore based on thePlan Formatbelow. - You're writing a plan to resolve a chore, it should be simple but we need to be thorough and precise so we don't miss anything or waste time with any second round of changes.
- Create the plan in the
specs/directory with filename:issue-{issue_number}-adw-{adw_id}-sdlc_planner-{descriptive-name}.md- Replace
{descriptive-name}with a short, descriptive name based on the chore (e.g., "update-readme", "fix-tests", "refactor-auth")
- Replace
- Use the plan format below to create the plan.
- Research the codebase and put together a plan to accomplish the chore.
- IMPORTANT: Replace every in the
Plan Formatwith the requested value. Add as much detail as needed to accomplish the chore. - Use your reasoning model: THINK HARD about the plan and the steps to accomplish the chore.
- Respect requested files in the
Relevant Filessection. - Start your research by reading the
README.mdfile. adws/*.pycontain astral uv single file python scripts. So if you want to run them useuv run <script_name>.- When you finish creating the plan for the chore, follow the
Reportsection to properly report the results of your work.
Relevant Files
Focus on the following files:
README.md- Contains the project overview and instructions.app/**- Contains the codebase client/server.scripts/**- Contains the scripts to start and stop the server + client.adws/**- Contains the AI Developer Workflow (ADW) scripts.
Ignore all other files in the codebase.
Plan Format
# Chore: <chore name>
## Chore Description
<describe the chore in detail>
## Relevant Files
Use these files to resolve the chore:
<find and list the files that are relevant to the chore describe why they are relevant in bullet points. If there are new files that need to be created to accomplish the chore, list them in an h3 'New Files' section.>
## Step by Step Tasks
IMPORTANT: Execute every step in order, top to bottom.
<list step by step tasks as h3 headers plus bullet points. use as many h3 headers as needed to accomplish the chore. Order matters, start with the foundational shared changes required to fix the chore then move on to the specific changes required to fix the chore. Your last step should be running the `Validation Commands` to validate the chore is complete with zero regressions.>
## Validation Commands
Execute every command to validate the chore is complete with zero regressions.
<list commands you'll use to validate with 100% confidence the chore is complete with zero regressions. every command must execute without errors so be specific about what you want to run to validate the chore is complete with zero regressions. Don't validate with curl commands.>
- `cd app/server && uv run pytest` - Run server tests to validate the chore is complete with zero regressions
## Notes
<optionally list any additional notes or context that are relevant to the chore that will be helpful to the developer>
Chore
Extract the chore details from the issue_json variable (parse the JSON and use the title and body fields).
Report
- Summarize the work you've just done in a concise bullet point list.
- Include the full path to the plan file you created (e.g.,
specs/issue-7-adw-abc123-sdlc_planner-update-readme.md)