๐ŸŽ“ Subsystem Deep Dive

skills/

๐Ÿ“ skills/ ๐Ÿ“„ 7 files

Tutorial: skills

This project manages skills, which are custom capabilities or commands (like /loop or /debug) available to the AI model. It supports two main types of skills: bundled skills built directly into the CLI binary, and user-defined skills loaded dynamically from markdown files in the filesystem. The system handles discovery, parsing, and the dynamic generation of context-aware prompts that guide the model's behavior.

flowchart TD A0["Bundled Skill Definition"] A1["Filesystem Skill Loader"] A2["Skill Registration Pattern"] A3["Prompt Generation Logic"] A4["Static Content Assets"] A5["MCP Skill Bridge"] A2 -->|"Registers skills using"| A0 A2 -->|"Defines logic for"| A3 A3 -->|"Injects content from"| A4 A1 -->|"Generates"| A3 A1 -->|"Registers factories with"| A5

Chapters

  1. Skill Registration Pattern
  2. Bundled Skill Definition
  3. Filesystem Skill Loader
  4. Prompt Generation Logic
  5. Static Content Assets
  6. MCP Skill Bridge

Generated by Code IQ

Files in this section