Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

ship发布交付

Agent Skill

ship 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

384

周安装

16

GitHub Stars

公开资料未说明

下载量

128
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/october-academy/agent-plugins --skill ship

简介

ship 用于查找、检索和筛选相关信息。ship 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需确认权限范围。
  • 建议结合原始 README 核验具体用法,避免触发未预期的联网操作。
  • 使用前应检查维护状态,确保与当前宿主环境兼容。

SKILL.md

Ship a change through team-orchestrated implementation, dual verification, leader-driven fixing, and archival.

Input: Optionally specify a change name (e.g., /opsx:ship my-feature). If omitted, prompt for selection.

Team Structure

RoleAgent TypePhaseResponsibility
LeaderMain agent (you)AllOrchestration, OpenSpec verify, direct fix, archive
implementergeneral-purpose1Task implementation (apply methodology)
reviewergeneral-purpose2, 3Codex code review (spawned on-demand at Phase 2)

Steps

  1. Select the change If name provided, use it. Otherwise run openspec list --json and use AskUserQuestion to let the user select. IMPORTANT: Do NOT guess or auto-select. Always let the user choose if not provided.
  2. Verify prerequisites openspec status --change "<name>" --json Confirm the tasks artifact exists. If tasks don't exist, suggest running /opsx:continue first and stop. Codex availability check: which codex If codex is not installed, use AskUserQuestion to present options: Store the result as CODEX_AVAILABLE (true/false) for use in later phases.

1. "Install Codex, then re-run /opsx:ship" — stop workflow 2. "Proceed without Codex (OpenSpec verify only, skip code review)" — continue with CODEX_AVAILABLE=false 3. "Abort" — stop workflow

  1. Create team and spawn implementer TeamCreate: Spawn only the implementer using the Task tool (reviewer is spawned later in Phase 2): implementer teammate: Replace CHANGENAME in the prompt with the actual change name before spawning.

- team_name: ship-<change-name> - description: Ship change: <change-name> - subagent_type: general-purpose - team_name: ship-<change-name> - name: implementer - mode: bypassPermissions - run_in_background: true - prompt: ` You are the **implementer** in team "ship-CHANGENAME". Your job: implement all tasks from OpenSpec change "CHANGENAME". ## How to implement Read planning artifacts for context: - openspec/changes/CHANGENAME/proposal.md — intent and scope - openspec/changes/CHANGENAME/design.md — technical approach - openspec/changes/CHANGENAME/specs/ — requirements - openspec/changes/CHANGENAME/tasks.md — implementation checklist Read project patterns from CLAUDE.md. For each unchecked task (- []) in tasks.md: 1. Understand the task from context 2. Make the code changes required 3. Keep changes minimal and focused 4. Mark task complete: - []- [x] 5. Send progress to leader via SendMessage: "Task N/M complete: <description>" After all tasks complete: - Send final summary to leader via SendMessage listing all completed tasks ## Workflow 1. Check TaskList for assigned tasks 2. When you have an implement task, run the implementation 3. Send progress updates to leader via SendMessage 4. Mark TaskList task completed via TaskUpdate 5. Check TaskList for next work IMPORTANT: Follow project patterns from CLAUDE.md. IMPORTANT: Always communicate progress to the leader via SendMessage. IMPORTANT: If a task is unclear or blocked, report to leader instead of guessing. `

  1. Phase 1: Implement Wait for implementer to complete. The implementer will send progress messages and a final summary. Error handling: If implementer fails or crashes: After implementer reports completion: Shutdown implementer immediately after Phase 1:

- TaskCreate: subject "Implement all tasks for " - TaskUpdate: assign owner to implementer - SendMessage to implementer: "Implement all tasks for change. Read artifacts, implement each task, mark checkboxes, and send me progress updates." - Read openspec/changes/<name>/tasks.md to assess partial progress - Report to user: "Implementer failed. N/M tasks completed. Remaining: [list]" - Use AskUserQuestion: "Continue with leader implementing remaining tasks?" / "Abort and retry later" - If user chooses to continue, leader implements remaining tasks directly - Read tasks.md to verify all checkboxes are checked - If incomplete tasks remain, send implementer back to finish them - Report progress to user: "Phase 1 complete: N/N tasks implemented" - SendMessage type shutdown_request to implementer - Do not wait — proceed to Phase 2 while shutdown processes

  1. Phase 2: Dual Verify a. Spawn and start reviewer (background, if CODEX_AVAILABLE) Only if CODEX_AVAILABLE=true: Spawn reviewer teammate using the Task tool: Replace CHANGENAME in the prompt with the actual change name before spawning. Then: b. Leader runs OpenSpec verify (foreground) Follow the verification methodology from .claude/commands/opsx/verify.md (steps 2-8): c. Collect and merge results into combined-report.md If CODEX_AVAILABLE and reviewer completed successfully: If reviewer failed or CODEX_AVAILABLE=false: Report to user: "Dual verify complete. CRITICAL: N | WARNING: N | SUGGESTION: N" If 0 CRITICAL + 0 WARNING + 0 SUGGESTION → skip to step 8 (archive) If issues found → proceed to step 6 (fix loop)

- subagent_type: general-purpose - team_name: ship-<change-name> - name: reviewer - mode: bypassPermissions - run_in_background: true - prompt: ``` You are the **reviewer** in team "ship-CHANGENAME". Your job: run Codex code review against the implementation for change "CHANGENAME". ## How to review When you receive a review task: 1. Read the review prompt template:.codex/prompts/code-review.md 2. Identify files changed for this change by reading: - openspec/changes/CHANGENAME/tasks.md (completed tasks reference files) - openspec/changes/CHANGENAME/design.md (affected files listed) 3. Run Codex review: `bash codex exec \ --dangerously-bypass-approvals-and-sandbox \ -m gpt-5.3-codex \ "Review the code changes for OpenSpec change CHANGENAME. Follow the review methodology in.codex/prompts/code-review.md. Read the change artifacts at openspec/changes/CHANGENAME/ for context. Write the full review report." `` Output Format Write review to: openspec/changes/CHANGENAME/review-report.md # Code Review: CHANGENAME ## Summary | Dimension | Finding Count | Max Severity | |-----------------|---------------|--------------| | Security | N |... | | Performance | N |... | | Correctness | N |... | | Maintainability | N |... | ## CRITICAL - [finding] — file.ts:line — Recommendation:... ## WARNING - [finding] — file.ts:line — Recommendation:... ## SUGGESTION - [finding] — file.ts:line — Recommendation:... ## Assessment [Summary of overall code quality and readiness] IMPORTANT: Only review, do NOT modify code. IMPORTANT: Always communicate results to the leader via SendMessage. 1. Parse the Codex output and write structured review to: openspec/changes/CHANGENAME/review-report.md 2. Send summary to leader via SendMessage: Include CRITICAL/WARNING/SUGGESTION counts and overall assessment. 3. Mark task completed via TaskUpdate 4. Check TaskList for next work - **TaskCreate**: subject "Code review for " - **TaskUpdate**: assign owner to reviewer - **SendMessage** to reviewer: "Run Codex code review for change. Write review-report.md and send me the summary." - Read all change artifacts - Verify Completeness (task + spec coverage) - Verify Correctness (requirement implementation, scenario coverage) - Verify Coherence (design adherence, pattern consistency) - Write report to openspec/changes/<name>/verify-report.md - Read both verify-report.md and review-report.md - Merge into openspec/changes/<name>/combined-report.md: - Deduplicate issues appearing in both reports - Combine all unique CRITICAL/WARNING/SUGGESTION issues - Copy verify-report.md content to openspec/changes/<name>/combined-report.md` - If reviewer failed, report to user: "Codex review failed. Proceeding with OpenSpec verify results only."

  1. Phase 3: Fix Loop (max 3 iterations) For iteration N = 1, 2, 3: a. Leader directly fixes issues b. Re-verify and update combined-report.md Round 1 (leader-only, fast check): Round 2+ (smart escalation): c. Check results Report each round: "Fix Round N complete. CRITICAL: N | WARNING: N | SUGGESTION: N"

- Read openspec/changes/<name>/combined-report.md (always use combined-report as single source of truth) - Read change artifacts for context (design.md, specs/, tasks.md) - For each CRITICAL, WARNING, and SUGGESTION issue: 1. Read the referenced source file at the specified file:line 2. Understand the issue in context of change requirements 3. Apply the minimal, scoped fix - Keep changes strictly scoped to reported issues — no refactoring or improvements beyond the fix - If a design decision in design.md conflicts with code, update the code to match design - Write fix summary to openspec/changes/<name>/fix-summary.md: ` # Fix Summary: <change-name> (Round N) ## Fixes Applied ### CRITICAL - [issue] → Fixed in file.ts:line — [what changed] ### WARNING - [issue] → Fixed in file.ts:line — [what changed] ### SUGGESTION - [issue] → Fixed in file.ts:line — [what changed] ## Could Not Fix - [issue] — Reason: [explanation] - Leader runs OpenSpec verify (steps from verify.md) - Update verify-report.md - Copy verify-report.md to combined-report.md - If previous round's combined-report.md still has CRITICAL or WARNING issues AND CODEX_AVAILABLE=true`: - Leader runs OpenSpec verify + Send reviewer to run Codex review again (dual verify) - Merge into combined-report.md - Otherwise (only SUGGESTION issues remaining, or CODEX_AVAILABLE=false): - Leader-only verify - Copy verify-report.md to combined-report.md - If 0 issues in combined-report.md → go to step 8 (archive) - If N < 3 and issues remain → continue loop (N + 1) - If N = 3 and issues remain → go to step 7

  1. Max iterations exceeded Display to user: ` ## Ship Paused: <change-name> 3 fix rounds completed, issues remain. **Remaining Issues:** [paste CRITICAL/WARNING/SUGGESTION from latest combined-report.md] **Options:** 1. Fix manually, then re-run /opsx:ship 2. Archive with warnings: /opsx:archive <change-name> 3. Review full report: openspec/changes/<name>/combined-report.md ` Proceed to step 9 (cleanup).
  2. Phase 4: Archive Execute the /opsx:archive logic (follow .claude/commands/opsx/archive.md): ## Ship Complete: <change-name> **Verification:** All checks passed **Fix Rounds:** N/3 used **Archived to:** openspec/changes/archive/YYYY-MM-DD-<name>/ **Specs:** ✓ Synced / No delta specs / Sync skipped

- Check artifact completion status - Assess delta spec sync state (prompt user for sync choice) - Move change to archive directory - Display ship completion summary:

  1. Phase 5: Cleanup IMPORTANT: Always run cleanup, even if ship was paused or failed.

- If reviewer is still running: SendMessage type shutdown_request to reviewer - Wait for shutdown confirmation (timeout: if no response after 30 seconds, proceed) - If shutdown_request fails or times out: log warning and proceed - TeamDelete to clean up team resources

Progress Reporting

Report progress to user at each phase:

## Shipping: <change-name>

✓ Team created: ship-<change-name>
✓ Implementer spawned

── Phase 1: Implement ──
⏳ Implementing tasks...
✓ Task 1/N: <description>
✓ Task 2/N: <description>
✓ All tasks implemented
✓ Implementer shutdown

── Phase 2: Dual Verify ──
⏳ Spawning reviewer...
⏳ OpenSpec verify + Codex review in progress...
CRITICAL: 1 | WARNING: 2 | SUGGESTION: 1

── Phase 3: Fix Loop ──
⏳ Fix Round 1/3...
✓ Fix applied
⏳ Re-verifying...
✓ All checks passed!

── Phase 4: Archive ──
✓ Specs synced
✓ Archived to openspec/changes/archive/YYYY-MM-DD-<name>/

── Phase 5: Cleanup ──
✓ Team shutdown complete

Ship complete!

Guardrails

  • Always prompt for change selection if not provided
  • Max 3 fix iterations — hard limit to prevent infinite loops
  • Implementer implements, reviewer reviews, leader orchestrates — separation of concerns
  • Leader does OpenSpec verify and fixes issues directly (not delegated to teammates)
  • Implementer is shut down after Phase 1 to free resources
  • Reviewer is spawned on-demand at Phase 2 (not at team creation)
  • Codex availability is checked upfront; workflow adapts if unavailable
  • Agent failures trigger user-facing options instead of silent failure
  • combined-report.md is the single source of truth for fix loop (never reference verify-report.md or review-report.md directly in fix loop)
  • Always run cleanup (step 9), even on failure or pause
  • All working files preserved in change directory (verify-report.md, review-report.md, combined-report.md, fix-summary.md)
  • The reviewer follows .codex/prompts/code-review.md for review methodology
  • The leader reads .codex/prompts/verify-fix-loop.md for fix constraints reference
  • The implementer follows apply methodology from .claude/commands/opsx/apply.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.81%
按下载量换算43

Claude

29.15%
按下载量换算37

Cursor

17.97%
按下载量换算23

Gemini CLI

9.6%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/october-academy/agent-plugins --skill ship 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills