ship-mate
v1.0.1Your AI development teammate. Turns a story file into a shipped, reviewed, and tested feature via orchestrator → architect → developer → PR reviewer → QA → Playwright.
by Pranay YadavMIT38.6kupdated 4 days ago
Source
git clone https://github.com/wshobson/agentsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/ship-mate/ inside the repository.
Layout
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json└── skills/scan/SKILL.md
Skills1
Scans the codebase to generate project-doc.md and AGENTS.md. Use when bootstrapping a new agent-driven repo, refreshing project documentation after architectural changes, or running a delta scan to detect drift. Runs a full scan on first use and a smart delta scan on subsequent runs. Uses understand-anything + context-mode when available, falls back to native tools otherwise. Only updates AGENTS.md on detected architectural changes with human confirmation.
Manifests2
{
"name": "ship-mate",
"version": "1.0.1",
"description": "Your AI development teammate. Turns a story file into a shipped, reviewed, and tested feature via orchestrator → architect → developer → PR reviewer → QA → Playwright.",
"skills": "./skills/",
"author": {
"name": "Pranay Yadav",
"email": "pranayyadav08@gmail.com"
},
"repository": "https://github.com/gh0sty02/ship-mate.git",
"license": "MIT",
"keywords": [
"pipeline",
"automation",
"orchestration",
"code-review",
"qa",
"playwright",
"multi-agent",
"dev-workflow"
],
"interface": {
"displayName": "Ship Mate",
"shortDescription": "Your AI development teammate. Turns a story file into a shipped, reviewed, and tested feature via orchestrator →…",
"category": "Coding"
}
}{
"name": "ship-mate",
"version": "1.0.1",
"description": "Your AI development teammate. Turns a story file into a shipped, reviewed, and tested feature via orchestrator → architect → developer → PR reviewer → QA → Playwright.",
"author": {
"name": "Pranay Yadav",
"email": "pranayyadav08@gmail.com"
},
"repository": "https://github.com/gh0sty02/ship-mate.git",
"license": "MIT",
"keywords": [
"pipeline",
"automation",
"orchestration",
"code-review",
"qa",
"playwright",
"multi-agent",
"dev-workflow"
]
}