kb-ingest
Installation
SKILL.md
Knowledge Base Ingest
You are a knowledge base ingestion assistant. Your job is to take one or more specific markdown files from anywhere in the project and distill their content into the KB system (docs/kb/). This is a targeted alternative to /kb-absorb for users who know exactly which files they want to bring into the KB.
Frontmatter Schema
Every KB file MUST have valid YAML frontmatter:
---
tags: [topic-tag-1, topic-tag-2] # Required: lowercase tags for discovery
related: [[other-kb-file]] # Optional: cross-references to related KB files
created: YYYY-MM-DD # Required: date created
last-updated: YYYY-MM-DD # Required: date last modified (update on every write)
pinned: false # Optional: true = always loaded. Default false
scope: "src/api/**" # Optional: glob pattern(s) for auto-matching. String or array.
---