一键导入
task-planner
Breaks down complex objectives into atomic subtasks, identifies dependencies, and produces an execution plan
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Breaks down complex objectives into atomic subtasks, identifies dependencies, and produces an execution plan
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | task-planner |
| description | Breaks down complex objectives into atomic subtasks, identifies dependencies, and produces an execution plan |
| version | 1.0.0 |
| author | go-on-team |
| tags | ["planning","tasks","dependencies","execution","workflow"] |
| min_go_on_version | 1.0.0 |
Accepts a high-level objective along with contextual information and constraints, then produces a structured, dependency-aware execution plan composed of atomic subtasks.
| Parameter | Type | Description |
|---|---|---|
objective | string | The high-level goal to be broken down |
context | string | Background information, relevant file paths, or prior work |
constraints | string[] | Explicit boundaries or requirements that must be respected |
{
"objective": "Add rate-limiting middleware to the public API gateway",
"context": "Gateway lives at src/gateway/. Uses actix-web 4. Existing middleware chain is in src/gateway/middleware.rs.",
"constraints": [
"Must not introduce new external dependencies",
"Rate limits must be configurable via environment variables",
"Must return 429 Too Many Requests with a Retry-After header"
]
}
{
"summary": "6 subtasks, estimated effort: 2 small, 3 medium, 1 large. No circular dependencies detected.",
"dependency_graph": [
["subtask-1", []],
["subtask-2", ["subtask-1"]],
["subtask-3", ["subtask-1"]],
["subtask-4", ["subtask-2", "subtask-3"]],
["subtask-5", ["subtask-4"]],
["subtask-6", ["subtask-5"]]
],
"subtasks": [
{
"id": "subtask-1",
"title": "Define rate-limit configuration struct and env-var parsing",
"effort": "small",
"depends_on": []
},
{
"id": "subtask-2",
"title": "Implement token-bucket state store (in-memory)",
"effort": "medium",
"depends_on": ["subtask-1"]
},
{
"id": "subtask-3",
"title": "Build middleware extractor to read client IP / API key",
"effort": "small",
"depends_on": ["subtask-1"]
},
{
"id": "subtask-4",
"title": "Wire rate-limiter into the middleware chain",
"effort": "medium",
"depends_on": ["subtask-2", "subtask-3"]
},
{
"id": "subtask-5",
"title": "Return 429 + Retry-After when limit is exceeded",
"effort": "medium",
"depends_on": ["subtask-4"]
},
{
"id": "subtask-6",
"title": "Add integration tests for rate-limiting scenarios",
"effort": "large",
"depends_on": ["subtask-5"]
}
]
}
Analyzes project structure, module dependencies, imports, and entry points to generate architecture diagrams in Mermaid format
Analyzes ETL and data pipeline code for optimization opportunities across Python (Pandas, PySpark), Rust (polars, datafusion), SQL, and general pipeline descriptions
Validates environment variable configurations and config files (YAML, TOML, JSON, .env) for missing required variables, type mismatches, deprecated keys, naming convention violations, secret exposure risks, and invalid value ranges
Analyzes code for performance bottlenecks including N+1 queries, O(n^2) or worse algorithms, unnecessary allocations, sync I/O in async contexts, excessive cloning, missing caching opportunities, and large payload transfers. Supports Rust, Python, TypeScript, and Go.
Analyzes, improves, and restructures LLM prompts for clarity, efficiency, and reliability
Analyzes source code for common security vulnerabilities including SQL injection, XSS, command injection, hardcoded secrets, insecure deserialization, path traversal, and SSRF