oborchers

64 mods across 4 repositories, 59 stars between them.

fractional-cto

01

oborchers/fractional-cto

Plugin Claude Code

Your AI CTO co-pilot — opinionated, research-backed plugins for building SaaS products that ship.

29 26d ago A tokens not measured original MIT

plugin-reviewer

02

oborchers/fractional-cto

Agent Claude Code

Use this agent to interactively review every recommendation, rule, and checklist item inside a fractional-cto plugin's skills. The agent reads each skill, presents every recommendation to the user one by one, and the user approves, edits, or removes each one. Examples: Context: User wants to review the content of a…

29 26d ago A 489 tokens original MIT

oborchers/fractional-cto

Instructions file

Instructions for oborchers/fractional-cto, covering claude.md, project overview, local development, test a plugin locally and architecture.

29 26d ago A 1,504 tokens original MIT

agent-baton

04

oborchers/fractional-cto

Plugin Claude Code

Chain work across two independent agent processes that share no parent session. One agent passes a baton (a completion signal file) when done, optionally carrying a free-form payload; another waits for it, with a deadline, then starts its dependent task. Harness-agnostic protocol — each agent picks its own waiting…

29 26d ago A tokens not measured original MIT

baton-pass

05

oborchers/fractional-cto

Command

Publish a baton — signal that this agent's work is done so a waiting agent in another process can start, optionally with a payload.

29 26d ago A 26 tokens original MIT

baton-wait

06

oborchers/fractional-cto

Command

Wait for a baton from an agent in another process, then start the dependent task once it arrives.

29 26d ago A 19 tokens original MIT

SessionStart

07

oborchers/fractional-cto

Hook

Runs when a session starts on startup, resume, clear and compact, executing session-start.sh. From oborchers/fractional-cto.

29 26d ago A tokens not measured copy · 84% MIT

agent-baton

08

oborchers/fractional-cto

Skill Claude CodeCodex

This skill should be used when work must be chained across two independent agent processes that share no parent session — e.g. one agent in one terminal finishes a task and a second agent (possibly a different tool entirely: Claude Code, Codex, Cursor, Gemini) must start only once the first is done. Covers passing a…

29 26d ago C 193 tokens original MIT

oborchers/fractional-cto

Plugin Claude Code

Research-backed, opinionated guidance for designing world-class RESTful APIs — routes, naming, errors, auth, caching, webhooks, and more, distilled from Stripe, GitHub, Twilio, Shopify, Google, and Microsoft.

29 26d ago A tokens not measured original MIT

api-design-reviewer

10

oborchers/fractional-cto

Agent

Use this agent for comprehensive API design audits of endpoints, routes, error handling, or API architecture. Examples: Context: User has built a REST API and wants it reviewed. user: "Review my API against REST best practices" assistant: "I'll use the api-design-reviewer agent to audit the API." API review involves…

29 26d ago A 242 tokens original MIT

api-review

11

oborchers/fractional-cto

Command

Review the current code or API against API design principles — identifies violations and suggests improvements.

29 26d ago A 16 tokens original MIT

advanced-patterns

12

oborchers/fractional-cto

Skill Claude CodeCodex

This skill should be used when the user is implementing bulk or batch API operations, choosing between REST and GraphQL or gRPC, designing real-time APIs with SSE or WebSockets, implementing multi-tenant API isolation, setting up API gateways, or applying CQRS and event sourcing patterns. Covers batch operations…

29 26d ago A 81 tokens original MIT

auth-and-api-keys

13

oborchers/fractional-cto

Skill Claude CodeCodex

This skill should be used when the user is designing API authentication, implementing API keys with prefixes, choosing between API keys and OAuth, setting up JWT tokens, implementing Bearer token authentication, designing API key rotation, or scoping API key permissions. Covers Stripe-style prefixed keys (sklive…

29 26d ago A 82 tokens original MIT

oborchers/fractional-cto

Skill Claude CodeCodex

This skill should be used when the user is implementing HTTP caching, configuring Cache-Control headers, using ETags and conditional requests, setting up CDN caching for APIs, implementing response compression, choosing between gzip and Brotli, configuring HTTP/2, or implementing circuit breakers. Covers Cache-Control…

29 26d ago A 76 tokens original MIT

oborchers/fractional-cto

Skill Claude CodeCodex

This skill should be used when the user is writing API documentation, designing developer onboarding, building interactive API explorers, generating SDKs, creating code examples, setting up sandbox environments, implementing API changelogs, or optimizing time-to-first-API-call. Covers three-panel docs layout…

29 26d ago A 75 tokens original MIT

oborchers/fractional-cto

Skill Claude CodeCodex

This skill should be used when the user is designing API error responses, choosing HTTP status codes, implementing error envelopes, handling validation errors, creating per-field error messages, or following RFC 9457 Problem Details. Covers status code selection (2xx-5xx), consistent error formats…

29 26d ago A 80 tokens original MIT

http-methods

17

oborchers/fractional-cto

Skill Claude CodeCodex

This skill should be used when the user is choosing HTTP methods for API endpoints, designing CRUD operations, implementing idempotent operations, deciding between PUT and PATCH, handling bulk operations, or working with HTTP verb semantics. Covers GET, POST, PUT, PATCH, DELETE with idempotency rules, status code…

29 26d ago A 73 tokens original MIT

prefixed-ids

18

oborchers/fractional-cto

Skill Claude CodeCodex

This skill should be used when the user is designing ID formats for API resources, implementing type-safe identifiers, choosing between UUID and prefixed IDs, generating IDs with KSUID or ULID, creating ID validation, or following Stripe's prefixed ID pattern. Covers prefix conventions, ID generation, validation, and…

29 26d ago A 69 tokens original MIT

oborchers/fractional-cto

Skill Claude CodeCodex

This skill should be used when the user is implementing rate limiting, choosing rate limit algorithms, adding rate limit headers, securing API endpoints, preventing OWASP API Top 10 vulnerabilities, configuring CORS, validating input, or implementing request signing. Covers sliding window, token bucket, and leaky…

29 26d ago A 79 tokens original MIT

oborchers/fractional-cto

Skill Claude CodeCodex

This skill should be used when the user is designing API response formats, implementing pagination (cursor, offset, keyset), creating list endpoints, designing response envelopes, implementing expandable/embeddable objects, or structuring API output. Covers Stripe-style cursor pagination, consistent list envelopes…

29 26d ago A 68 tokens original MIT

routes-and-naming

21

oborchers/fractional-cto

Skill Claude CodeCodex

This skill should be used when the user is designing API routes, URL structures, endpoint naming, resource naming conventions, query parameters vs path parameters, JSON field naming (snakecase vs camelCase), nesting depth, or API URL patterns. Covers plural nouns, flat vs hierarchical URLs, field naming conventions…

29 26d ago A 81 tokens original MIT

oborchers/fractional-cto

Skill Claude CodeCodex

This skill should be used when the user asks "which API design skill should I use", "show me all API principles", "help me pick an API pattern", or at the start of any RESTful API design conversation. Provides the index of all twelve principle skills and ensures the right ones are invoked before any API design work…

29 26d ago A 73 tokens original MIT

oborchers/fractional-cto

Skill Claude CodeCodex

This skill should be used when the user is designing API versioning strategy, choosing between URL path and header-based versioning, implementing Stripe-style date-based versioning, planning API deprecation, using sunset headers, or evolving an API without breaking clients. Covers URL versioning, additive evolution…

29 26d ago A 72 tokens original MIT

webhooks-and-events

24

oborchers/fractional-cto

Skill Claude CodeCodex

This skill should be used when the user is designing webhook systems, implementing webhook signing with HMAC-SHA256, building webhook retry logic, choosing event naming conventions, handling webhook ordering, implementing webhook endpoints, or building event-driven API integrations. Covers Stripe-style webhook…

29 26d ago A 73 tokens original MIT