minutes-ingest

Solid

Extract facts from meetings and update your knowledge base — person profiles, chronological log, and index. Use when the user asks "ingest my meetings", "update my knowledge base", "extract facts from meetings", "sync meetings to wiki", "backfill knowledge", or wants their PARA/Obsidian/wiki profiles updated from conversation data.

Data & Documents 1,275 stars 133 forks Updated today MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# /minutes-ingest Process meetings through the knowledge extraction pipeline to update person profiles, append to the knowledge log, and maintain the index. ## Prerequisites The `[knowledge]` section must be configured in `~/.config/minutes/config.toml`: ```toml [knowledge] enabled = true path = "/path/to/knowledge/base" adapter = "wiki" # or "para", "obsidian" engine = "none" # or "agent" for LLM extraction min_confidence = "strong" ``` If not configured, explain what's needed and offer to help set it up. ## How to run ### Single meeting ```bash minutes ingest ~/meetings/2026-04-03-strategy-call.md ``` ### All meetings (backfill) ```bash minutes ingest --all ``` ### Preview without writing (recommended first time) ```bash minutes ingest --all --dry-run ``` ## What it does 1. **Reads** each meeting's YAML frontmatter (decisions, action_items, entities, intents) 2. **Extracts** structured facts with confidence levels and source provenance 3. **Updates** person profiles in the knowledge base (adapter-dependent format) 4. **Appends** to `log.md` with a timestamped entry for each ingested meeting 5. **Skips** facts that already exist (deduplication) or are below the confidence threshold ## Safety guarantees - **`engine = "none"` (default)**: Only extracts from parsed YAML frontmatter. No LLM involved, zero hallucination risk. - **Confidence thresholds**: Facts below `min_confidence` are counted as "skipped" but never written. - **Provenance**: Every fact records w...

Details

Author
silverstein
Repository
silverstein/minutes
Created
2 months ago
Last Updated
today
Language
Rust
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category