Skip to main content

Command Guide

Version: 0.3.6-beta | Updated: 2026-04-11

Claude Code only: The /kmgraph: prefix requires Claude Code with this plugin installed. Other IDEs access equivalent functionality through MCP tools โ€” see INSTALL.md for platform-specific setup.

About Commands on Other Platformsโ€‹

These commands are designed as reference documentation for any LLM:

  • Claude Code: Invoke as slash commands (e.g., /kmgraph:capture-lesson)
  • Other platforms: Copy the command prompt into your LLM. Substitute ${CLAUDE_PLUGIN_ROOT} with your actual project path
  • No-tool LLMs: Commands serve as workflow documentation โ€” follow steps manually

Commands work across platforms, but full automation is Claude Code-specific.


โš ๏ธ DEPRECATED PATTERN (v0.2.1-beta): Thick commands (200+ lines) are no longer the standard pattern.

New pattern: Thin dispatchers (80-150 lines) + execution logic in agents/. See CONCEPTS.md ยง Four-Layer Architecture for overview.

Why changed: Reduces duplication, improves maintainability, enables platform portability.

Migration: Old thick-command pattern remains functional but deprecated. New commands should use thin-dispatcher + agent pattern.


Quick Navigationโ€‹


I Want To...โ€‹

Getting Startedโ€‹

  • Set up a new knowledge graph โ†’ /kmgraph:init
  • See what's in my knowledge graph โ†’ /kmgraph:status
  • Document what I just learned โ†’ /kmgraph:capture-lesson
  • Find something I documented before โ†’ /kmgraph:recall "search query"

Daily Useโ€‹

  • Sync lessons to the knowledge graph โ†’ /kmgraph:update-graph
  • Summarize this conversation โ†’ /kmgraph:session-summary
  • Add a new category (e.g., security, ml-ops) โ†’ /kmgraph:add-category
  • See my chat history โ†’ /kmgraph:extract-chat
  • Update plugin documentation โ†’ /kmgraph:update-doc --user-facing

Team Collaborationโ€‹

  • Share knowledge safely โ†’ /kmgraph:config-sanitization
  • Check for sensitive data before sharing โ†’ /kmgraph:check-sensitive
  • Link lessons to GitHub issues โ†’ /kmgraph:link-issue

Project Transitions & Onboardingโ€‹

  • Create comprehensive handoff documentation โ†’ /kmgraph:handoff
  • Set up for new developer โ†’ /kmgraph:setup-platform

Note: The term "issues" in this guide refers to GitHub Issues โ€” a platform feature for tracking bugs, feature requests, and enhancements. This is distinct from "knowledge graph issues" (meta-issues) or "lessons learned issues" (problems documented in the KG).

Working with Multiple Knowledge Graphsโ€‹

  • View all configured knowledge graphs โ†’ /kmgraph:list
  • Switch to a different knowledge graph โ†’ /kmgraph:switch

Complex Problem Trackingโ€‹

  • Track a multi-attempt bug โ†’ /kmgraph:meta-issue
  • Start structured issue tracking with documentation and Git branch โ†’ /kmgraph:start-issue-tracking
  • Sync progress to plans and GitHub โ†’ /kmgraph:update-issue-plan

Memory Managementโ€‹

  • Free up MEMORY.md token budget โ†’ /kmgraph:archive-memory
  • Bring back archived context โ†’ /kmgraph:restore-memory
  • Run the full sync pipeline in one command โ†’ /kmgraph:sync-all

Browse Commands by Categoryโ€‹

=== "Setup & Configuration"

Get the knowledge graph running and configure how it works.

- [๐ŸŸข `/kmgraph:init`](#-kmgraphinit) โ€” Initialize a new knowledge graph
- [๐ŸŸก `/kmgraph:init-personal-kg`](#-kmgraphinit-personal-kg) โ€” Create personal KG for cross-project lessons
- [๐ŸŸก `/kmgraph:list`](#-kmgraphlist) โ€” View all configured knowledge graphs
- [๐ŸŸก `/kmgraph:switch`](#-kmgraphswitch) โ€” Switch to a different knowledge graph
- [๐ŸŸก `/kmgraph:add-category`](#-kmgraphadd-category) โ€” Add custom categories
- [๐ŸŸก `/kmgraph:config-sanitization`](#-kmgraphconfig-sanitization) โ€” Set up safety features for team sharing

=== "Capture & Document"

Document lessons, capture history, and summarize sessions.

- [๐ŸŸข `/kmgraph:capture-lesson`](#-kmgraphcapture-lesson) โ€” Capture problems solved and patterns discovered
- [๐ŸŸก `/kmgraph:extract-chat`](#-kmgraphextract-chat) โ€” Export chat history to markdown
- [๐ŸŸก `/kmgraph:session-summary`](#-kmgraphsession-summary) โ€” Summarize important work sessions

=== "Search & Sync"

Find knowledge and keep the graph synchronized.

- [๐ŸŸข `/kmgraph:status`](#-kmgraphstatus) โ€” Check current knowledge graph status
- [๐ŸŸข `/kmgraph:recall`](#-kmgraphrecall) โ€” Search across all knowledge entries
- [๐ŸŸก `/kmgraph:update-graph`](#-kmgraphupdate-graph) โ€” Extract lessons into knowledge graph
- [๐ŸŸก `/kmgraph:update-doc`](#-kmgraphupdate-doc) โ€” Update documentation with changes
- [๐Ÿ”ด `/kmgraph:sync-all`](#-kmgraphsync-all) โ€” Run complete synchronization pipeline

=== "Team & Sharing"

Share knowledge safely with team members.

- [๐ŸŸก `/kmgraph:check-sensitive`](#-kmgraphcheck-sensitive) โ€” Scan for sensitive data before sharing
- [๐Ÿ”ด `/kmgraph:link-issue`](#-kmgraphlink-issue) โ€” Connect lessons to GitHub issues

=== "Advanced Issues"

Track complex, multi-attempt problems systematically.

- [๐Ÿ”ด `/kmgraph:meta-issue`](#-kmgraphmeta-issue) โ€” Track multi-attempt bugs and features
- [๐Ÿ”ด `/kmgraph:start-issue-tracking`](#-kmgraphstart-issue-tracking) โ€” Systematic issue tracking with Git branches
- [๐Ÿ”ด `/kmgraph:update-issue-plan`](#-kmgraphupdate-issue-plan) โ€” Sync progress with GitHub and plans

=== "Memory Management"

Manage MEMORY.md size and archive old patterns.

- [๐Ÿ”ด `/kmgraph:archive-memory`](#-kmgrapharchive-memory) โ€” Archive old patterns from MEMORY.md
- [๐Ÿ”ด `/kmgraph:restore-memory`](#-kmgraphrestore-memory) โ€” Restore archived context

Essential Commandsโ€‹

๐ŸŸข /kmgraph:initโ€‹

Purpose: Initialize a new knowledge graph with wizard-based setup

When to use:

  • First time setup on any project
  • Starting a new project that needs its own knowledge graph
  • Creating a separate KG for different work (e.g., personal vs. team)
  • After a plugin update โ€” verify/upgrade existing KG to current version

What it does:

  1. Asks for KG name and storage location (project-local, personal, or custom path)
  2. Prompts for category selection (architecture, process, patterns, debugging, or custom)
  3. Asks for optional custom prefixes per category
  4. Creates directory structure (knowledge/, lessons-learned/, decisions/, sessions/, chat-history/)
  5. Copies templates from the plugin
  6. [NEW in v0.2.2-beta] Offers to create a personal KG at ~/.kmgraph/ for cross-project lessons (see /kmgraph:init-personal-kg)
  7. [NEW in v0.0.10.2] Optionally backfills from existing project context (README, CHANGELOG, lessons, decisions, chat history)
  8. Optionally installs a git post-commit hook for lesson capture suggestions
  9. Updates .gitignore based on chosen git strategy
  10. Registers the KG in ~/.claude/kg-config.json and sets it as active

Time: 2-3 minutes

Example:

/kmgraph:init

# Claude asks:
# - What should this knowledge graph be called?
# - Where should it be stored? (project-local / personal / custom)
# - Which categories do you want to include?
# - Would you like to backfill from existing project context? (y/N)
# (If yes: scans README, CHANGELOG, lessons-learned/, decisions/, chat-history/)
# - Install post-commit hook? (y/n)
# - Git strategy for each category? (commit/ignore)

Backfill Feature: When you enable backfill, the system extracts existing knowledge from your project:

  • README.md โ€” Project overview and key concepts
  • CHANGELOG.md โ€” Released features and changes
  • lessons-learned/ โ€” Existing lessons (if any)
  • decisions/ โ€” Architecture Decision Records
  • chat-history/ โ€” Extracted chat logs

The system presents candidates for your review before creating entries.

After backfill: If backfill was used, the knowledge graph now contains a full set of imported content. This is a good time to build the search index so all that content is immediately searchable by relevance. Run /kmgraph:sync-all and accept the index prompt, or call kg_fts5_rebuild directly from the MCP tool panel.

Next steps: Run /kmgraph:status to verify setup


๐ŸŸก /kmgraph:init-personal-kgโ€‹

Purpose: Create or register a personal knowledge graph for cross-project lessons

When to use:

  • After running /kmgraph:init and skipping the personal KG offer
  • When you want a dedicated place for workflow lessons, cross-project gotchas, and personal ADRs that apply across all projects, not just the current one

What it does:

  1. Creates ~/.kmgraph/ with standard directory structure
  2. Registers it as type: "personal" with name "personal" in ~/.claude/kg-config.json
  3. Copies knowledge templates (patterns, gotchas, concepts)
  4. Builds FTS5 search index for the new KG
  5. Does not change the active KG โ€” project KG remains active

After setup:

  • /kmgraph:capture-lesson shows a KG picker when โ‰ฅ2 KGs are registered
  • /kmgraph:recall searches both project and personal KGs automatically

Example:

/kmgraph:init-personal-kg

# Claude creates ~/.kmgraph/
# Registers "personal" KG (type: personal) in config
# Active KG unchanged

Related: See Personal vs Project Knowledge for when to use each.


When you run /kmgraph:init (Step 1f.2) or /kmgraph:init-personal-kg (Step 8.1), the system automatically converts cross-references in your knowledge graph to Obsidian wiki link format for seamless navigation in compatible editors.

Supported Formatsโ€‹

The wiki pass applies these auto-linkification patterns:

  • Enhancements: [[ENH-NNN]] (e.g., [[ENH-010]])
  • Architecture Decisions: [[ADR-NNN-full-title]] (e.g., [[ADR-028-postgres-over-mongodb]])
  • Lessons Learned: [[Lessons_Learned_X]] (e.g., [[Lessons_Learned_5]])
  • GitHub Issues: [#NNN](url) format (automatically applied when linking via /kmgraph:link-issue)
  • During initial /kmgraph:init setup (Step 1f.2: "Apply Obsidian wiki link formatting to cross-references")
  • During /kmgraph:init-personal-kg (Step 8.1: "Applying wiki pass to personal KG")
  • Only once โ€” controlled by the wiki_pass_complete config flag to avoid re-running on subsequent setups

Preview Changes with --dry-runโ€‹

To preview what links will be created without applying them:

/kmgraph:init --dry-run

The --dry-run mode shows which files will be modified and what cross-references will be converted, without writing any changes.

Scope & Limitationsโ€‹

  • 5 legacy lesson files without the Lessons_Learned_ prefix are excluded from auto-linking (e.g., lesson-1.md, debug-tip.md). Manual cross-references to these files still work โ€” they are fully searchable and accessible.
  • Lesson files created after v0.3.3 automatically follow the Lessons_Learned_X naming convention and are auto-linked.

Related: For naming conventions and documentation structure, see Style Guide.


๐ŸŸข /kmgraph:capture-lessonโ€‹

Purpose: Guided UX dispatcher for documenting lessons learned, problems solved, and patterns with git metadata tracking

Command refactored in v0.2.1-beta: 710 โ†’ 108 lines. Execution logic delegated to agents/ for platform portability. See CONCEPTS.md ยง Four-Layer Architecture.

When to use:

  • Just solved a problem
  • Discovered a reusable pattern
  • Fixed a tricky bug worth remembering
  • Learned something that future you will need

What it does:

Dispatches to the capture-lesson agent, which handles:

  1. [NEW in v0.2.2-beta] Snapshot gate โ€” optionally takes a lightweight session snapshot before the capture dialog, preserving the "why" at the moment of discovery (see /kmgraph:session-summary --snapshot)
  2. Checks for duplicate/similar existing lessons (pre-flight search)
  3. Asks verification questions (topic, audience, scope)
  4. Auto-detects category from keywords (architecture, debugging, process, patterns)
  5. Gathers git metadata (branch, commit hash, PR, issue number) from YAML frontmatter
  6. Guides content gathering (problem, root cause, solution, prevention)
  7. Writes the lesson file using the template from core/templates/
  8. Updates category and chronological indexes
  9. Optionally triggers /kmgraph:update-graph to extract KG entries
  10. Optionally links to a GitHub Issue via /kmgraph:link-issue

Time: 5-10 minutes (faster with practice)

Example:

/kmgraph:capture-lesson                        # โ†’ active KG
/kmgraph:capture-lesson "user level" # โ†’ personal KG (~/.kmgraph/)
/kmgraph:capture-lesson --project # โ†’ current project's KG
/kmgraph:capture-lesson --named=career-ops # โ†’ career-ops KG

# Agent guides you through:
# 1. What problem did you encounter?
# 2. What was the root cause?
# 3. How did you solve it?
# 4. How can this be prevented?

Tips:

  • Capture while the problem is fresh (don't wait)
  • Include error messages verbatim
  • Note what DIDN'T work (helps future you)
  • Level routing: use "user level" for cross-project patterns; "for this project" for codebase-specific lessons. See Personal vs Project KGs for details.

๐ŸŸข /kmgraph:statusโ€‹

Purpose: Display active knowledge graph status, stats, and quick command reference

When to use:

  • Verify setup after running /kmgraph:init
  • See recent lessons at a glance
  • Check MEMORY.md staleness
  • Quick health check on the knowledge graph

What it shows:

  • Active KG name and file path
  • Categories and git strategy
  • Last sync timestamp
  • File counts (lessons, KG entries, ADRs, sessions)
  • Warnings (stale MEMORY.md, missing paths)
  • Quick command reference for common next steps

Time: Instant

Example output:

Knowledge Graph Status
โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”

Active KG: my-project
Location: /Users/name/projects/my-app/docs/
Categories: architecture, process, patterns, debugging
Git: selective (architecture/patterns committed, process/debugging gitignored)
Last sync: 2026-02-12 15:45

Stats:
Lessons: 12 (3 new since last sync)
KG Entries: 28 patterns, 6 concepts, 4 gotchas
ADRs: 5
Sessions: 8

Quick Commands:
/kmgraph:capture-lesson โ€” Document a lesson
/kmgraph:recall "query" โ€” Search across all KG
/kmgraph:sync-all โ€” Run full sync pipeline

Tip: Supports --minimal for a one-line summary and --json for machine-readable output.


๐ŸŸข /kmgraph:recallโ€‹

Purpose: Guided UX dispatcher for searching across all project memory systems (lessons, decisions, knowledge graph, sessions)

Command refactored in v0.2.1-beta: 437 โ†’ 79 lines. Execution logic delegated to agents/ for platform portability. See CONCEPTS.md ยง Four-Layer Architecture.

When to use:

  • "I solved this before..."
  • Looking for a specific pattern or solution
  • Need to find a past architectural decision
  • Searching for context on a topic

What it searches:

Dispatches to the recall agent, which searches:

  • Lessons learned (full text)
  • Architecture decisions (ADRs)
  • Knowledge entries (patterns, gotchas, concepts)
  • Session summaries
  • MEMORY.md
  • [NEW in v0.2.2-beta] Personal KG (if registered) โ€” automatically included when a personal KG exists

Multi-KG behavior: When a personal KG is registered, recall searches both project and personal KGs by default. Results include a source label ([project] or [personal]) so origin is always clear.

Time: 1-2 seconds (single KG); 2-4 seconds (multi-KG with FTS5)

Example:

/kmgraph:recall "database timeout"
/kmgraph:recall "auth patterns" --scope=all
/kmgraph:recall "workflow patterns" --scope=personal-only

# Multi-KG result format:
# Lessons Learned (3 matches)
# 1. Debugging PostgreSQL Connection Timeouts โ€” [project: my-project]
# 2. Connection Pool Best Practices โ€” [project: my-project]
# 3. Database Timeout Patterns โ€” [personal: personal]

--scope parameter (v0.2.2-beta):

ValueBehavior
activeActive KG only (original behavior)
allActive KG + all registered KGs (auto-default when personal KG exists)
personal-onlyOnly KGs with type: personal

Level routing (v0.3.9-beta): Scope search to a specific KG without changing the active KG:

Flag / Natural LanguageSearches
--user / "user level"Only ~/.kmgraph/
--project / "for this project"Only current project's KG
--named=<kg> / KG nameOnly the named KG
/kmgraph:recall "auth patterns" --user          # personal KG only
/kmgraph:recall "database timeout" --project # current project only
/kmgraph:recall "deployment" --named=devops-kg # named KG only

Search tips:

  • Use specific terms ("PostgreSQL timeout" > "database")
  • Try synonyms if nothing found
  • Search by date: /kmgraph:recall "2024-01"
  • Search by category: /kmgraph:recall "architecture"
  • Output formats: default (summary), --format=paths (file list), --format=detailed (full context)
  • Scope override: --scope=active to restrict to project KG only

Intermediate Commandsโ€‹

๐ŸŸก /kmgraph:update-graphโ€‹

Purpose: Extract structured insights from lessons learned and sync to knowledge graph entries

When to use:

  • After creating or updating lesson-learned documents
  • When discovering new patterns or best practices
  • Before completing complex work sessions
  • Daily or weekly consolidation of captured knowledge

What it does:

  1. Identifies new or modified lessons (since last sync or last 24 hours)
  2. Reads each lesson and extracts: title, problem, solution, when-to-use triggers
  3. Checks if a matching KG entry already exists in knowledge/patterns.md (or similar)
  4. Creates new entries or updates existing ones with bidirectional links
  5. Runs data integrity audit on each new entry
  6. Checks MEMORY.md size and syncs new patterns if within token limits
  7. Commits KG and MEMORY.md changes together

Time: 1-5 minutes depending on number of lessons

Example:

/kmgraph:update-graph
/kmgraph:update-graph --lesson=Pattern_Discovery.md # Process specific lesson
/kmgraph:update-graph --auto # Skip prompts, silent mode
/kmgraph:update-graph --interactive # Review each entry before saving

Tips:

  • --auto flag is useful when called from other commands (e.g., after /kmgraph:capture-lesson)
  • --interactive flag lets you review and edit each extracted entry before saving

Cleaner conversations: When the context-mode plugin is installed and there are 10 or more lessons to process, update-graph reads the lesson files in a background process instead of inline. This keeps the conversation cleaner without changing any results. Falls back automatically if context-mode is not installed.


๐ŸŸก /kmgraph:add-categoryโ€‹

Purpose: Add a new category to an existing knowledge graph with optional custom prefix

When to use:

  • Need to track a new domain (e.g., security, ml-ops, devops)
  • Team-specific categorization needed beyond defaults
  • Organizing lessons into more granular groups

What it does:

  1. Prompts for category name (or accepts from command argument)
  2. Asks for optional prefix (e.g., "sec-" for security lessons)
  3. Asks for git strategy (commit or ignore)
  4. Creates lessons-learned/[category]/ directory
  5. Creates knowledge/[category].md KG entry file from template
  6. Updates kg-config.json with the new category
  7. Updates .gitignore if git strategy is "ignore"

Time: Under 1 minute

Example:

/kmgraph:add-category
/kmgraph:add-category security
/kmgraph:add-category ml-ops --prefix ml- --git ignore

Next steps: Capture lessons in the new category with /kmgraph:capture-lesson


๐ŸŸก /kmgraph:session-summaryโ€‹

Purpose: Create a summary of the current active chat session

When to use:

  • Before context limits are reached (~180K tokens)
  • At major milestones during long sessions
  • Before handing work to another developer
  • End of a productive work session to preserve context

What it does:

  1. Auto-detects session scope from conversation context since last summary
  2. Classifies session type (feature development, debugging, planning, research)
  3. Generates summary with: goals, problems solved, files touched, commits, lessons, next steps
  4. Handles duplicate detection โ€” offers to update existing or create new summary
  5. Saves to {active_kg_path}/sessions/YYYY-MM/YYYY-MM-DD_description.md
  6. Updates sessions README index
  7. Optionally triggers lesson capture and KG update

[NEW in v0.2.2-beta] Snapshot mode (--snapshot): Lightweight mid-session capture. Runs before any capture command when the user opts in. Appends to today's session file (or creates one) without a user review gate. Optional git history (--snapshot --git). Used by capture-lesson, create-adr, and start-issue-tracking to preserve the "why" at the moment of discovery.

Time: Under 10 seconds (full mode); under 5 seconds (snapshot mode without git)

Example:

/kmgraph:session-summary                        # โ†’ active KG
/kmgraph:session-summary --auto # Skip confirmation, save immediately
/kmgraph:session-summary --snapshot # Mid-session save without review gate
/kmgraph:session-summary "user level" # โ†’ personal KG (~/.kmgraph/sessions/)
/kmgraph:session-summary --project # โ†’ current project's KG sessions/
/kmgraph:session-summary --named=career-ops # โ†’ career-ops KG sessions/

Tips:

  • Captures git commits automatically โ€” no need to list them manually
  • Auto-suggests summary when context approaches ~180K tokens
  • If a session summary was saved earlier in the session (via a capture gate), wrap-up only adds closing context

๐ŸŸก /kmgraph:create-adrโ€‹

Purpose: Create Architecture Decision Records with auto-filled git metadata, sequential numbering, and index auto-update

When to use:

  • Making a significant architecture, process, or technology decision
  • Choosing between competing approaches and want to document the rationale
  • After a decision has already been made and needs to be formally recorded
  • When a lesson learned reveals a decision that should be captured as an ADR

What it does:

  1. [NEW in v0.2.2-beta] Snapshot gate โ€” optionally takes a lightweight session snapshot before the ADR dialog, preserving the "why" at the moment the decision was made (see /kmgraph:session-summary --snapshot)
  2. Resolves active KG path from ~/.claude/kg-config.json
  3. Auto-increments ADR number (scans existing ADR-NNN-*.md files, uses highest + 1)
  4. Collects git metadata automatically (author, email, branch, commit SHA, PR/issue numbers)
  5. Interactive wizard: title, status (Proposed/Accepted/Deprecated/Superseded), category (Architecture/Process/Technology), context, decision, rationale, consequences, related lessons
  6. Generates filename (ADR-{NNN}-{slug}.md) and presents summary for user confirmation before writing
  7. Creates ADR file from core/templates/decisions/ADR-template.md with fully populated frontmatter
  8. Updates decisions/README.md โ€” total count, chronological list, and by-category section
  9. Commits both files with a structured commit message

Time: 5-15 minutes (depends on how much detail you provide)

Example:

/kmgraph:create-adr                                             # โ†’ active KG
/kmgraph:create-adr "Use PostgreSQL for primary database" # Pre-fills title
/kmgraph:create-adr "Prefer TypeScript strict mode" --user # โ†’ personal KG decisions/
/kmgraph:create-adr "Use Redis caching" --project # โ†’ current project decisions/

Tips:

  • Pass a title as an argument to skip the first wizard prompt
  • Use Proposed status for decisions still under review; Accepted for decisions already implemented
  • Link to related lessons in Step 3.8 โ€” creates bidirectional traceability
  • If a snapshot was taken earlier in the session, the ADR's Context section can draw from it

๐ŸŸก /kmgraph:listโ€‹

Purpose: Display all configured knowledge graphs from ~/.claude/kg-config.json

When to use:

  • View all available knowledge graphs
  • Check which KG is currently active
  • Review KG configurations before switching
  • Verify a new KG was created successfully

What it shows:

  • All configured knowledge graphs with numbered list
  • Active KG highlighted
  • Location paths, categories, git strategy, last used timestamp
  • Total count

Time: Instant

Example output:

Knowledge Graphs:

1. my-project (active) โ€” /Users/name/projects/my-app/docs/
Categories: architecture, process, patterns
Git: selective (architecture/patterns committed, process gitignored)
Last used: 2026-02-13 15:45

2. ai-research โ€” ~/.claude/knowledge-graphs/ai-research/
Categories: architecture, process, ml-patterns (custom)
Git: all committed
Last used: 2026-02-10 12:00

Total: 2 knowledge graph(s) configured

Tip: Use --names-only for scripting or --json for machine-readable output.


๐ŸŸก /kmgraph:switchโ€‹

Purpose: Change the active knowledge graph for all subsequent commands

When to use:

  • Switch between different project knowledge graphs
  • Change to a topic-based KG for cross-project patterns
  • Return to a previously used KG

What it does:

  1. Validates the target KG exists in config
  2. Verifies KG path exists on disk (warns if missing, allows override)
  3. Updates the active field in ~/.claude/kg-config.json
  4. Updates lastUsed timestamp
  5. Reports previous and new active KG

Time: Instant

Example:

/kmgraph:switch my-project
/kmgraph:switch ai-research
/kmgraph:switch cowork-devops --force # Skip missing path warning

Tips:

  • All subsequent knowledge commands operate on the newly active KG
  • Use /kmgraph:list first to see available options

๐ŸŸก /kmgraph:check-sensitiveโ€‹

Purpose: Scan active knowledge graph for potentially sensitive information before public sharing

When to use:

  • Before pushing knowledge graph files to a public or shared repository
  • As a manual check alongside /kmgraph:config-sanitization hooks
  • Periodic audit of KG content

What it does:

  1. Loads scan patterns from .claude/sanitization-config.json (or uses defaults)
  2. Scans all markdown files in the active KG for: email addresses, API keys/tokens, URLs
  3. Reports findings with file name, line number, and matched content
  4. Optionally shows fix suggestions with --fix-suggestions flag

Time: Under 5 seconds

Example:

/kmgraph:check-sensitive

# Output:
# โš ๏ธ Potential sensitive data found:
#
# - patterns.md:42 โ€” email: user@example.com
# - debugging-auth.md:15 โ€” URL: https://api.internal.company.com
# - lesson-template.md:8 โ€” api-key: API_KEY=abc123def456
#
# Review these entries before pushing to public repository.

๐ŸŸก /kmgraph:config-sanitizationโ€‹

Purpose: Interactive wizard to set up pre-commit hooks for sensitive data detection

When to use:

  • One-time setup per repository for automated security scanning
  • When team members need consistent sanitization enforcement

What it does:

  1. Prompts for scan patterns (emails, API keys, personal names, internal URLs)
  2. Collects custom regex patterns specific to your project
  3. Asks for action on match (warn or block commit)
  4. Installs a pre-commit hook script to .git/hooks/pre-commit
  5. Creates .claude/sanitization-config.json with selected configuration

Time: 2-3 minutes

Example:

/kmgraph:config-sanitization

# Wizard asks:
# 1. What should be scanned for? (checkboxes for email, API keys, names, URLs)
# 2. Any custom patterns? (e.g., "ACME Corp", "internal\.company\.com")
# 3. What should happen when found? (1. Warn 2. Block)
# โ†’ Installs hook and creates config

Output:

โœ… Pre-commit sanitization hook installed!

Scan patterns: emails, API keys, custom patterns (2)
Action: Block commits with sensitive data

Test the hook:
git add docs/knowledge/patterns.md
git commit -m "test"

๐ŸŸก /kmgraph:extract-chatโ€‹

Purpose: Extract chat history from Claude and Gemini local log sources

When to use:

  • Preserve chat history for reference or knowledge extraction
  • End of day archival of important conversations
  • When logs might be cleared by app updates

What it does:

  1. Determines output directory (active KG's chat-history/ by default, or custom path)
  2. Scans Claude logs (~/.claude/projects/ for .jsonl files) and/or Gemini logs (~/.gemini/tmp/, ~/.gemini/antigravity/conversations/ for .json/.pb files)
  3. Merges sessions by date into YYYY-MM-DD-claude.md and/or YYYY-MM-DD-gemini.md
  4. Supports incremental append โ€” re-running adds new sessions without overwriting

Time: Under 30 seconds

Date filtering options:

  • --today โ€” Extract only today's sessions
  • --date=YYYY-MM-DD โ€” Extract only sessions from a specific date
  • --after=YYYY-MM-DD โ€” Extract sessions from this date onwards (inclusive)
  • --before=YYYY-MM-DD โ€” Extract sessions up to and including this date
  • --project=<fragment> โ€” Filter to sessions from a specific project (path fragment match)

Example:

/kmgraph:extract-chat                                          # Extract all (Claude + Gemini)
/kmgraph:extract-chat -claude # Extract only Claude
/kmgraph:extract-chat -gemini # Extract only Gemini
/kmgraph:extract-chat --output-dir=/custom/path # Custom output location
/kmgraph:extract-chat --today # Today only
/kmgraph:extract-chat -claude 2026-02-20 through 2026-02-21 # Date range
/kmgraph:extract-chat --project=knowledge-graph # Specific project only

Tips:

  • Extracted files are automatically searchable via /kmgraph:recall
  • Optional blackboxprotobuf Python library enables Gemini protobuf file support
  • Date ranges use natural language: YYYY-MM-DD through YYYY-MM-DD or YYYY-MM-DD to YYYY-MM-DD
  • Gemini date filtering: passthrough implemented; underlying Gemini extraction may have known limitations

๐ŸŸก /kmgraph:update-docโ€‹

Purpose: Update an existing documentation file โ€” plugin/project documentation (--user-facing) or knowledge graph content

When to use:

  • A plugin feature changed and COMMAND-GUIDE, CHEAT-SHEET, or README needs updating
  • Adding a new command entry to user-facing docs
  • Ensuring documentation follows v0.0.7 language standards (third-person, Section 508)

What it does:

Without --user-facing: shows a disambiguation dialog to distinguish plugin documentation from KG content.

With --user-facing:

  1. Reads target file and displays current sections and version
  2. Asks what type of update (add command entry, update existing entry, add section, update metadata, validate only)
  3. Runs v0.0.7 standards validation (third-person voice, heading hierarchy, table headers, link text)
  4. Shows diff preview before writing
  5. Applies changes and commits with standards-compliant message

Time: 2-5 minutes

Example:

/kmgraph:update-doc COMMAND-GUIDE.md --user-facing   # Update plugin documentation wizard
/kmgraph:update-doc README.md --user-facing # Update README with new feature info
/kmgraph:update-doc some-lesson.md # Disambiguation dialog for KG content

Tips:

  • Always use --user-facing for plugin/project docs (README, COMMAND-GUIDE, CHEAT-SHEET, etc.)
  • Without --user-facing, a dialog clarifies whether the target is plugin docs or KG content
  • Standards validation runs automatically โ€” violations are flagged before writing

Advanced Commandsโ€‹

๐Ÿ”ด /kmgraph:meta-issueโ€‹

Purpose: Initialize and manage meta-issue tracking for complex multi-attempt problems

When to use (2 or more criteria should be met):

  • 3+ solution attempts already tried or expected
  • Root cause understanding has shifted 2+ times
  • Problem spans multiple project versions
  • High complexity requiring coordination across systems
  • Significant learning value for future similar problems

What it does:

  1. Initialize (/kmgraph:meta-issue "Problem Title"):
    • Prompts for domain, scope, severity, expected attempts
    • Creates structured directory under {active_kg_path}/issues/[meta-issue-name]/
    • Populates core files: README, description, implementation-log, test-cases
    • Creates analysis files: root-cause-evolution, timeline, lessons-learned
    • Links to knowledge graph
  2. Add attempt (--add-attempt 003 "Try connection pooling"):
    • Creates numbered attempt folder with solution approach and results templates
    • Updates implementation log
  3. Update understanding (--update-understanding "Root cause is network latency"):
    • Records belief shifts with timestamp and evidence
    • Updates description with current best understanding
  4. View status (--status):
    • Shows all active meta-issues with attempt counts and current understanding
  5. Log attempt with hypothesis (--log-attempt NNN "hypothesis"):
    • Enforces a distinct hypothesis before each attempt begins
    • Pre-populates the attempt template's hypothesis field
    • Reminds the user to invoke stuck-work-escalation at attempt 3+
    • At 5 attempts, exit-path analysis becomes mandatory (see stuck-work-escalation skill)

Time: 3-5 minutes for initialization

Example:

/kmgraph:meta-issue "Authentication Redesign"
/kmgraph:meta-issue --add-attempt 002 "OAuth2 with JWT"
/kmgraph:meta-issue --log-attempt 003 "JWT expiry logic is the root cause"
/kmgraph:meta-issue --update-understanding "Token expiry logic flawed"
/kmgraph:meta-issue --status

Note: Do NOT use meta-issue for simple bugs, standard features, or one-off debugging. Use /kmgraph:capture-lesson instead.


๐Ÿ”ด /kmgraph:start-issue-trackingโ€‹

Purpose: Initialize issue tracking for a specific problem or enhancement with structured documentation and Git branch creation

When to use:

  • Identified a bug that needs structured tracking
  • Planning a new feature or enhancement
  • Documenting a problem before solving it
  • Creating a developer handoff with full context

Note: The term "issue" here refers to a GitHub Issue โ€” a platform feature for tracking bugs and feature requests/enhancements.

What it does:

  1. [NEW in v0.2.2-beta] Snapshot gate โ€” optionally takes a session snapshot before the issue dialog
  2. [NEW in v0.2.2-beta] Branch guard โ€” Step 1.0 now surfaces a โš ๏ธ warning when current branch โ‰  main, priming the user before versioning decisions; Step 6.2 lesson capture prompt becomes strongly recommended when working on a non-main branch
  3. Steps 1.1โ€“1.4 ask one question at a time โ€” type (bug vs. enhancement), version impact, branch name, and plan filename are each asked independently, waiting for a response before the next question. No multi-question prompts.
  4. Scans chat history for recent proposals ("Would you like me to...")
  5. Runs git authority check and auto-detects version increment path
  6. Auto-detects issue type from keywords (bug vs. enhancement)
  7. Creates directory structure with documentation templates (description, solution approach, test cases, implementation log)
  8. Generates an implementation plan with safety headers and atomic approval protocol
  9. Creates a Git feature branch (issue/{N}-{slug})
  10. Optionally creates a draft PR on GitHub with --body-file populated from solution approach
  11. Step 6.2 (lesson capture) is a mandatory gate โ€” must receive a response before continuing. When working on a non-main branch, this step is strongly recommended.
  12. Step 6.4 (ROADMAP + CHANGELOG update) is a mandatory gate โ€” must receive a response confirming ROADMAP and CHANGELOG entries have been considered before the command completes.
  13. Links to knowledge graph and prompts for lesson capture
  14. Engages implementation freeze โ€” stops before any code changes

Time: 5-10 minutes

Example:

/kmgraph:start-issue-tracking
/kmgraph:start-issue-tracking CLI flag parsing fails on quoted args
/kmgraph:start-issue-tracking Add token usage display

Tips:

  • Uses the Dual-ID Policy: local IDs (issue-N or ENH-NNN) are independent from GitHub issue numbers (#N)
  • Always use --body-file flag (not manual summary) when creating the GitHub Issue

๐Ÿ”ด /kmgraph:update-issue-planโ€‹

Purpose: Synchronize knowledge graph extraction with active plans and local/GitHub issue tracking

When to use:

  • After extracting new KG entries with /kmgraph:update-graph
  • When implementation plan needs to reflect new insights
  • Before committing governance-related changes
  • When progress needs to be posted to a GitHub Issue

Note: References to "issues" here mean GitHub Issues โ€” platform-level bug reports or feature requests.

What it does:

  1. Knowledge extraction: Runs /kmgraph:update-graph to extract patterns
  2. Plan sync: Updates the active implementation plan with a "Lessons Learned Integration" section
  3. Local issue update: Appends progress and new verification requirements to local issue docs
  4. GitHub sync: Maps local issue ID to GitHub Issue number, posts a knowledge sync comment, and updates PR description with related lessons
  5. Governance audit: Outputs a summary table showing sync status across all components

Time: 2-5 minutes

Example:

/kmgraph:update-issue-plan
/kmgraph:update-issue-plan --auto # Skip prompts
/kmgraph:update-issue-plan --pr=42 # Sync to specific PR

Tips:

  • Works fully offline โ€” GitHub steps gracefully degrade if gh CLI is not installed
  • Decision gates will prompt before creating new issues for out-of-scope discoveries

Purpose: Manually link an existing lesson or ADR to a GitHub Issue with bidirectional references

When to use:

  • A lesson was captured but not linked to its relevant GitHub Issue
  • An ADR should reference the GitHub Issue that prompted the decision
  • Building traceability between knowledge and tracked work

Note: "Issue" here refers to a GitHub Issue โ€” which could be a bug report or a feature request/enhancement.

What it does:

  1. Validates the file exists and issue number is provided
  2. Updates YAML frontmatter in the lesson/ADR with issue and PR metadata
  3. Posts a comment to the GitHub Issue with a link to the lesson (if gh CLI available)
  4. Updates the related KG entry with the issue reference
  5. Reports bidirectional link status

Time: Under 1 minute

Example:

/kmgraph:link-issue docs/lessons-learned/process/my-lesson.md --issue 42
/kmgraph:link-issue docs/decisions/ADR-005.md --issue 38 --pr 40

๐Ÿ”ด /kmgraph:archive-memoryโ€‹

Purpose: Archive stale MEMORY.md entries to prevent bloat while preserving historical context

When to use:

  • MEMORY.md approaching 1,500 token soft limit (warning from /kmgraph:sync-all)
  • MEMORY.md exceeds 2,000 token hard limit (blocked from adding new entries)
  • Periodic cleanup (recommended quarterly)
  • Before major project phase changes

What it does:

  1. Calculates current MEMORY.md token count (word count ร— 1.3)
  2. Identifies stale entries using date-based staleness criteria (default: 90 days)
  3. Previews entries proposed for archival with token savings estimate
  4. Moves stale entries to MEMORY-archive.md (preserving content)
  5. Adds archive notice and log to both files
  6. Commits both files with descriptive message

Time: 1-2 minutes

Example:

/kmgraph:archive-memory
/kmgraph:archive-memory --auto # Skip confirmation
/kmgraph:archive-memory --dry-run # Preview without writing
/kmgraph:archive-memory --threshold=180 # Custom staleness threshold (days)

Tips:

  • Token limits: 1,500 soft (warning) / 2,000 hard (block)
  • Archived entries can be restored with /kmgraph:restore-memory

๐Ÿ”ด /kmgraph:restore-memoryโ€‹

Purpose: Restore archived MEMORY.md entries from MEMORY-archive.md back into active memory

When to use:

  • Need to reference archived knowledge for current work
  • Working on a problem related to a previously archived solution
  • Rebuilding context from a previous project phase
  • Token budget has been freed up and historical context is needed

What it does:

  1. Parses all archived entries with IDs, titles, dates, and token sizes
  2. Supports fuzzy search by title, ID-based selection, or interactive list
  3. Previews entry content and calculates post-restoration token count
  4. Checks token limits before restoring (blocks if would exceed 2,000 token hard limit)
  5. Inserts entry into the appropriate MEMORY.md section
  6. Updates archive log with restoration timestamp (entry content remains in archive for history)
  7. Commits both files

Time: 1-2 minutes

Example:

/kmgraph:restore-memory                    # Interactive mode (show list, select)
/kmgraph:restore-memory "Git Pre-Commit" # Fuzzy search by title
/kmgraph:restore-memory --id=5 # Restore by archive ID
/kmgraph:restore-memory --list # Show all archived entries
/kmgraph:restore-memory --dry-run # Preview without writing

๐Ÿ”ด /kmgraph:sync-allโ€‹

Purpose: Automated knowledge sync orchestrator โ€” replaces 4-step manual pipeline with 1 command

When to use:

  • After significant work sessions to consolidate everything
  • Weekly deep sync to ensure KG, MEMORY.md, plans, and GitHub are aligned
  • Before major milestones or project phase changes
  • As a catch-up sync if you've been capturing lessons without syncing

What it does:

  1. Scans for new or modified lessons in {active_kg_path}/lessons-learned/
  2. Extracts KG entries from lessons (delegates to /kmgraph:update-graph)
  3. Checks MEMORY.md size and syncs new patterns (respects token limits)
  4. Links to active implementation plan if relevant
  5. Updates local issue with KG references and progress notes
  6. Enriches today's session summary with KG insights
  7. Generates GitHub Issue comment draft and asks for single confirmation before posting

Time: 1-5 minutes depending on volume

Example:

/kmgraph:sync-all
/kmgraph:sync-all --auto # Skip GitHub posting confirmation
/kmgraph:sync-all --dry-run # Preview without changes

Output:

Knowledge Sync Complete
-----------------------
Lessons scanned: 3 (2 new, 1 modified)
KG entries: 2 created, 1 updated
MEMORY.md: Updated (1 new pattern)
Plan linked: v2.0 (Step 2 โ†’ Prefix Naming lesson)
Local issue: issue-42 (updated)
GitHub: #45 (comment posted)
Session: 2026-02-11 (enriched)

Tips:

  • Idempotent โ€” safe to run multiple times (existing entries updated, not duplicated)
  • GitHub integration is optional โ€” works fully offline if gh CLI is not installed

Cleaner conversations: When the context-mode plugin is installed, sync-all runs file scans in a background process so the results do not fill the conversation. Falls back automatically if context-mode is not installed. No configuration required.

Search index: Each run of sync-all automatically refreshes the search index if one has been built. On the first run after upgrading, sync-all will ask once whether to build the index. The preference is remembered.


๐Ÿ”ด /kmgraph:handoffโ€‹

Purpose: Create comprehensive project handoff documentation for transitions, context limits, or onboarding

When to use:

  • Before transitioning project to another developer
  • Preparing for context window limits (>180K tokens)
  • Completing a major release cycle
  • Creating documentation for AI assistant handoffs
  • Before taking a long break

What it creates:

  1. START-HERE.md โ€” Current session state, active branch, next steps
  2. DOCUMENTATION-MAP.md โ€” File inventory with purpose annotations
  3. SESSION-COMPILATION.md โ€” Recent session summaries linked chronologically
  4. OPEN-ISSUES.md โ€” Unresolved issues, PRs, and pending work
  5. ARCHITECTURE-SNAPSHOT.md โ€” Current codebase structure and key decisions

Time: 2-5 minutes depending on project size

Example:

/kmgraph:handoff
/kmgraph:handoff --output-dir=./backup/
/kmgraph:handoff --skip-sessions # Faster, smaller output

Output:

โœ… Handoff package created!

Location: ./handoff-packages/2026-02-27

Files:
- START-HERE.md โ€” 85 lines
- DOCUMENTATION-MAP.md โ€” 156 lines
- SESSION-COMPILATION.md โ€” 234 lines
- OPEN-ISSUES.md โ€” 67 lines
- ARCHITECTURE-SNAPSHOT.md โ€” 189 lines

Total: ~731 lines of documentation
Reading time: ~30-45 minutes for complete orientation

Tips:

  • Creates dated directory: handoff-packages/YYYY-MM-DD/ by default
  • Files can be shared via zip or archived for future reference
  • Perfect companion to /kmgraph:session-summary for comprehensive handoff

Command Comparisonโ€‹

Capture vs Update vs Syncโ€‹

Three ways to save learnings:

  1. /kmgraph:capture-lesson

    • Creates a NEW lesson file
    • Guided interview process
    • Use: When documenting new learnings
  2. /kmgraph:update-graph

    • Extracts patterns from existing lessons
    • Updates knowledge entries
    • Syncs to MEMORY.md
    • Use: Daily or weekly to consolidate
  3. /kmgraph:sync-all

    • Full 4-step pipeline (capture โ†’ update โ†’ sync โ†’ link)
    • Comprehensive sync across KG, plans, issues, and GitHub
    • Use: Weekly deep sync or before sharing

When to use which:

  • Just solved a problem โ†’ capture-lesson
  • End of day/week โ†’ update-graph
  • Major milestone โ†’ sync-all

Status vs Recall vs Listโ€‹

Three ways to view knowledge:

  1. /kmgraph:status

    • High-level overview of active KG
    • File counts, warnings, recent activity
    • Use: Daily check-in, health check
  2. /kmgraph:recall

    • Deep full-text search across all memory systems
    • Find specific content by keyword
    • Use: Looking for something specific
  3. /kmgraph:list

    • Shows all configured KGs (if multiple)
    • Metadata only (names, paths, categories)
    • Use: Switching between projects

Issue Tracking: meta-issue vs start-issue-trackingโ€‹

Two levels of issue tracking:

  1. /kmgraph:start-issue-tracking

    • For individual bugs or enhancements
    • Creates a single issue directory, implementation plan, and Git branch
    • Standard workflow for most tracked work
  2. /kmgraph:meta-issue

    • For complex problems requiring 3+ solution attempts
    • Creates a richer directory structure with attempt folders and root-cause evolution
    • Tracks how understanding changes over time

When to use which:

  • Standard bug or feature โ†’ start-issue-tracking
  • Multi-attempt investigation โ†’ meta-issue

Memory: archive vs restoreโ€‹

MEMORY.md lifecycle management:

  1. /kmgraph:archive-memory

    • Moves stale entries (>90 days old by default) to MEMORY-archive.md
    • Frees token budget for new entries
    • Recommended when approaching 1,500 token soft limit
  2. /kmgraph:restore-memory

    • Brings archived entries back to active MEMORY.md
    • Fuzzy search or ID-based selection
    • Checks token limits before restoring

Troubleshootingโ€‹

"Command not found"โ€‹

Problem: Claude doesn't recognize /kmgraph:... command

Solutions:

  1. Verify plugin installed: Check Claude Code > Extensions
  2. Restart Claude Code
  3. Update plugin: Check for updates in marketplace
  4. Check active KG: Run /kmgraph:status

"No active knowledge graph"โ€‹

Problem: Commands fail with "no active KG"

Solutions:

  1. Run /kmgraph:init to create your first KG
  2. Run /kmgraph:list to see available KGs
  3. Run /kmgraph:switch to activate an existing KG

"MEMORY.md is too large"โ€‹

Problem: MEMORY.md over 1,500 tokens, slowing down sessions or blocking new entries

Solutions:

  1. Run /kmgraph:archive-memory to archive old entries
  2. Review archived entries: Check MEMORY-archive.md
  3. Restore if needed: /kmgraph:restore-memory
  4. Adjust threshold: /kmgraph:archive-memory --threshold=60 for more aggressive archival

"No chat history found"โ€‹

Problem: /kmgraph:extract-chat finds no logs

Solutions:

  1. Verify log directories exist:
    ls ~/.claude/projects/
    ls ~/.gemini/tmp/
  2. Check if you've used Claude Code or Gemini recently
  3. Logs may be cleared on app updates

"Protobuf extraction fails"โ€‹

Problem: Gemini .pb files can't be read

Solutions:

# Install optional dependency
pip install blackboxprotobuf

# Or skip protobuf files (JSON extraction still works)
/kmgraph:extract-chat -gemini # Will warn about .pb files

"Git branch creation fails"โ€‹

Problem: /kmgraph:start-issue-tracking can't create a branch

Solutions:

# Check current branch
git branch

# Make sure you're on main/develop
git checkout main

# Try again
git checkout -b issue/N-description

Technical Detailsโ€‹

This section covers implementation specifics for users who want to understand how features work internally.

Context-Mode Integrationโ€‹

When the context-mode plugin is installed alongside kmgraph:

  • sync-all uses ctx_batch_execute to combine lesson scanning and MEMORY.md size checks in a single sandboxed background process
  • update-graph uses ctx_execute_file for sandboxed file reads when processing 10 or more lessons; falls back to the knowledge-extractor subagent for large batches without context-mode, or reads directly for small batches
  • Detection: kmgraph checks for mcp__plugin_context-mode_context-mode__ctx_batch_execute at runtime; no configuration required; zero breaking change if context-mode is absent

Search Index Implementationโ€‹

The diagram below shows how kg_search decides which search method to use.

kg_search checks for a search index first. If the index exists, it queries the index and returns BM25-ranked results with an index label. If the index does not exist or encounters an error, kg_search falls back to reading files sequentially. The caller receives the same result format either way.

  • Index format: SQLite database using FTS5 (Full-Text Search version 5) extension
  • Ranking: BM25 โ€” the same relevance algorithm used by most search engines
  • Stemming: porter stemmer โ€” "searching" matches "search", "decisions" matches "decision"
  • Rebuild strategy: incremental โ€” only re-indexes files whose modification time changed
  • Storage: {kg-root}/.fts5.db โ€” gitignored, local only, rebuilt on demand
  • Package: node-sqlite3-wasm (WASM-based SQLite, no native compilation required)
  • Fallback: if the index is corrupt or missing, kg_search silently uses file-scan

Quick helpโ€‹

- [Cheat Sheet](CHEAT-SHEET.md)

One-page quick reference

Writing better entriesโ€‹

- [Patterns Guide](reference/PATTERNS-GUIDE.md)

Quality standards

Next Stepsโ€‹


Getting startedโ€‹

Learning resourcesโ€‹

  • Quick Reference

    One-page cheat sheet for common tasks

  • Concepts Guide

    Plain-English definitions of every term and pattern

  • Examples

    Real-world completed examples of lessons, ADRs, and KG entries

Advancedโ€‹

  • Workflows

    Step-by-step guides for all 9 workflow types (non-Claude platforms)

  • Platform Adaptation

    Integration details for Cursor, Windsurf, Continue, VS Code, Aider

  • Style Guide

    Documentation authoring standards and conventions

---

Version: 0.3.6-beta Updated: 2026-04-11