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


