plugins marketplace
← All plugins

backend-development

v1.3.2

Backend API design, GraphQL architecture, workflow orchestration with Temporal, and test-driven backend development

CodexClaude Code9 skills

by Seth HobsonMIT38.6kupdated 4 days ago

Source

git clone https://github.com/wshobson/agents

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/backend-development/ inside the repository.

Layout

plugins/backend-development/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/api-design-principles/SKILL.md
├── skills/architecture-patterns/SKILL.md
├── skills/cqrs-implementation/SKILL.md
├── skills/event-store-design/SKILL.md
├── skills/microservices-patterns/SKILL.md
├── skills/projection-patterns/SKILL.md
├── skills/saga-orchestration/SKILL.md
├── skills/temporal-python-testing/SKILL.md
└── skills/workflow-orchestration-patterns/SKILL.md

Skills9

api-design-principlesskills/api-design-principles/SKILL.md

Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing API design standards.

architecture-patternsskills/architecture-patterns/SKILL.md

Implement proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design. Use this skill when designing clean architecture for a new microservice, when refactoring a monolith to use bounded contexts, when implementing hexagonal or onion architecture patterns, or when debugging dependency cycles between application layers.

cqrs-implementationskills/cqrs-implementation/SKILL.md

Implement Command Query Responsibility Segregation for scalable architectures. Use when separating read and write models, optimizing query performance, or building event-sourced systems.

event-store-designskills/event-store-design/SKILL.md

Design and implement event stores for event-sourced systems. Use when building event sourcing infrastructure, choosing event store technologies, or implementing event persistence patterns.

microservices-patternsskills/microservices-patterns/SKILL.md

Design microservices architectures with service boundaries, event-driven communication, and resilience patterns. Use when building distributed systems, decomposing monoliths, or implementing microservices.

projection-patternsskills/projection-patterns/SKILL.md

Build read models and projections from event streams. Use when implementing CQRS read sides, building materialized views, or optimizing query performance in event-sourced systems.

saga-orchestrationskills/saga-orchestration/SKILL.md

Implement saga patterns for distributed transactions and cross-aggregate workflows. Use this skill when implementing distributed transactions across microservices where 2PC is unavailable, designing compensating actions for failed order workflows that span inventory, payment, and shipping services, building event-driven saga coordinators for travel booking systems that must roll back hotel, flight, and car rental reservations atomically, or debugging stuck saga states in production where compensation steps never complete.

temporal-python-testingskills/temporal-python-testing/SKILL.md

Test Temporal workflows with pytest, time-skipping, and mocking strategies. Covers unit testing, integration testing, replay testing, and local development setup. Use when implementing Temporal workflow tests or debugging test failures.

workflow-orchestration-patternsskills/workflow-orchestration-patterns/SKILL.md

Design durable workflows with Temporal for distributed systems. Covers workflow vs activity separation, saga patterns, state management, and determinism constraints. Use when building long-running processes, distributed transactions, or microservice orchestration.

Manifests2

plugins/backend-development/.codex-plugin/plugin.json
{
  "name": "backend-development",
  "version": "1.3.2",
  "description": "Backend API design, GraphQL architecture, workflow orchestration with Temporal, and test-driven backend development",
  "skills": "./skills/",
  "author": {
    "name": "Seth Hobson",
    "email": "seth@major7apps.com"
  },
  "license": "MIT",
  "interface": {
    "displayName": "Backend Development",
    "shortDescription": "Backend API design, GraphQL architecture, workflow orchestration with Temporal, and test-driven backend development",
    "category": "Coding"
  }
}
plugins/backend-development/.claude-plugin/plugin.json
{
  "name": "backend-development",
  "version": "1.3.2",
  "description": "Backend API design, GraphQL architecture, workflow orchestration with Temporal, and test-driven backend development",
  "author": {
    "name": "Seth Hobson",
    "email": "seth@major7apps.com"
  },
  "license": "MIT"
}