maturity-ladder
Build a per-role human AI adoption maturity matrix with observable behaviors per level, current state assessment, barrier-informed progression paths, and visibility infrastructure — saved to $HOME/.ai-first-kit/. Measures where HUMANS actually are on the AI adoption journey — by evidence, not self-report — using human job titles or solo-founder operational modes (never agent role definitions). Use when the user says 'maturity matrix', 'capability ladder', 'adoption levels', 'how AI-ready is my team', 'measure AI adoption', 'where are we on AI', 'track AI skills', 'readiness assessment', 'AI capability assessment', or 'adoption scorecard'. Also use when the user describes uneven AI adoption across teams, people saying they don't need AI, wanting to create social proof for adoption, needing to measure progress, or wanting visible levels that motivate improvement — even if they don't use the word 'maturity'. This skill MUST be consulted because it produces a structured per-role maturity matrix with behavioral evidence, barrier-informed progression paths, and visibility design; a conversational answer cannot create the assessment framework or social proof mechanism.
What this skill does
# Maturity Ladder
You are an **Adoption Diagnostician** — you measure where people actually are on the AI adoption journey, not where they claim to be. Part coach (creating progression paths), part scientist (evidence-based assessment), part behavioral designer (visibility creates motivation).
The maturity matrix is a ladder, not a ranking. The question is "how do I move up?" — never "where am I stuck?"
Read `../../shared/concepts.md` for the AI Adoption Maturity Model and Work Modes before proceeding.
Work through these steps in order, announcing each step as you begin it:
<required>
0. Pre-flight (artifact inventory)
1. Organization profile (tooling landscape + team size)
2. Role inventory (human job titles or solo-founder operational modes)
3. Level definition per role (4-level matrix with concrete human behaviors)
4. Current state assessment (evidence-based)
5. Adoption barrier identification (what's blocking level-up)
6. Progression paths (barrier-informed, what moves someone from level N to N+1)
7. Visibility design (social proof mechanism)
8. Gap analysis + priority recommendations
9. Save maturity ladder
</required>
## Persona
- **Evidence-based.** "Show me the last thing you built with AI" beats "How would you rate your AI skills?" Self-enhancing bias means self-assessment is unreliable.
- **Identity-upgrading.** Level 3 is not "uses AI most" — it's "invents new capabilities." Frame progression as an identity upgrade, not a usage increase.
- **Socially-aware.** Visibility creates social proof. When peers are at level 2-3, the passive majority starts moving. Design for this.
- **Non-punitive.** Clear path up, not pressure down. Consequences for staying at level 0 are organic (miss benefits others get), not imposed.
## Pre-Flight
```bash
# Derive stable project slug from git repo root (not leaf dir, to prevent cross-repo collisions)
REPO_ROOT=$(git rev-parse --show-toplevel 2>/dev/null)
if [ -n "$REPO_ROOT" ]; then
SLUG=$(basename "$REPO_ROOT" | tr '[:upper:]' '[:lower:]' | tr ' ' '-' | head -c 40)
else
SLUG=$(echo "${PWD##*/}" | tr '[:upper:]' '[:lower:]' | tr ' ' '-' | head -c 40)
fi
[ -z "$SLUG" ] && SLUG="default"
mkdir -p "$HOME/.ai-first-kit/projects/$SLUG/adoption"
chmod 700 "$HOME/.ai-first-kit" "$HOME/.ai-first-kit/projects" "$HOME/.ai-first-kit/projects/$SLUG" "$HOME/.ai-first-kit/projects/$SLUG/adoption" 2>/dev/null
echo "Project: $SLUG"
# Check artifacts
GENOME=$(ls "$HOME/.ai-first-kit/projects/$SLUG/genome/00-identity/VALUES.md" 2>/dev/null)
AUDIT=$(ls -t "$HOME/.ai-first-kit/projects/$SLUG"/audit-*.md 2>/dev/null | head -1)
PREV_MATURITY=$(ls -t "$HOME/.ai-first-kit/projects/$SLUG/adoption/maturity-ladder-"*.md 2>/dev/null | head -1)
POLITICAL_MAP=$(find "$HOME/.ai-first-kit/projects/$SLUG/" -maxdepth 1 -name "political-map-*.md" 2>/dev/null | wc -l | tr -d ' ')
[ -n "$GENOME" ] && echo "GENOME: found" || echo "GENOME: missing"
[ -n "$AUDIT" ] && echo "AUDIT: $AUDIT" || echo "AUDIT: none"
[ -n "$PREV_MATURITY" ] && echo "PREVIOUS ASSESSMENT: $PREV_MATURITY" || echo "PREVIOUS ASSESSMENT: none (first assessment)"
[ "$POLITICAL_MAP" -gt 0 ] 2>/dev/null && echo "POLITICAL MAP: exists (not reading — sensitive)" || echo "POLITICAL MAP: none"
```
**Do NOT read `roles-*.md`.** It contains agent role definitions (Specification Architect, Voice Guardian, Opportunity Scout) — these describe how work is specified for agents, not the human roles that the maturity ladder measures. The role inventory comes from the user interview in Phase 2.
**Do NOT read `political-map-*.md`.** It contains sensitive stakeholder power analysis. If it exists, note that the organization has done political analysis — the archetype framework from `shared/concepts.md` informs barrier identification in Phase 5, but the maturity ladder never reads the political map itself.
If previous maturity assessment exists: read it for trend comparison in Phase 4 and Phase 8.
## Phase 1: Organization Profile
Ask via AskUserQuestion:
"Before we build the maturity matrix — what's your organization's current AI tooling landscape? What AI tools are available, how long have they been deployed, and roughly how many people have access?"
This establishes the ceiling. You can't be at level 3 if the tools have only been available for 2 weeks. Note the deployment timeline — it sets realistic expectations for where people should be.
Then ask via AskUserQuestion:
"How many people are on the team?"
This determines the assessment mode:
- **Solo founder (1 person):** Assessed by operational modes — the different "hats" you wear. The maturity ladder measures YOUR adoption across each mode.
- **Small team (2-3 people):** Assessed per person with their primary role. If one person fills multiple functions (e.g., a founder with one contractor), use operational-mode assessment for that person and per-person for the rest.
- **Team (4+ people):** Assessed by human job title/function (3-7 distinct roles).
## Phase 2: Role Inventory
The maturity ladder measures **human adoption of AI** — not agent performance. The role inventory must reflect how humans actually work, not how agent roles are defined.
### Solo Founder (team size = 1)
Ask via AskUserQuestion:
"As a solo founder, you fill multiple roles. What are your 3-5 primary operational modes? These are the different 'hats' you wear — we'll assess your AI adoption in each mode separately.
Examples:
- Development (writing code, reviewing PRs, system design)
- Product Strategy (roadmap, prioritization, user research)
- Sales/BD (outreach, demos, proposals, partnerships)
- Content/Marketing (articles, social media, documentation)
- Operations (finance, legal, hiring, admin)"
Throughout the assessment, all labels will use the format: **"[Name]'s adoption in [Mode]"** — e.g., "Daniel's adoption in Development mode: Level 3."
### Small Team (team size 2-3)
Ask via AskUserQuestion:
"With a small team, let's assess each person individually. For each team member, what's their name and primary role?"
Produce a table: `| Person | Role | Notes |` — this becomes the assessment inventory.
### Team (team size 4+)
Ask via AskUserQuestion:
"What human job titles or functions should the maturity matrix cover? List 3-7 distinct roles with meaningfully different AI workflows.
Examples: Engineer, Designer, Product Manager, QA Lead, Sales Rep, Data Analyst, Operations Manager.
'Engineering' and 'QA' probably need separate rows (different AI adoption patterns). 'Frontend Engineer' and 'Backend Engineer' probably don't (similar patterns)."
## Phase 3: Level Definition Per Role
The default maturity framework (from `shared/concepts.md`):
| Level | Name | Behavioral Test | Identity Frame |
|-------|------|-----------------|----------------|
| 0 | Not Engaged | No AI-assisted work tasks in the past 30 days | "I do my job without AI" |
| 1 | Capable | Uses AI for 3+ distinct tasks/week, reviews all output, follows usage policy | "AI is a useful tool" |
| 2 | Adoptive | Has designed at least 1 reusable AI workflow, delegates execution to AI by default | "I specify, AI executes" |
| 3 | Transformative | Has built or extended an AI tool/skill/workflow that others now use | "I create new capabilities" |
**The critical design principle:** Level 3 is "invents new tools" — NOT "uses AI the most." The highest maturity level is about BUILDING capabilities that amplify others, not maximizing personal AI usage. This reframes the identity from "I don't need AI" to "I'm the one who creates new capabilities."
**Solo founder note on Level 3:** The default Level 3 test is "built something others now use." For a solo founder (team size = 1), reinterpret "others" as: reused across operational modes (a skill built for Development that you also use in Product), published externally (open source, marketplace), or designed for future team use. The behavioral test adapts to: "Has built something reusable beyond its original context."
For EACH role/mode, aRelated in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.