用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/theyoungastronauts/polaris --skill full-feature命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | full-feature |
| description | End-to-end feature workflow — plan, scaffold, execute, verify, and merge, phase by phase. |
| disable-model-invocation | true |
End-to-end workflow for implementing a feature from plan to merged code.
If the feature has a user-facing interface:
/prd to formalize requirements into a structured PRD/ux-spec to design the experience through 6 UX passes (mental model, IA, affordances, cognitive load, state design, flow integrity)planner agentplan-and-scope, phase-breakdownplan.md with phased tasksIf this is a new project with sub-repos to create:
/scaffold from the root planning folderFor initial builds where you're taking a plan from zero to working application, work directly on main. No branches or worktrees needed — there's nothing to protect yet.
Repeat for each phase:
Execute:
Review:
Commit and move on:
Hands-off alternatives:
/autopilot — for pre-planned work. Executes all plan.md phases: implement → test → verify → commit. Stops on FAIL — run /autopilot N to resume./orchestrator — for broader work. Accepts inline tasks or plan.md, supports parallel execution, auto-phasing, and per-task model overrides. Use when tasks need decomposition or research.Once you have a working application and are building new features on top of it:
Single feature: check out a branch, execute, review, PR, merge. Simple.
Multiple independent features in parallel: use git worktrees (see the /worktrees skill). Each feature gets its own worktree so you can switch between them without stashing or losing context. This is where worktrees earn their keep.