-
Notifications
You must be signed in to change notification settings - Fork 15
feat(aidd-dev): add 10-todo skill for parallel todo fan-out #262
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| ← [aidd-framework](../../../../README.md) / [aidd-dev](../../README.md) | ||
|
|
||
| # 10 - todo | ||
|
|
||
| Split one prompt into independent todos, run one implementer agent per | ||
| todo in parallel (each refines its todo before coding), and report a | ||
| minimal table: category, what was launched, output. | ||
|
|
||
| ## When to use | ||
|
|
||
| - The user says "todo" or `/todo`. | ||
| - A single prompt bundles several independent tasks that can be | ||
| implemented in parallel. | ||
|
|
||
| ## Actions | ||
|
|
||
| | # | Action | Purpose | | ||
| | --- | --------------------------------- | --------------------------------------------- | | ||
| | 01 | [todo](actions/01-todo.md) | Categorize, launch parallel agents, report. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| --- | ||
| name: 10-todo | ||
| description: Split the user prompt into independent todos, run one implementer agent per todo in parallel (each refines its todo first), and report a minimal table. Use when the user says "todo", "/todo", or asks to fan out a multi-part request into parallel implementations. | ||
| --- | ||
|
|
||
| # Todo | ||
|
|
||
| Turn one prompt into N independent todos, implement them in parallel, report a table. | ||
|
|
||
| ## Actions | ||
|
|
||
| ```markdown | ||
| @actions/01-todo.md | ||
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| # 01 - Todo | ||
|
|
||
| Categorize the user prompt into independent todos, implement each in parallel, report. | ||
|
|
||
| ## Inputs | ||
|
|
||
| User's requirement. | ||
|
|
||
| ## Outputs | ||
|
|
||
| ```markdown | ||
| | Category | Launched | Output | | ||
| | -------- | -------- | ------ | | ||
| ``` | ||
|
|
||
| ## Process | ||
|
|
||
| 1. **Read.** Take `prompt` from `$ARGUMENTS`; if empty, ask the user. | ||
| 2. **Categorize.** Split the prompt into distinct, independent todos (category + task). Inline, no agent, using template. | ||
| 3. **Launch.** Spawn one `implementer` agent per todo, all in parallel (one message, multiple Task calls). Each agent prompt mandates, in order: | ||
| ```markdown | ||
| 1. Refine the todo first - discover at runtime a skill whose description covers refining or clarifying a request (never a hardcoded plugin name) and run it on the todo. | ||
| 2. Implement the refined todo. | ||
| 3. Return a one-line output summary. | ||
| ``` | ||
| 4. **Report.** Print exactly one table, nothing else: | ||
|
|
||
| ## Test | ||
|
|
||
| - Every todo is one row in the table. | ||
| - Agents were spawned in a single parallel batch. | ||
| - Each agent ran a refine step before implementing. | ||
| - No output besides the table. | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.