Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计通过

team-ship团队船

Agent Skill

team-ship 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

188

周安装

8

GitHub Stars

11

下载量

66
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:team-ship(团队船)
来源仓库:https://github.com/parhumm/jaan-to
仓库路径:skills/team-ship
安装命令:
npx skills add https://github.com/parhumm/jaan-to --skill team-ship
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/parhumm/jaan-to --skill team-ship

简介

team-ship 用于处理 GitHub 仓库、Issue、Pull Request 等协作内容。

  • 适用于前端设计任务,常见于 Codex、Claude、Cursor、Gemini CLI 环境。
  • 通过 npx skills add 命令安装,具体能力由来源仓库文档定义。
  • 使用前请确认项目维护状态、权限要求及是否涉及敏感操作。
  • team-ship 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

team-ship

Assemble a virtual company of AI teammates — each a role — to ship an idea from concept to production.

Context Files

  • ${CLAUDE_PLUGIN_ROOT}/skills/team-ship/roles.md - Role definitions (CRITICAL — teammate roster)
  • ${CLAUDE_PLUGIN_ROOT}/docs/extending/team-ship-reference.md - Spawn prompts, dependency algo, schemas
  • $JAAN_CONTEXT_DIR/tech.md - Tech stack context
  • $JAAN_CONTEXT_DIR/config.md - Project configuration
  • $JAAN_TEMPLATES_DIR/jaan-to-team-ship.template.md - Orchestration log template
  • $JAAN_LEARN_DIR/jaan-to-team-ship.learn.md - Past lessons (loaded in Pre-Execution)
  • ${CLAUDE_PLUGIN_ROOT}/docs/extending/language-protocol.md - Language resolution protocol

Input

Arguments: $ARGUMENTS

ArgumentEffect
[initiative]Idea to build (required unless --detect or --resume)
--track fast8-skill fast track: PM → Backend → Frontend → QA → DevOps
--track full20-skill full track: all roles, all design steps (default)
--track tddTDD track: qa-test-cases → qa-tdd-orchestrate → qa-test-mutate → qa-quality-gate
--track sprintSprint track: reads sprint plan artifact from pm-sprint-plan, executes dynamic skill queue
--detectDetect audit mode: 5 parallel auditors → detect-pack
--roles role1,role2Custom role selection from roles.md
--dry-runDisplay planned team structure without spawning
--resumeResume from last checkpoint

Pre-Execution Protocol

MANDATORY — Read and execute ALL steps in: ${CLAUDE_PLUGIN_ROOT}/docs/extending/pre-execution-protocol.md Skill name: team-ship Execute: Step 0 (Init Guard) → A (Load Lessons) → B (Resolve Template) → C (Offer Template Seeding)

Also read context files if available:

  • $JAAN_CONTEXT_DIR/tech.md — Tech stack for teammate context
  • $JAAN_CONTEXT_DIR/config.md — Project configuration

Language Settings

Read and apply language protocol: ${CLAUDE_PLUGIN_ROOT}/docs/extending/language-protocol.md Override field for this skill: language_team-ship

Language exception: Generated code, skill commands, YAML, and role names remain in English.

PHASE 0: Validation & Setup

Thinking Mode

ultrathink

Use extended reasoning for:

  • Analyzing initiative scope and complexity
  • Selecting optimal track and team composition
  • Planning dependency graph and execution phases
  • Reviewing checkpoint for resume scenarios

Step 1: Environment Checks

  1. Agent Teams enabled? Read jaan-to/config/settings.yaml for agent_teams_enabled. If false or missing: "Agent Teams is not enabled. To use team-ship: Add agent_teams_enabled: true to jaan-to/config/settings.yaml Set environment variable: CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 Restart Claude Code session" STOP — do not proceed.
  2. Resume mode? If --resume flag:

- Scan $JAAN_OUTPUTS_DIR/team/ for most recent checkpoint.yaml - If found → load checkpoint, skip to resume point (see reference: "Resume Logic") - If not found → inform user, offer to start fresh

Step 2: Parse Arguments

  1. Extract initiative text (everything not a flag)
  2. Determine track: --track fast, --track full (default), --track sprint, --detect, or --roles
  3. Check for --dry-run flag

Sprint Track Mode

If --track sprint:

  1. Read the latest sprint plan artifact: SPRINT_PLAN=$(ls -t $JAAN_OUTPUTS_DIR/pm/sprint-plan/*/*.md 2>/dev/null | head -1)
  2. If not found → "No sprint plan found. Run /pm-sprint-plan first."
  3. Parse YAML frontmatter for queue array and closing_skills
  4. Build team roster dynamically from queue roles (only spawn roles that appear in the queue)
  5. Override initiative text with sprint plan focus area
  6. Skip PM teammate (Phase 1) — sprint plan replaces PRD
Reference: See ${CLAUDE_PLUGIN_ROOT}/docs/extending/team-ship-reference.md section "Sprint Track Execution" for plan consumption and verification gate logic.

Step 3: Read Role Catalog

  1. Read ${CLAUDE_PLUGIN_ROOT}/skills/team-ship/roles.md
  2. Filter roles by selected track
  3. If --roles specified: filter to only those roles
  4. For --detect: select only detect-* roles

Step 4: Build Team Roster

For each selected role from roles.md:

  1. Extract: Title, Model, Skills (for selected track), Phase, Dependencies (for selected track), Messages
  2. Build dependency graph
Reference: See ${CLAUDE_PLUGIN_ROOT}/docs/extending/team-ship-reference.md section "Dependency Graph Resolution Algorithm" for phase grouping logic.
  1. Group roles into execution phases by dependency resolution
  2. Calculate: total skills, teammate count, max concurrent teammates

Step 5: Read Tech Context

Read $JAAN_CONTEXT_DIR/tech.md (if exists) — summarize in 2-3 lines for spawn prompts. This summary is injected into each teammate's spawn prompt as {tech_context_summary}.


DRY-RUN GATE

If --dry-run flag is set:

Reference: See ${CLAUDE_PLUGIN_ROOT}/docs/extending/team-ship-reference.md section "Dry-Run Display Format" for the output template.

Display team plan: roster, phases, dependency graph, token estimate. Write plan to $JAAN_OUTPUTS_DIR/team/{id}-{slug}/plan.md. STOP — do not spawn teammates.


HARD STOP — Team Composition Approval

Present to user:

TEAM COMPOSITION
────────────────
Track: {track} ({skill_count} skills)
Initiative: "{initiative}"

Teammates ({count}):
  {role}: {skills_list} [{model}]
  ...

Phases:
  Phase 1: {roles} → PRD approval gate
  Phase 2: {roles} (parallel)
  Phase 3: {roles} (parallel)
  Phase 4: Verify + Changelog (lead)
"Assemble this team and begin? [y/n/edit]"

If edit: let user adjust roles, track, or model choices. Rebuild roster.

Do NOT proceed without explicit approval.


PHASE 1: Define (PM Teammate)

Step 6: Spawn PM Teammate

If --detect mode: skip to Phase 2 (Detect Mode).

  1. Read spawn prompt template from reference file Reference: See ${CLAUDE_PLUGIN_ROOT}/docs/extending/team-ship-reference.md section "PM Teammate Prompt" for the full prompt template.
  2. Fill template variables: {initiative}, {slug}, {tech_context_summary}
  3. Spawn PM teammate with configured model
  4. Wait for PM to message lead with PRD path and story paths

Step 7: PRD Approval Gate

When PM completes:

  1. Read PRD summary from output path
  2. Present PRD summary to user
"The PM has drafted the PRD. Review it at: {prd_path} Approve to spawn the build team? [y/n/edit]"

If no: provide feedback to PM teammate, PM revises, repeat. If yes: shut down PM teammate (free context), proceed to Phase 2.

Update checkpoint: phase=1, pm=done, artifacts.prd_path, artifacts.entities.


PHASE 2: Design + Build (Parallel Teammates)

Step 8: Spawn Build Team

Determine Phase 2 roles from roster (those with Phase=2).

For each Phase 2 role:

  1. Read spawn prompt template from reference file Reference: See ${CLAUDE_PLUGIN_ROOT}/docs/extending/team-ship-reference.md section "{Role} Teammate Prompt" for each role's template.
  2. Fill template variables: {prd_path}, {stories_path}, {entities}, {slug}
  3. Spawn teammate with role's configured model
  4. Register in shared task list

For --detect mode, instead spawn all detect-* roles from roster in parallel.

Step 9: Monitor & Coordinate

While Phase 2 teammates are active:

  1. Relay inter-teammate messages (Backend→Frontend API contract, etc.)
  2. Monitor task completion via shared task list
  3. Update checkpoint after each role completes a skill
  4. If a teammate goes idle, TeammateIdle hook redirects to unclaimed tasks
  5. If TaskCompleted hook rejects quality, relay feedback to teammate

When all Phase 2 roles report done:

  • For --detect mode: lead runs /jaan-to:detect-pack to consolidate. Skip to Phase 4 wrap-up.
  • For build tracks: shut down Phase 2 teammates, proceed to Phase 3.

Update checkpoint: phase=2, role statuses.


PHASE 3: Integration + Ship

Step 9a: TDD Track Execution (--track tdd)

If --track tdd selected, execute this specialized pipeline instead of standard Phase 2-3:

TDD Pipeline:

  1. qa-test-cases -- Generate BDD test cases from initiative
  2. qa-tdd-orchestrate -- Run RED/GREEN/REFACTOR cycles with context isolation
  3. qa-test-mutate -- Validate test effectiveness via mutation testing
  4. qa-quality-gate (if available) -- Compute composite quality score

If qa-quality-gate skill is not available: skip with explicit warning: "Quality gate skill not available -- skipping composite scoring. Run qa-test-run coverage report as fallback."

TDD-Specific Roles:

tdd-writer role:

  • Spawn prompt restricts to: requirements text + test framework docs ONLY
  • Excluded: implementation plans, existing source code, scaffold output
  • Skills: qa-test-cases, qa-tdd-orchestrate (RED phase)

tdd-implementer role:

  • Spawn prompt restricts to: failing test output + test file content ONLY
  • Excluded: requirements text, RED agent reasoning, architecture plans
  • Skills: qa-tdd-orchestrate (GREEN phase)

Execution Rules:

  • Max 5 concurrent teammates per phase (fan-out cap)
  • DAG validation: verify dependency graph is acyclic before spawning
  • After TDD pipeline completes, skip to Phase 4 (Verify + Wrap Up)

Update checkpoint: track=tdd, pipeline stages.


Step 10: Integration (Lead Runs)

Lead executes directly (not a teammate — integration touches multiple output dirs):

  1. /jaan-to:dev-project-assemble — wire scaffolds together
  2. /jaan-to:dev-output-integrate — copy to project locations

If integration fails: update checkpoint (status=paused), present error to user.

Step 11: Spawn Phase 3 Teammates

After integration succeeds, spawn Phase 3 roles from roster:

  • QA teammate: message to proceed with:

- Fast track: qa-test-generateqa-test-run - Full track: qa-test-generateqa-test-runqa-contract-validate "{api_contract_path}"

  • DevOps teammate (spawn)
  • Security teammate (spawn, full track only)
Reference: See ${CLAUDE_PLUGIN_ROOT}/docs/extending/team-ship-reference.md section "DevOps Teammate Prompt" and "Security Teammate Prompt".

Wait for all Phase 3 teammates to complete. Monitor same as Step 9.

Update checkpoint: phase=3, role statuses.


PHASE 4: Verify + Wrap Up

Step 12: Verification

Lead runs directly:

  1. /jaan-to:dev-verify — build + runtime validation
  2. If tests failed in QA: present results, offer fix-and-retry cycle
  3. If visual-qa role was active: read visual verification report, present summary to user
  4. /jaan-to:release-iterate-changelog — generate changelog

Step 13: Cleanup

  1. Shut down any remaining teammates
  2. Clean up team resources

Step 14: Write Orchestration Log

Write to $JAAN_OUTPUTS_DIR/team/{id}-{slug}/log.md using template.

Include: initiative, track, team roster, phase timeline, skill outputs, test results, final status.

Step 15: Final Checkpoint

Update checkpoint: phase=4, status=completed.

"Team work complete. Orchestration log: {log_path} All outputs in: $JAAN_OUTPUTS_DIR/"

Step 16: Capture Lessons

"Any feedback on the team orchestration? [y/n]"

If yes: run /jaan-to:learn-add team-ship "{feedback}"


Skill Alignment

  • Two-phase workflow with HARD STOP for human approval
  • Role-based orchestration with configurable teammates
  • Token-optimized via reference extraction
  • Maintains human control at gate checkpoints

Definition of Done

  • Environment checks passed (agent teams enabled, env var set)
  • Team roster approved by user
  • All roles completed their skill chains
  • PRD approved at Phase 1 gate
  • Integration successful (dev-project-assemble + dev-output-integrate)
  • Tests passing (qa-test-run)
  • Verification complete (dev-verify)
  • All teammates shut down
  • Team cleaned up
  • Orchestration log written
  • Checkpoint marked as completed

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.06%
按下载量换算24

Claude

31.17%
按下载量换算21

Cursor

18.73%
按下载量换算12

Gemini CLI

10.63%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills