Agent Skills Marketplace

Skills for your architecture agent

Download skills that let AI agents review architectures, write design docs, generate chaos scenarios, plan capacity, and more. Plug them into your workflow and let humans and agents collaborate.

Install a skill

Add a skill to your agent config. Works with Claude, Cursor, or any MCP-compatible agent.

Agent runs it

Skills trigger automatically or on demand. The agent reads your design, runs simulations, and produces output.

You review & refine

The agent drafts. You approve, edit, or reject. Human-in-the-loop collaboration on every output.

Available Skills

Official and community-built skills for your architecture workflow.

Review

Compliance Checker

Checks your architecture against compliance frameworks — SOC 2, HIPAA, PCI DSS. Flags gaps and suggests remediations.

Community
1.5k
config.json
{
  "skill": "@smokestack-community/compliance-checker",
  "frameworks": [
    "soc2",
    "hipaa",
    "pci"
  ],
  "output": "compliance_report"
}
Planning

Migration Planner

Compare two architecture designs and generate a migration plan — what changes, what stays, rollback strategy, and phased deployment steps.

Community
890
config.json
{
  "skill": "@smokestack-community/migration-planner",
  "triggers": [
    "manual"
  ],
  "input": [
    "design_a",
    "design_b"
  ],
  "output": "migration_plan"
}
Planning

Cost Estimator

Maps your architecture components to cloud provider pricing. Estimates monthly cost at different traffic levels based on your simulation configs.

Community
2.9k
config.json
{
  "skill": "@smokestack-community/cost-estimator",
  "triggers": [
    "manual"
  ],
  "providers": [
    "aws",
    "gcp",
    "azure"
  ],
  "output": "cost_breakdown"
}
Operations

Runbook Generator

Generates operational runbooks from your architecture and simulation data — incident response procedures, escalation paths, and recovery steps.

Smokestack
1.2k
config.json
{
  "skill": "@smokestackdev/runbook-generator",
  "triggers": [
    "manual"
  ],
  "output": "runbook_markdown"
}
Design

Architecture Scaffolder

Describe what you want to build in plain English. This skill generates a complete architecture diagram with components, connections, and sensible defaults.

Smokestack
4.7k
config.json
{
  "skill": "@smokestackdev/scaffolder",
  "triggers": [
    "manual"
  ],
  "input": "natural_language",
  "output": "design"
}
Planning

Capacity Planner

Takes your simulation results and generates a capacity plan — instance sizing, auto-scaling thresholds, cost estimates, and scaling recommendations.

Smokestack
3.2k
config.json
{
  "skill": "@smokestackdev/capacity-planner",
  "triggers": [
    "on_simulation_complete"
  ],
  "output": "capacity_report"
}
Simulation

Chaos Scenario Generator

Analyzes your architecture and generates chaos engineering scenarios — node failures, traffic spikes, network partitions — tailored to your specific topology.

Smokestack
1.8k
config.json
{
  "skill": "@smokestackdev/chaos-generator",
  "triggers": [
    "manual"
  ],
  "output": "scenario_configs"
}
Documentation

Design Doc Writer

Co-authors a full design document from your architecture — topology overview, component specs, capacity plans, failure modes, and mitigation strategies.

Smokestack
5.1k
config.json
{
  "skill": "@smokestackdev/design-doc-writer",
  "triggers": [
    "manual",
    "on_simulation_complete"
  ],
  "output": "design_document"
}
Review

Architecture Reviewer

An agent skill that reviews your system design and suggests improvements — load balancer placement, caching layers, single points of failure.

Smokestack
2.4k
config.json
{
  "skill": "@smokestackdev/architecture-reviewer",
  "triggers": [
    "on_design_save"
  ],
  "output": "inline_comments"
}