SystemsThinking
Structural analysis of complex systems grounded in Donella Meadows, Peter Senge, Jay Forrester, Russell Ackoff, and the Santa Fe Institute tradition. Five workflows: Iceberg (walk Events → Patterns → Structures → Mental Models to find why the same thing keeps happening), CausalLoop (build causal loop diagrams with reinforcing R and balancing B loops), FindArchetype (match behavior to ~10 canonical patterns — Limits to Growth, Shifting the Burden, Tragedy of the Commons, Fixes That Fail, etc. — then apply the documented canonical intervention), FindLeverage (Meadows' 12 leverage points ordered by impact — parameters are weakest, paradigm transcendence is strongest), ConceptMap (Novak-style entity-relationship mapping). Core axiom: behavior is generated by structure; events are visible, structure is not. At Extended+ effort on anything with recurring behavior or cross-component coupling, systems thinking is the structural lens, not optional enrichment. NOT FOR incident causal chains (use RootCauseAnalysis). USE WHEN systems thinking, causal loop, feedback loops, archetypes, leverage points, iceberg model, unintended consequences, fix the system, structural cause, why does this keep happening, recurring problem, systemic issue, second-order effects.
What this skill does
## Customization
**Before executing, check for user customizations at:**
`~/.claude/PAI/USER/SKILLCUSTOMIZATIONS/SystemsThinking/`
If this directory exists, load and apply any `PREFERENCES.md`, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults.
## MANDATORY: Voice Notification (REQUIRED BEFORE ANY ACTION)
**You MUST send this notification BEFORE doing anything else when this skill is invoked.**
1. **Send voice notification:**
```bash
curl -s -X POST http://localhost:31337/notify \
-H "Content-Type: application/json" \
-d '{"message": "Running the WORKFLOWNAME workflow in the SystemsThinking skill to ACTION"}' \
> /dev/null 2>&1 &
```
2. **Output text notification:**
```
Running the **WorkflowName** workflow in the **SystemsThinking** skill to ACTION...
```
**This is not optional. Execute this curl command immediately upon skill invocation.**
---
# SystemsThinking Skill
Structured analysis of complex systems — the tools that reveal *why the same problem keeps coming back* and *where a small change produces a large result*. Grounded in Donella Meadows, Peter Senge, Jay Forrester, Russell Ackoff, and the Santa Fe Institute tradition.
Systems thinking is the difference between treating symptoms (patch the bug) and fixing structure (change the feedback loop that keeps producing the bug). Most "debug it harder" attempts fail because they operate at the event layer; the real cause lives 3-4 layers below, in the structure that generates events.
## Core Concept
A **system** is a set of elements interconnected in a way that produces a characteristic behavior over time. Change the elements, often nothing happens. Change the interconnections or the purpose, and behavior shifts dramatically.
Five axioms this skill operates on:
1. **Behavior is generated by structure.** If the same outcome keeps happening, the cause is structural, not a series of unrelated incidents.
2. **Events are visible; structure is not.** Most analysis stops at events. Systems thinking walks down.
3. **Feedback loops are the basic unit.** Every persistent pattern is one of a small number of loop archetypes.
4. **High-leverage interventions are usually counterintuitive.** The obvious fix often makes the problem worse (policy resistance, shifting the burden, fixes that fail).
5. **You can't optimize a part of a system — you can only improve the system.** Local optimization often degrades global performance.
## Use / Win
**When to use:**
- **Recurring problems** — the same kind of bug, incident, deadline slip, or conflict keeps appearing. Event-level fixes are not working.
- **Unintended consequences** — a "fix" produced a new problem, or made the original worse.
- **System design** — before committing to an architecture, product strategy, organization structure, or policy.
- **Debugging systemic issues** — distributed-system flakiness, performance cliffs, reliability decay, tech-debt accretion.
- **Strategy** — understanding where competition, demand, adoption, or resistance actually comes from.
- **Policy, incentives, organization design** — any environment where human behavior is an input.
- **Before a large intervention** — run the causal loop first; intended effects are rarely the only effects.
**What you win:**
- **Structural causes** instead of blame-the-nearest-event. The real lever is almost never where the symptom appeared.
- **Archetype recognition** — most organizational and technical pathologies match one of ~10 patterns. Naming the pattern unlocks the canonical intervention.
- **Leverage-point identification** — Meadows' 12 leverage points, ordered. Parameters are low leverage; paradigms are highest. Knowing where to push is the whole game.
- **Unintended-consequence preview** — causal loops let you simulate second- and third-order effects before shipping the change.
- **Durable fixes** — structural changes don't regress the way symptom patches do.
**Default mental model:** At Extended+ effort on anything with recurring behavior, organizational dynamics, or cross-component coupling, systems thinking is not optional enrichment — it's how you find the fix that sticks.
## Workflow Routing
Route to the appropriate workflow based on the request.
| Workflow | Trigger | File |
|----------|---------|------|
| **Iceberg** | "iceberg model", "structural cause", "why does this keep happening", walk from symptom down to structure | `Workflows/Iceberg.md` |
| **CausalLoop** | "causal loop", "feedback loop", "connection circle", "map relationships", build a CLD | `Workflows/CausalLoop.md` |
| **FindArchetype** | "systems archetype", "recognize this pattern", "fixes that fail", "shifting the burden", "tragedy of the commons" | `Workflows/FindArchetype.md` |
| **FindLeverage** | "leverage point", "where to intervene", "highest-leverage change", Meadows' 12 | `Workflows/FindLeverage.md` |
| **ConceptMap** | "concept map", "map the entities", "relationship map", Novak-style mapping | `Workflows/ConceptMap.md` |
## Quick Reference
- **5 workflows** — Iceberg, CausalLoop, FindArchetype, FindLeverage, ConceptMap
- **Iceberg layers (top to bottom):** Events → Patterns → Structures → Mental Models
- **Feedback loop types:** Reinforcing (R) — amplifying / exponential; Balancing (B) — goal-seeking / stabilizing
- **Archetype count:** ~10 canonical patterns (Senge, Braun)
- **Leverage points:** 12 levels, from parameters (weakest) to paradigm transcendence (strongest) — Meadows
**Context files (loaded on demand):**
- `Foundation.md` — Meadows, Senge, Forrester, Ackoff, Capra; canonical definitions
- `Archetypes.md` — the 10 systems archetypes with structure, recognition signs, canonical intervention
- `LeveragePoints.md` — Meadows' 12 leverage points with worked examples
## Integration
**Depends on:** nothing — standalone analytical skill.
**Works well with:**
- **RootCauseAnalysis** — RCA is event-layer and pattern-layer; SystemsThinking continues down to structure and mental models. Pair them for deep incident analysis.
- **FirstPrinciples** — decompose to axioms, then use SystemsThinking to see how axioms interconnect.
- **IterativeDepth** — rotates lenses; SystemsThinking is the structural lens.
- **BeCreative / Ideate** — generate intervention candidates after identifying the leverage point.
- **Art** — render causal loop diagrams, iceberg diagrams, concept maps.
## Examples
**Example 1: Recurring incidents**
```
User: "we keep getting paged for the same class of timeout"
→ Iceberg workflow
→ Events: 6 pages in 3 weeks
→ Patterns: all during deploy windows, all touching payments service
→ Structure: auto-scaler cold-start latency > health-check timeout during deploys
→ Mental model: "deploys are safe if tests pass" — but health checks aren't in the test path
→ Fix is structural, not another retry
```
**Example 2: Strategy**
```
User: "why does adding engineers slow us down past team size 12?"
→ FindArchetype workflow
→ Match: "Limits to Growth" archetype
→ Reinforcing loop: more engineers → more output → more hiring
→ Balancing loop: team size → coordination cost → per-engineer output ↓
→ Canonical intervention: attack the balancing loop (coordination mechanism), not the reinforcing one (stop hiring)
```
**Example 3: Unintended consequences preview**
```
User: "we're about to add a rate limit to stop abuse"
→ CausalLoop workflow
→ Build CLD of users, abusers, support load, legitimate traffic
→ Surface: balancing loop (rate limit ↓ abuse), reinforcing loop (rate limit → legit users retry → total load ↑)
→ Recommend: rate-limit per-identity with reputation scoring, not per-IP
```
## Best Practices
1. **Always walk the iceberg before intervening.** Even if you end up fixing at the event layer, knowing the structural cause tells you whether your fix is durable.
2. **Draw the loops.** Causal loops are almost always clearer on paper than in prose. UseRelated in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".