Skip to content

Latest commit

 

History

History
232 lines (170 loc) · 9.11 KB

File metadata and controls

232 lines (170 loc) · 9.11 KB

═══ STOCKYARD ═══

150 self-hosted developer tools. Single binary each. SQLite storage.

Wrangle your Stack.

Website · All 150 Tools · Complete Bundle · Docs · Changelog

Go License License Tools Modules Providers


150 focused self-hosted tools — webhook inboxes, status pages, feature flags, error tracking, analytics, link shorteners, secret managers, and more. Each tool is a single Go binary (~12MB) with embedded SQLite. No Docker, no Postgres, no Redis, no vendor lock-in. Your data lives on your server.

Plus an LLM proxy platform with 76 middleware modules and 16 providers.

All 150 tools for $29/mo. Free tier on every tool. stockyard.dev/complete

Install Any Tool

# Install a single tool
curl -fsSL stockyard.dev/corral/install.sh | sh
stockyard-corral
# → Dashboard: http://localhost:8760/ui

# Install multiple tools
curl -fsSL stockyard.dev/install-tools.sh | sh -s -- headcount paddock saltlick

# Or use a preset bundle
curl -fsSL stockyard.dev/install-tools.sh | sh -s -- --starter    # 5 popular tools
curl -fsSL stockyard.dev/install-tools.sh | sh -s -- --devtools   # 8 developer tools
curl -fsSL stockyard.dev/install-tools.sh | sh -s -- --ops        # operations tools

Interactive Menu

curl -fsSL stockyard.dev/install-menu.sh | sh

Docker

docker run -d -p 4200:4200 -e OPENAI_API_KEY=sk-... ghcr.io/stockyard-dev/stockyard:latest

Homebrew

brew tap stockyard-dev/tap
brew install stockyard-corral stockyard-headcount stockyard-paddock

Popular Tools

Tool Replaces What it does
Corral Hookdeck ($25/mo) Webhook capture, inspect, replay, forward
Headcount Mixpanel ($20/mo) Privacy-first user analytics, funnels, retention
Paddock Statuspage ($79/mo) Public status page with incidents and notifications
Salt Lick LaunchDarkly ($50/mo) Feature flags, gradual rollouts, kill switches
Seismograph Sentry ($26/mo) Error tracking and exception aggregation
Lasso Bitly ($35/mo) Link shortener with custom domains and QR codes
Strongbox 1Password ($18/mo) Encrypted secret manager with team access
Ledger QuickBooks ($15/mo) Double-entry bookkeeping and reports
Sentinel PagerDuty ($21/mo) Alert manager with escalation policies

Browse all 150 tools →

Stockyard Complete — $29/mo

All 150 tools. One license key. Unlimited instances.

SaaS stack:  Sentry + Statuspage + LaunchDarkly + Bitly + Mixpanel = $210+/mo
Stockyard:   All 150 tools = $29/mo
  • One license key unlocks Pro on every tool
  • Run as many instances as you need
  • Your rate locks in when you subscribe
  • Cancel any time — tools keep running on free tier

Get Complete →

LLM Platform

Stockyard also includes an LLM proxy platform — the tool that started it all. Point your OPENAI_BASE_URL at it and get cost tracking, caching, safety filters, rate limiting, audit trails, and automatic cost routing.

# Install the full platform
curl -fsSL https://stockyard.dev/install.sh | sh

export OPENAI_API_KEY=sk-...
stockyard start
# → Proxy:     http://localhost:4200/v1
# → Dashboard: http://localhost:4200/ui
from openai import OpenAI

client = OpenAI(
    base_url="http://localhost:4200/v1",
    api_key="your-openai-key"
)

response = client.chat.completions.create(
    model="gpt-4o-mini",
    messages=[{"role": "user", "content": "Hello!"}]
)
  • 76 middleware modules — rate limiting, caching, failover, safety filters, cost caps, audit logging
  • 16 LLM providers — OpenAI, Anthropic, Gemini, Groq, Mistral, DeepSeek, Ollama, and more
  • ~400ns proxy overhead across the full middleware chain
  • ~25MB binary, embedded SQLite, zero external dependencies

Platform details → · LLM Platform pricing →

Architecture

┌─── Single Binary (~12MB per tool) ──────────────┐
│                                                   │
│  HTTP Server ──→ REST API ──→ SQLite (WAL mode)  │
│       │                                           │
│       └──→ Dashboard (embedded, serves at /ui)   │
│                                                   │
│  No external database. No Docker required.        │
│  Download, run, done.                             │
└───────────────────────────────────────────────────┘

MCP Support

Connect MCP-compatible AI editors (Claude Desktop, Cursor, Windsurf) to Stockyard:

{
  "mcpServers": {
    "stockyard": {
      "url": "http://localhost:4200/mcp/sse"
    }
  }
}

MCP documentation →

Shipped This Week

20 changes in the last 7 days:

  • homepage: fix overlaps on yoga dashboard SVG (2026-04-10)
  • homepage: yoga dashboard SVG + dev-cta rewrite (2026-04-10)
  • homepage: restore screenreader accessibility on hero mockup cards (2026-04-10)
  • scripts: guard generate_bundles.py against accidental runs (2026-04-10)
  • homepage: add trust-signal stats band between hero and promise section (2026-04-10)
  • homepage: expand nav to Bundles / Tools / Pricing / About / GitHub (2026-04-10)
  • homepage: add OS-detected download button above the fold (2026-04-10)
  • homepage: promote toolkit counter to hero trust signal (2026-04-10)
  • homepage: link tool cards in bundle/premade detail views to /tools/{slug}/ (2026-04-10)
  • homepage: H1 rewrite + composite mockups + price badge + dev-cta fix (2026-04-10)
  • Revert "homepage: add price badge above fold + fix dev-cta tier contradiction" (2026-04-09)
  • site: redirect bare /{slug}/ URLs to /tools/{slug}/ landing pages (2026-04-09)
  • homepage: add price badge above fold + fix dev-cta tier contradiction (2026-04-09)
  • site: link bundle tool cards to /tools/{slug}/ landing pages (2026-04-09)
  • site: register /tools/ prefix handler for per-tool landing pages (2026-04-09)
  • site: add per-tool landing pages + fix broken bundle install chain (2026-04-09)
  • site: shorten bundle landing page titles to fit SEO cutoff (2026-04-09)
  • auth: whitelist /api/billing/session as public route (2026-04-09)
  • billing/success: rewrite post-purchase page + add session lookup endpoint (2026-04-09)
  • mailer: strip em dashes and phone-home language from every template (2026-04-09)

See full changelog for details.

Build from Source

git clone https://github.com/stockyard-dev/Stockyard.git
cd Stockyard

# Open-source proxy (Apache 2.0)
CGO_ENABLED=0 go build -o stockyard-proxy ./cmd/stockyard-proxy/
./stockyard-proxy

# Full platform (BSL 1.1)
CGO_ENABLED=0 go build -o stockyard ./cmd/stockyard/
./stockyard

Requires Go 1.22+. No other dependencies.

Documentation

License

Stockyard Proxy — the core LLM proxy with 24 middleware modules, provider routing, model aliasing, caching, and failover — is open source under the Apache License 2.0.

Stockyard Platform + Tools — the full binary including all 76 modules, the dashboard, all 150 standalone tools, and all platform products — is licensed under the Business Source License 1.1.

See docs/licensing/open-core-boundary.md for the full boundary.


stockyard.dev · Wrangle your Stack.