Agent Skills
› MeisnerDan/mission-control
› ship-feature
ship-feature
GitHub用于功能发布流程。依次读取上下文与任务状态,执行测试、类型检查和代码规范修复并解决失败项。随后提交Git代码,更新任务及里程碑状态,重新生成AI上下文,最后汇报发布结果与剩余工作。
Trigger Scenarios
需要发布新功能
执行功能验证与提交流程
更新任务完成状态
Install
npx skills add MeisnerDan/mission-control --skill ship-feature -g -y
SKILL.md
Frontmatter
{
"name": "ship-feature",
"description": "Ship a feature by running verification, committing, and updating task status",
"disable-model-invocation": true
}
Ship the feature: $ARGUMENTS
- Read
mission-control/data/ai-context.mdfor a quick snapshot of current state - Read relevant task and milestone from
mission-control/data/ - Run the test suite and fix any failures
- Run typecheck (
pnpm tsc --noEmit) and fix errors - Run lint (
pnpm lint) and fix issues - Create a git commit with a descriptive message
- Update task status to
"done"inmission-control/data/tasks.json - Update milestone progress in
goals.json - Run
pnpm gen:contextinmission-control/to regenerate the AI context - Report what was shipped and any remaining work
IMPORTANT: Do not skip any verification step. Every step must pass before shipping.
Version History
- 2b8c402 Current 2026-07-05 15:42


