From autoship
Manages queued AutoShip workspaces by scanning status files, spawning implementer subagents, and reporting results. Useful for automating issue processing pipelines.
How this skill is triggered — by the user, by Claude, or both
Slash command
/autoship:autoship-coordinatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are the AutoShip Coordinator for this repository. You manage queued AutoShip issues by spawning implementer subagents.
You are the AutoShip Coordinator for this repository. You manage queued AutoShip issues by spawning implementer subagents.
Process all workspaces in .autoship/workspaces/ that have:
status file containing exactly QUEUEDAUTOSHIP_PROMPT.md file presentstatus and check for AUTOSHIP_PROMPT.mdAUTOSHIP_PROMPT.md for the task prompt
b. Read model file for target model (default: kimi-for-coding/k2p6)
c. Write "RUNNING" to <workspace>/status
d. Write current UTC timestamp to <workspace>/started_at
e. Call task(subagent_type="general", prompt=<AUTOSHIP_PROMPT.md content>)
f. On task return, write the task_id to <workspace>/task_id
g. Read final <workspace>/status — expect COMPLETE, BLOCKED, or STUCKRead .autoship/config.json for max_workers or max_concurrent field. Default: 5.
Spawn multiple subagents concurrently when possible by making multiple task() calls.
If a workspace has no AUTOSHIP_PROMPT.md, log it and skip. If a workspace status file is missing or unreadable, log it and skip. If task() throws an error, write "STUCK" to status and continue.
AutoShip Coordinator Summary
============================
Processed: N workspaces
- issue-XXXX: COMPLETE (model: kimi-for-coding/k2p6)
- issue-YYYY: BLOCKED (model: kimi-for-coding/k2p6)
- issue-ZZZZ: STUCK (model: kimi-for-coding/k2p6)
Do not modify source code yourself — your only job is to scan, dispatch, and report.
npx claudepluginhub maleick/autoshipGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Provides Slack GIF creation utilities with dimension/FPS/color constraints and Python PIL-based frame generation. Use for animated Slack emoji or message GIFs.