원클릭으로
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 직업 분류 기준
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
| 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"]
}
]
}