hanneseichblatt.de

Towards an AI Collaboration Skill Tree

· File history

Previous posts established the four collaboration patterns and mapped how organizations onboard agent colleagues. What’s missing is the individual’s instrument: a map of where you are, what’s locked, what to unlock next.

RPG players know the skill tree. You pick a path, invest points, unlock gates, specialize. Prerequisites are encoded—no fireball until you’ve mastered spark. The tree tells you what to learn, in what order, and what becomes possible. AI adoption needs the same structure.

The Tree

graph LR F_MODE(["Foundation"]):::foundation_mode --> L_MODE(["Lookup"]):::lookup_mode --> W_MODE(["Workshop"]):::workshop_mode --> C_MODE(["Companion"]):::companion_mode --> M_MODE(["Mission"]):::mission_mode F_MODE --> F1[AI Literacy]:::foundation_skill & F2[Prompt Construction]:::foundation_skill L_MODE --> L1[Precision Querying]:::lookup_skill & L2[Output Validation]:::lookup_skill & L3[Search Routing]:::lookup_skill W_MODE --> W1[Goal Articulation]:::workshop_skill & W2[Iterative Refinement]:::workshop_skill & W3[Role Framing]:::workshop_skill & W4[Session Architecture]:::workshop_skill C_MODE --> C1[Context Architecture]:::companion_skill & C2[Trust Calibration]:::companion_skill & C3[Norm Encoding]:::companion_skill & C4[Relationship Maintenance]:::companion_skill M_MODE --> M1[Task Decomposition]:::mission_skill & M2[Success Criteria]:::mission_skill & M3[Checkpoint Design]:::mission_skill & M4[Risk Scoping]:::mission_skill classDef foundation_mode fill:#d1d5db,color:#374151,stroke:#9ca3af,stroke-width:2px classDef lookup_mode fill:#bfdbfe,color:#1e40af,stroke:#3b82f6,stroke-width:2px classDef workshop_mode fill:#a7f3d0,color:#065f46,stroke:#10b981,stroke-width:2px classDef companion_mode fill:#e9d5ff,color:#581c87,stroke:#a855f7,stroke-width:2px classDef mission_mode fill:#fecaca,color:#7f1d1d,stroke:#ef4444,stroke-width:2px classDef foundation_skill fill:#f3f4f6,color:#374151 classDef lookup_skill fill:#eff6ff,color:#1e40af classDef workshop_skill fill:#ecfdf5,color:#065f46 classDef companion_skill fill:#faf5ff,color:#581c87 classDef mission_skill fill:#fee2e2,color:#7f1d1d

Reading the Tree

Foundation is the prerequisite for everything else. AI Literacy means knowing how language models actually work—not the math, but the failure modes: what hallucination looks like, where the model is confident versus extrapolating, why prompt structure matters. Prompt Construction translates that understanding into queries that get what you need.

Lookup is the first pattern. Precision Querying: scoping a question completely enough that one exchange suffices. Output Validation follows—evaluating responses critically, not just accepting them. Search Routing: matching model or tool to query type. Sounds obvious until you’re routing everything through your most expensive option by default.

Workshop requires a different articulation. Goal Articulation—describing “done” without specifying every step—is the unlock. Without it, you’re still in Lookup regardless of session length. Then: Iterative Refinement (steering through rounds without losing direction), Role Framing (positioning the agent: reviewer, implementer, adversarial critic), and Session Architecture (structuring complex sessions deliberately rather than letting them drift).

Companion needs Workshop’s framing and structure, not just iteration. Context Architecture is core: persistent context that works—CLAUDE.md files, system prompts, knowledge libraries an agent inherits. Trust Calibration is where most underinvest: mapping where the agent is reliable and where it isn’t, then adjusting. Norm Encoding follows: team standards as reusable agent instructions. Relationship Maintenance keeps accumulated context accurate as things change.

Mission requires Trust Calibration and Relationship Maintenance. You can’t safely delegate autonomously until you know where the agent makes good judgments. Task Decomposition: breaking complex goals into well-scoped autonomous sub-tasks. Success Criteria: specifying “done” precisely enough for autonomous execution. Checkpoint Design: knowing when to interrupt versus let the agent run. Risk Scoping closes the loop—pre-scoping the agent’s authority before sending it off, not after something unintended.

The Pattern in the Tree

The tree encodes an insight that isn’t obvious until you draw it: as you progress, the level of abstraction rises.

In Lookup, you specify everything. In Workshop, a goal. In Companion, accumulated context fills the gaps. In Mission, you operate at the level of intent.

That’s why you can’t skip levels—it isn’t bureaucracy. Each pattern requires mastering the abstraction of the one before. Skip Companion for Mission and you typically haven’t calibrated trust: you don’t know where to set checkpoints because you’ve never mapped where the agent is reliable. You don’t get Mission outcomes; you get Mission-shaped chaos.

How Organizations Use This

The tree is shared language for assessing where individuals are and designing what’s next. At team level:

Assess honestly. Where are people, actually? Most teams are heavy on Lookup, some Workshop, sparse beyond. The distribution matters more than the average.

Find the bottleneck. Usually Goal Articulation. People who can’t specify “done” without specifying every step never get into Workshop, regardless of model capability.

Design progressions, not events. The tree tells you what to teach first: Foundation before Lookup, Output Validation before Goal Articulation, Session Architecture before Context Architecture. One-day workshops that skip prerequisites don’t build skills; they build confusion.

Track capability, not tooling. Which tools people use is secondary. Which nodes they can reliably execute determines what’s possible.

One thing the tree doesn’t show: the org-level skills running alongside individual progression. Standards Curation, Adoption Coaching, Infrastructure Design live at the team and architect level. They’re what makes individual skill development compound across an organization rather than staying local. A separate tree, a future post.

Once again thanks to Jakob, this time for the inspiration to use skill trees in thinking about organizations.


See all posts in the AI Collaboration series →

Written in collaboration with Claude, implementing the Workshop pattern described above.