plugins-copilot/kb-capture/skills/kb-capture/SKILL.md
Capture conversation findings as a markdown document with schema-valid frontmatter. Triggers when the user says "document this", "write this up", "capture this", "update the doc", "save this to the KB", or similar requests to persist research or discussion findings as a markdown file. Handles both creating new documents and updating existing ones.
npx skillsauth add st0nefish/claude-toolkit kb-captureInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Automate the research-to-document workflow: discover local frontmatter conventions, write schema-valid markdown with frontmatter, lint, and optionally commit.
Inspect the repository for frontmatter constraints without relying on plugin helper-script paths:
Build a compact summary of:
Use AskUserQuestion to confirm:
Show the discovered schema source (if any) so the user can verify it is the right one.
title, date in YYYY-MM-DD format) and any constrained fields from the discovered schema. Use the conversation context to populate the document body.If the repository already has a frontmatter validation command or script, run it. Otherwise, manually verify that the frontmatter is valid YAML and that constrained fields match the discovered schema or local conventions.
If validation fails, fix the reported issues and re-check.
If rumdl is available, run it with auto-fix:
rumdl check --fix <file>
If the file was modified by the linter, re-check frontmatter to ensure fixes did not break it. If rumdl is not installed, skip linting and inform the user.
Use AskUserQuestion to ask whether to commit and push the changes. Never auto-commit. If the user agrees, stage the file and commit with a descriptive message.
tags: [tag1, tag2].development
Start work from your description — explore the codebase and plan
data-ai
Multi-phase, multi-agent feature workflow: spec → plan → refine → divide → execute → review. Invoke when the user escalates a session-start/session-issue flow to orchestration, or asks to run a non-trivial feature (multiple files, design ambiguity, cross-cutting concerns, correctness-critical paths) through the full multi-agent workflow. For small fixes, prefer session-start.
tools
Browse open issues, pick one, and start work on it
tools
Review, clean up, and open a PR to finalize the work