Agent Skills
› solatis/claude-config
› planner
planner
GitHub提供复杂任务的交互式规划与执行能力。支持规划(设计/架构)和执行(实现/运行计划)两种模式,通过调用特定Python脚本启动工作流,辅助用户进行任务分解与落地。
Trigger Scenarios
用户要求进行任务规划、设计或架构
用户要求执行已制定的计划或实现功能
Install
npx skills add solatis/claude-config --skill planner -g -y
SKILL.md
Frontmatter
{
"name": "planner",
"description": "Interactive planning and execution for complex tasks. IMMEDIATELY invoke when user asks to use planner."
}
Activation
When this skill activates, IMMEDIATELY invoke the corresponding script. The script IS the workflow.
| Mode | Intent | Command |
|---|---|---|
| planning | "plan", "design", "architect" | <invoke working-dir=".claude/skills/scripts" cmd="python3 -m skills.planner.orchestrator.planner --step 1" /> |
| execution | "execute", "implement", "run plan" | <invoke working-dir=".claude/skills/scripts" cmd="python3 -m skills.planner.orchestrator.executor --step 1" /> |
Version History
- 6e72bc2 Current 2026-07-11 17:18


