用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/stevehuang0115/crewly --skill create-mission命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | Create Mission |
| description | Create a new Mission with objective, success criteria, and strategy. |
| version | 1.0.0 |
| category | task-management |
| skillType | claude-skill |
| assignableRoles | ["developer","qa","tpm","designer","frontend-developer","backend-developer","fullstack-dev","qa-engineer","product-manager","architect","generalist"] |
| triggers | ["create mission","new mission","define mission","set objective"] |
| tags | ["mission","objective","strategy","planning"] |
| execution | {"type":"script","script":{"file":"execute.sh","interpreter":"bash","timeoutMs":30000}} |
Create a new Mission via the /api/missions endpoint. Missions define high-level objectives with success criteria and strategy, enabling team leads and agents to autonomously set goals.
| Flag | JSON Field | Required | Description |
|---|---|---|---|
--objective / -o | objective | Yes | The mission objective (what to achieve) |
--owner-team-id / -t | ownerTeamId | Yes | Team ID that owns this mission |
--success-criteria / -c | successCriteria | Yes | JSON array of success criteria strings |
--strategy / -s | currentStrategy | Yes | Description of the current strategy |
--cadence | cadence | No | Cadence string (e.g. daily, weekly) |
--policy | policy | No | JSON object for mission policy overrides |
# Create a basic mission
bash execute.sh --objective "Deliver V3 architecture" \
--owner-team-id "817a1aeb-b04e-45dd-bdbc-be5cbc4345f1" \
--success-criteria '["All V3 services implemented","100% test coverage","Zero regressions"]' \
--strategy "Incremental migration with parallel V2 support"
# Create with cadence and policy
bash execute.sh --objective "Weekly code quality audit" \
--owner-team-id "team-123" \
--success-criteria '["All critical issues resolved","Test coverage above 80%"]' \
--strategy "Automated scanning with manual review" \
--cadence \
--policy
bash execute.sh '{"objective":"Ship V3","ownerTeamId":"team-123","successCriteria":["All services migrated"],"currentStrategy":"Incremental migration"}'
JSON response from the missions API with the created Mission object, including its generated ID, status, and policy.