Define review standards per language or project, attach them to PRs via webhook, track completion. The thing tech leads maintain in Notion and nobody reads.
Every operation in Crucible II is available through a JSON REST API. No SDK required — use curl, fetch, or any HTTP client.
GET /api/reviews — list all reviews with optional search and filter query parametersPOST /api/reviews — create a new review recordGET /api/reviews/{id} — retrieve a single review by IDPUT /api/reviews/{id} — update an existing reviewDELETE /api/reviews/{id} — remove a reviewGET /api/stats — aggregated statistics with status breakdownGET /api/health — health check endpoint for monitoringA non-profit with no DevOps budget downloads the Crucible II binary, sets two environment variables, and runs it on the same Linux box that handles their email. It has been running for three months without intervention. When they need to update, they download the new binary and restart the process.
Teams outgrow spreadsheet-based reviews tracking around the same time they realize SaaS alternatives want $15 to $50 per seat per month. Crucible II is a single binary that handles the same job without the recurring bill or the vendor dependency.
GET /api/reviews — List all reviews. Supports ?q=keyword for search and ?status=value for filteringPOST /api/reviews — Create a new review. Send JSON with at least titleGET /api/reviews/{id} — Fetch one review by IDPUT /api/reviews/{id} — Update fields on an existing reviewDELETE /api/reviews/{id} — Remove a reviewGET /api/stats — Returns total count and breakdown by statusGET /api/health — Returns {"status":"ok"} for uptime monitoringThe dashboard opens at /ui and gives you a search bar, status filters, and a create form. Double-click any review to edit it inline. Behind the dashboard, every operation maps to a REST endpoint under /api/reviews. Responses are JSON. Authentication is handled at the network level — put Crucible II behind your VPN or reverse proxy, and it serves requests to whoever can reach it.
Self-hosted code review checklist manager. Self-hosted on your infrastructure. Your data never leaves your server.
curl -fsSL https://stockyard.dev/install.sh | sh -s -- --tool crucible2
PORT=9960 ./crucible2
http://localhost:9960
Single binary. Embedded SQLite. No Docker. No database. No dependencies.
Your license key arrives by email within 5 minutes of checkout. Set it as an environment variable and restart the binary.
export CRUCIBLE2_LICENSE_KEY=stockyard_xxxxxxxxxxxxxxxxxxxx ./crucible2
No cloud connectivity required. The binary validates the key offline with Ed25519 signatures.