Agent Skills
› KaimingWan/oh-my-kiro
› omk-know
omk-know
GitHub用于从对话中提取并记录技术洞察、经验教训或纠错信息至知识文件。支持触发词识别、去重检查及格式化存储,帮助用户沉淀个人知识库。
Trigger Scenarios
用户输入'remember'等触发词
需要记录当前对话中的发现或纠正
Install
npx skills add KaimingWan/oh-my-kiro --skill omk-know -g -y
SKILL.md
Frontmatter
{
"name": "omk-know",
"description": "Capture knowledge into episodes.md. Trigger when user says 'remember', 'capture this', 'lesson learned', 'note this', '@know', or when preserving insights, corrections, or discoveries from the current conversation.",
"argument-hint": "[insight to capture]",
"disable-model-invocation": true
}
Trigger Examples
- "@know macOS stat 用 -f 不用 -c"
- "记一下这个坑"
- "capture this lesson"
- "note: this API requires auth header"
- "@know HubSpot API 有 rate limit 100/10s"
Know — Knowledge Capture
Read the current conversation and capture an insight into knowledge/episodes.md.
Input
$ARGUMENTS
Process
- If no input provided, ask user: "What insight should I capture?"
- Extract: trigger scenario + DO/DON'T action + keywords
- Check dedup: grep -iw keywords in knowledge/rules.md and knowledge/episodes.md
- Already in rules → tell user, skip
- Already in episodes → tell user count, suggest promotion if ≥3
- Format:
DATE | active | KEYWORDS | SUMMARY(≤80 chars, no | in summary) - Append to knowledge/episodes.md
- Output: 📝 Captured → episodes.md: 'SUMMARY'
Rules
- Summary must contain actionable DO/DON'T, not narrative
- Keywords: 1-3 english technical terms, ≥4 chars each, comma-separated
- If episodes.md has ≥30 entries, warn user to clean up first
Version History
- ba228be Current 2026-07-24 21:07


