Agent Skills
› MeisnerDan/mission-control
› ship-feature
ship-feature
GitHub用于安全发布功能,依次执行测试、类型检查和代码规范修复。确保所有验证通过后提交代码,更新任务状态为完成及里程碑进度,并重新生成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


