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.
Compliance Checker
Checks your architecture against compliance frameworks — SOC 2, HIPAA, PCI DSS. Flags gaps and suggests remediations.
{
"skill": "@smokestack-community/compliance-checker",
"frameworks": [
"soc2",
"hipaa",
"pci"
],
"output": "compliance_report"
}Migration Planner
Compare two architecture designs and generate a migration plan — what changes, what stays, rollback strategy, and phased deployment steps.
{
"skill": "@smokestack-community/migration-planner",
"triggers": [
"manual"
],
"input": [
"design_a",
"design_b"
],
"output": "migration_plan"
}Cost Estimator
Maps your architecture components to cloud provider pricing. Estimates monthly cost at different traffic levels based on your simulation configs.
{
"skill": "@smokestack-community/cost-estimator",
"triggers": [
"manual"
],
"providers": [
"aws",
"gcp",
"azure"
],
"output": "cost_breakdown"
}Runbook Generator
Generates operational runbooks from your architecture and simulation data — incident response procedures, escalation paths, and recovery steps.
{
"skill": "@smokestackdev/runbook-generator",
"triggers": [
"manual"
],
"output": "runbook_markdown"
}Architecture Scaffolder
Describe what you want to build in plain English. This skill generates a complete architecture diagram with components, connections, and sensible defaults.
{
"skill": "@smokestackdev/scaffolder",
"triggers": [
"manual"
],
"input": "natural_language",
"output": "design"
}Capacity Planner
Takes your simulation results and generates a capacity plan — instance sizing, auto-scaling thresholds, cost estimates, and scaling recommendations.
{
"skill": "@smokestackdev/capacity-planner",
"triggers": [
"on_simulation_complete"
],
"output": "capacity_report"
}Chaos Scenario Generator
Analyzes your architecture and generates chaos engineering scenarios — node failures, traffic spikes, network partitions — tailored to your specific topology.
{
"skill": "@smokestackdev/chaos-generator",
"triggers": [
"manual"
],
"output": "scenario_configs"
}Design Doc Writer
Co-authors a full design document from your architecture — topology overview, component specs, capacity plans, failure modes, and mitigation strategies.
{
"skill": "@smokestackdev/design-doc-writer",
"triggers": [
"manual",
"on_simulation_complete"
],
"output": "design_document"
}Architecture Reviewer
An agent skill that reviews your system design and suggests improvements — load balancer placement, caching layers, single points of failure.
{
"skill": "@smokestackdev/architecture-reviewer",
"triggers": [
"on_design_save"
],
"output": "inline_comments"
}