Skip to main content
Skills are the building blocks of 2bd. Ada is the central orchestrator that owns all logic. Entity skills and aliases dispatch to Ada.

Skill architecture

Skills use a flat structure with naming conventions:
.claude/skills/
├── ada/                      # Orchestrator - owns all logic
│   ├── SKILL.md
│   └── references/
│       ├── plan/daily.md     # Ritual sequences
│       ├── project/create.md # Entity actions
│       └── person/onboard.md
├── project/                  # Alias → dispatches to Ada
├── person/                   # Alias → dispatches to Ada
├── planning/                 # Alias → /ada plan
├── _assistant-goals/         # Internal assistant
└── _util-resolve-date/       # Internal utility
PrefixTypeUser-invokable
(none)Entity/AliasYes
_assistant-*AssistantNo
_util-*UtilityNo

Skill file structure

Each skill lives in its own folder with SKILL.md:
---
name: skill-name
description: What this skill does and when to use it
disable-model-invocation: false
allowed-tools: Read, Write, Bash(*)
argument-hint: "[argument description]"
---

# Skill Instructions

Instructions Claude follows when invoked.

Writing style

Skills read as prose describing what happens, not scripts with directives. Do:
  • Write descriptive prose: “Load the vault path from context. Validate the structure exists.”
  • Organize into sections describing flow
  • Reference context naturally
Don’t:
  • Use template syntax: {{VAULT}}, {{#if}}
  • Use imperative directives: “Ask:”, “Check:”, numbered steps
  • Include bash code blocks for file operations

Creating a skill

  1. Create folder: .claude/skills/{skill-name}/
  2. Add SKILL.md with frontmatter
  3. Write instructions as prose
  4. Test: claude skill run {skill-name}

Assistant architecture

Assistants are conceptual domains that flow through all timescales. Each assistant has its own section in templates and its own phase in rituals.
Ritual Structure:
├── Common: Setup
├── Assistant: Brief
├── Assistant: Goals
├── Assistant: Calendar
├── Assistant: Journal
├── Assistant: Achievements
├── Assistant: Relationships
├── Assistant: Projects
├── Common: Compose
├── Common: Persist
└── Common: Learning
Assistants are processed sequentially. Each assistant:
  • Has a consistent ## {Assistant} section in templates
  • Has a phase file per timescale in rituals
  • Cascades independently through timescales

Assistant matrix

AssistantDailyWeeklyQuarterlyYearly
BriefDay shape + context from WeekWeek overview + context from QuarterQuarter context from YearYear context + prior year synthesis
Goals1-3-5 (1 big, 3 medium, 5 small)Major Moves (which Quests to advance)Quests (90-day goals)Compass (Life Compass, 3-Year Sketch, Why, Anti-Goals)
CalendarDaily Meetings (prep, context, notes)Weekly Meetings (week’s key meetings)
JournalCheck-In (energy, mindset, intention)Pulse Check (patterns, growth edge)Pivot (adjust approach, themes)Vision (leadership identity, development focus)
AchievementsCapture (log wins)Acknowledge (synthesize daily wins)Leverage (what wins enable)Celebrate (year-defining achievements)
RelationshipsTouchpoints (birthdays, personal moments)Connections (1:1 prep, notes)Network (key relationships, stakeholders)Circle (inner circle, mentors, sponsors)
ProjectsTasks (active project tasks)Progress (status updates)Portfolio (active projects, health)
Use for timescales where the assistant does not apply.

Adding a new assistant

  1. Define the matrix row — For each timescale, define the section name (## {AssistantName}) and intent
  2. Add template sections — Add ## {AssistantName} to each Captive template where the assistant applies
  3. Create phase files — For each timescale, create .claude/skills/ritual-planning-{timescale}/references/{NN}-{assistantname}.md
  4. Update SKILL.md — Add the new phase to the ritual’s table of contents
  5. Update template contract — Add the new section to the template contract in SKILL.md

Coach system

Each assistant has a coach that provides guidance and learns from usage.

Coach files

ComponentPathPurpose
GuidanceSystemic/Coaching/{Assistant}/{timescale}.mdStatic guidance, prompts, agent selection
Insights (raw)Synthetic/Coaching/{Assistant}/insights.mdObservations, clusters
Insights (crystallized)Semantic/Coaching/{Assistant}/insights.mdGraduated, human-validated learnings

Learning flow

  1. Each assistant phase captures observations → Synthetic/Coaching/{Assistant}/insights.md
  2. Observations auto-cluster with confidence scoring (0-5)
  3. Clusters graduate when confidence ≥ 4.5 AND stable for 3+ sessions
  4. User crystallizes insight → Semantic/Coaching/{Assistant}/insights.md
  5. Crystallized insights inform guidance updates