planner
Create detailed system architecture and 7-day sprint task breakdown for a hackathon project
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create detailed system architecture and 7-day sprint task breakdown for a hackathon project
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Search and install agent skills from ClawHub, the public skill registry.
Schedule reminders and recurring tasks.
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents. v2.1 adds project-scoped instincts to prevent cross-project contamination.
Test the generated project inside an E2B cloud sandbox via Claude Code, apply fixes iteratively, and produce a quality report
Research a hackathon using a user-supplied URL plus optional doc URLs (sitemap-driven scrape).
| name | planner |
| description | Create detailed system architecture and 7-day sprint task breakdown for a hackathon project |
| metadata | {"openclaw":{"always":false}} |
Transform a selected project idea into a complete technical blueprint: system architecture, tech stack decisions, and a day-by-day implementation plan.
After hackathon/selected_idea.json exists.
Do NOT call spawn() for this task. Run all steps in this single phase execution and write the files directly.
Do NOT run monitoring loops such as:
exec("sleep ...")list_dir(...) pollingDo NOT call web_search.
Use local files as primary truth. web_fetch is optional only if a known URL is strictly needed.
Completion condition is strict: Your task is complete only after both files exist and are non-empty:
hackathon/plan.mdhackathon/tasks.jsonIf context is incomplete, produce a best-effort v1 plan from available inputs and explicitly mark assumptions.
Step 1 — Load Inputs (must do first):
read_file("hackathon/selected_idea.json")
read_file("hackathon/context.json")
list_dir("hackathon/")
Step 2 — Draft Architecture (plan.md)
Include all sections below:
Step 3 — Build Executable Task Plan (tasks.json)
Requirements:
critical | high | mediumbackend | frontend | ai | blockchain | infra | testingUse this JSON shape:
{
"project_name": "string",
"architecture_summary": "2-3 sentences",
"tech_stack": {
"backend": "Python 3.11 + FastAPI",
"ai_primary": "FLock API (qwen3-30b-a3b-instruct-2507)",
"ai_privacy": null,
"blockchain": "string or null",
"storage": "string",
"frontend": "string or null"
},
"epics": [
{
"id": "E1",
"name": "string",
"component": "backend|frontend|ai|blockchain|infra|testing",
"day_target": 1,
"tasks": [
{
"id": "T1.1",
"title": "string",
"description": "what exactly to build",
"deliverable": "what done looks like",
"component": "backend|frontend|ai|blockchain|infra|testing",
"estimated_hours": 2,
"priority": "critical|high|medium",
"dependencies": [],
"day": 1
}
]
}
],
"risk_register": [
{"risk": "string", "probability": "high|medium|low", "mitigation": "string"}
]
}
Step 4 — Write Files (no delay, no waiting):
write_file("hackathon/plan.md", <markdown plan>)
write_file("hackathon/tasks.json", <valid JSON string>)
Step 5 — Sanity Check and Stop
hackathon/plan.md — human-readable architecture dochackathon/tasks.json — machine-readable task list