future-idea-capture
Use when a future idea should be captured with trigger conditions rather than forced into the active phase
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use when a future idea should be captured with trigger conditions rather than forced into the active phase
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Use when Codex is asked to colonize, plan, build, continue, swarm, or seal an Aether colony and must mirror wrapper orchestration safely
Use when Codex is asked to initialize or set up an Aether colony and should refine intent before running init
Use when Codex is asked to run Aether Oracle or discuss flows and should refine scope before research or clarification
Use when acceptance criteria need unit, integration, or end-to-end tests generated from implementation context
Use when delivered functionality needs acceptance-criteria verification before a phase advances
Use when a phase involves LLMs, AI agents, RAG, ML inference, or prompt/tool integration design
| source | shipped |
| name | future-idea-capture |
| description | Use when a future idea should be captured with trigger conditions rather than forced into the active phase |
| type | colony |
| domains | ["idea-management","forward-planning","knowledge-base"] |
| agent_roles | ["keeper","chronicler","queen"] |
| workflow_triggers | ["discuss","plan"] |
| task_keywords | ["future","someday","seed","later","idea"] |
| priority | normal |
| version | 1.0 |
Capture forward-looking ideas with trigger conditions that auto-surface when the right milestone arrives. Tracks seed lifecycle from planting through germination to harvest (implementation) or withering (discarded).
Capture the idea with structured metadata:
{
"id": "SEED-{NNN}",
"title": "{concise title}",
"description": "{full idea description}",
"planted": "ISO8601",
"status": "planted",
"triggers": {
"milestone": "{milestone id or null}",
"phase": "{phase number or null}",
"tag": "{keyword tag}",
"condition": "{natural language condition}"
},
"priority": "low|normal|high",
"source": "{where the idea came from}",
"related_seeds": ["SEED-{NNN}"]
}
Append to .aether/data/seeds.jsonl
Confirm planting with the user, showing the seed ID and trigger conditions
planted seed, evaluate triggers against current context:
milestone: Does the current or upcoming milestone match?phase: Is the current phase number >= the trigger phase?tag: Does any active work mention or relate to the tag?condition: Natural language condition evaluated against current project stategerminating statuswithered with reasonplanted -> Trigger conditions not yet met, waitinggerminating -> Triggers met, awaiting user decisionharvested -> Promoted to actionable work (link to todo or phase)withered -> Discarded (with reason recorded)dormant -> Temporarily paused (user explicitly deferred)--status planted|germinating|harvested|withered|dormant--tag <tag>--milestone <milestone id>SEED-007 planted: "Migrate to event-sourced order processing"
Triggers: milestone >= MS-04, tag: "scalability"
Priority: low | Age: 0 days
Status: planted -> waiting for conditions
Germinating seeds for this milestone:
SEED-003: "Add real-time notifications via WebSocket" (42 days old)
-> [harvest] [let grow] [wither]
# Plant a seed
> seed-planter plant "When we hit 10k users, migrate to read replicas" --trigger "milestone:MS-05" --tag scalability
# Check for germinating seeds
> seed-planter check
# List all seeds
> seed-planter list --status planted
# Harvest a germinated seed
> seed-planter harvest SEED-003 --as todo