Agent Skillssilverstein/minutes › minutes-ingest

minutes-ingest

GitHub

从会议记录中提取结构化事实,更新知识库中的人物画像、时间日志和索引。支持单条或批量处理,具备去重、置信度过滤及敏感信息排除功能,适配 Wiki/PARA/Obsidian 等格式。

.agents/skills/minutes/minutes-ingest/SKILL.md silverstein/minutes

Trigger Scenarios

ingest my meetings update my knowledge base extract facts from meetings sync meetings to wiki backfill knowledge

Install

npx skills add silverstein/minutes --skill minutes-ingest -g -y
More Options

Non-standard path

npx skills add https://github.com/silverstein/minutes/tree/main/.agents/skills/minutes/minutes-ingest -g -y

Use without installing

npx skills use silverstein/minutes@minutes-ingest

指定 Agent (Claude Code)

npx skills add silverstein/minutes --skill minutes-ingest -a claude-code -g -y

安装 repo 全部 skill

npx skills add silverstein/minutes --all -g -y

预览 repo 内 skill

npx skills add silverstein/minutes --list

SKILL.md

Frontmatter
{
    "name": "minutes-ingest",
    "description": "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."
}

/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:

[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

minutes ingest ~/meetings/2026-04-03-strategy-call.md

All normal meetings (backfill)

minutes ingest --all

Preview without writing (recommended first time)

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
  6. Excludes meetings designated sensitivity: restricted from automated knowledge-base ingestion

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 which meeting it came from and when.
  • Deduplication: Facts whose text already appears in a person's profile are skipped.
  • Dry-run: Always suggest --dry-run first if the user hasn't used ingest before.

Interpreting the output

Ingesting 73 meeting(s) into knowledge base at /path/to/kb
  2026-04-03-strategy.md — 4 written, 1 skipped — Mat, Dan
  2026-04-05-standup.md — 2 written, 0 skipped — Alice
  SKIP 2026-03-18-test.md: no frontmatter

Done. 6 fact(s) written, 1 skipped, 1 error(s), 3 people updated.
  • written: facts that passed confidence threshold and didn't already exist
  • skipped: facts below confidence threshold (logged, not written)
  • SKIP: files that couldn't be parsed (no frontmatter, invalid YAML, etc.)

Gotchas

  • Meetings without summarization have no structured data — If a meeting was recorded before summarization was enabled, its frontmatter won't have action_items or decisions. The ingest will correctly extract 0 facts. This is expected, not an error.
  • engine = "agent" requires an AI CLI — If the user wants richer LLM-based extraction from transcript body text, they need claude, codex, gemini, opencode, or pi on PATH.
  • PARA adapter writes items.json — If the user's knowledge base uses the PARA format, facts go into areas/people/{slug}/items.json with atomic fact schema (id, status, supersededBy).
  • First run should be dry-run — Always suggest minutes ingest --all --dry-run before the first real run so the user can see what would be extracted.

Version History

  • a9a4a8b Current 2026-08-20 02:19

    新增对标记为 restricted 的会议自动排除逻辑,增强数据安全性。

  • 1dfcb30 2026-07-25 08:24

Same Skill Collection

.agents/skills/minutes/minutes-cleanup/SKILL.md
.agents/skills/minutes/minutes-debrief/SKILL.md
.agents/skills/minutes/minutes-graph/SKILL.md
.agents/skills/minutes/minutes-ideas/SKILL.md
.agents/skills/minutes/minutes-lint/SKILL.md
.agents/skills/minutes/minutes-list/SKILL.md
.agents/skills/minutes/minutes-note/SKILL.md
.agents/skills/minutes/minutes-prep/SKILL.md
.agents/skills/minutes/minutes-recap/SKILL.md
.agents/skills/minutes/minutes-record/SKILL.md
.agents/skills/minutes/minutes-release-notes/SKILL.md
.agents/skills/minutes/minutes-search/SKILL.md
.agents/skills/minutes/minutes-seo-wave/SKILL.md
.agents/skills/minutes/minutes-setup/SKILL.md
.agents/skills/minutes/minutes-verify/SKILL.md
.agents/skills/minutes/minutes-video-review/SKILL.md
.agents/skills/minutes/minutes-weekly/SKILL.md
.claude/plugins/minutes/skills/minutes-cleanup/SKILL.md
.claude/plugins/minutes/skills/minutes-debrief/SKILL.md
.claude/plugins/minutes/skills/minutes-graph/SKILL.md
.claude/plugins/minutes/skills/minutes-ideas/SKILL.md
.claude/plugins/minutes/skills/minutes-ingest/SKILL.md
.claude/plugins/minutes/skills/minutes-lint/SKILL.md
.claude/plugins/minutes/skills/minutes-list/SKILL.md
.claude/plugins/minutes/skills/minutes-note/SKILL.md
.claude/plugins/minutes/skills/minutes-prep/SKILL.md
.claude/plugins/minutes/skills/minutes-recap/SKILL.md
.claude/plugins/minutes/skills/minutes-record/SKILL.md
.claude/plugins/minutes/skills/minutes-release-notes/SKILL.md
.claude/plugins/minutes/skills/minutes-search/SKILL.md
.claude/plugins/minutes/skills/minutes-seo-wave/SKILL.md
.claude/plugins/minutes/skills/minutes-setup/SKILL.md
.claude/plugins/minutes/skills/minutes-verify/SKILL.md
.claude/plugins/minutes/skills/minutes-video-review/SKILL.md
.claude/plugins/minutes/skills/minutes-weekly/SKILL.md
.opencode/skills/minutes-cleanup/SKILL.md
.opencode/skills/minutes-debrief/SKILL.md
.opencode/skills/minutes-graph/SKILL.md
.opencode/skills/minutes-ideas/SKILL.md
.opencode/skills/minutes-ingest/SKILL.md
.opencode/skills/minutes-lint/SKILL.md
.opencode/skills/minutes-list/SKILL.md
.opencode/skills/minutes-note/SKILL.md
.opencode/skills/minutes-prep/SKILL.md
.opencode/skills/minutes-recap/SKILL.md
.opencode/skills/minutes-record/SKILL.md
.opencode/skills/minutes-release-notes/SKILL.md
.opencode/skills/minutes-search/SKILL.md
.opencode/skills/minutes-seo-wave/SKILL.md

Metadata

Files
0
Version
a9a4a8b
Hash
8079e496
Indexed
2026-07-25 08:24

inicio - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-25 05:48
浙ICP备14020137号-1 $mapa de visitantes$