Agent Skills
› MeisnerDan/mission-control
› ship-feature
ship-feature
GitHub用于完成功能上线的自动化流程,包括读取上下文、执行测试/类型检查/代码规范修复、提交代码及更新任务与里程碑状态。
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


