بنقرة واحدة
team-ship
Build and deploy features — branch, implement, commit, review, test, deploy, PR/merge
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Build and deploy features — branch, implement, commit, review, test, deploy, PR/merge
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
shadcn/ui component patterns including Radix UI primitives, CVA variants, form components with React Hook Form, and Tailwind CSS styling. Use when creating UI components, building forms, implementing design systems, or working with shadcn/ui.
Add critical test coverage — tests ONLY for functionality that could cause production disasters
List all available tools with their signatures and purposes
Analyze Claude Code audit logs — session summaries, metrics, timelines, anomaly detection, and claim verification
Technical debt and refactoring — analyze, refactor, and validate code improvements
Create a new custom agent using the meta-agent with guided requirements gathering
| name | team-ship |
| description | Build and deploy features — branch, implement, commit, review, test, deploy, PR/merge |
| argument-hint | <feature description> |
| disable-model-invocation | true |
| allowed-tools | Bash(git *), TaskCreate, TaskUpdate, TaskList, TaskGet |
Implement a new feature or enhancement from start to production.
Feature to implement: $ARGUMENTS
Enable with CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1
Create a team and spawn teammates:
ship-<feature-slug>Create the following task list with dependencies:
| # | Task | Owner | Blocked By |
|---|---|---|---|
| 1 | Create feature branch feature/<name> from main | shipper | — |
| 2 | Implement the feature end-to-end | full-stack-developer | 1 |
| 3 | Implement database/data layer changes (if needed) | database-admin | 1 |
| 4 | Commit all changes with conventional message | shipper | 2, 3 |
| 5 | Review implementation for security, bugs, performance | reviewer | 4 |
| 6 | Fix review findings (only if reviewer returns REQUEST_CHANGES) | full-stack-developer + database-admin | 5 |
| 7 | Run full test suite | shipper | 5 (verdict APPROVE or APPROVE_WITH_WARNINGS) |
| 8 | Fix regressions (if tests fail — loop back to 7) | full-stack-developer | 7 |
| 9 | Update documentation for feature changes | documentor | 7 |
| 10 | Deploy and create PR to main | shipper | 7, 9 |
Parallelism:
Loops:
REQUEST_CHANGES, create task 6 (fix findings) and re-run task 5. Repeat until the verdict is APPROVE or APPROVE_WITH_WARNINGS. Tasks 7+ stay blocked until the gate clears.Execute sequentially using the Task tool:
Task(shipper, "Create feature branch feature/<name> from main")Task(full-stack-developer, "Implement: $ARGUMENTS")Task(database-admin, "Implement data layer changes for: $ARGUMENTS") — only if neededTask(shipper, "Commit all changes with message: feat: <description>")Task(reviewer, "Review the implementation on this branch")REQUEST_CHANGES: Task(full-stack-developer, "Fix review findings: <findings>") (and Task(database-admin, ...) if data-layer findings), then re-run step 5. Loop until APPROVE or APPROVE_WITH_WARNINGS.Task(shipper, "Run full test suite")Task(full-stack-developer, "Fix test failures: <failure details>"), then re-run step 7Task(documentor, "Update documentation for: $ARGUMENTS")Task(shipper, "Deploy and create PR to main")┌─────────┐ ┌──────────────────┐ ┌─────────┐ ┌──────────┐ ┌─────────┐ ┌────────────┐ ┌──────────┐
│ Shipper │──►│ Full-Stack Dev + │──►│ Shipper │──►│ Reviewer │──►│ Shipper │──►│ Documentor │──►│ Shipper │
│ Branch │ │ DB Admin (║) │ │ Commit │ │ Review │ │ Test │ │ Update Docs│ │Deploy+PR │
└─────────┘ └──────────────────┘ └─────────┘ └────┬─────┘ └────┬────┘ └────────────┘ └──────────┘
│ ▲ │ ▲
▼ │ ▼ │
[REQUEST_CHANGES] [test failures]
Dev fixes findings Dev fixes regressions
→ re-review → re-run tests
Tests stay blocked until reviewer returns APPROVE or APPROVE_WITH_WARNINGS.