用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/az9713/voice-note-taker --skill voice-note-taker命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | voice-note-taker |
| description | Save and structure a voice idea to the knowledge base with automatic GitHub merge |
Structure the idea from this conversation and save it to the knowledge base with full automatic GitHub workflow.
Based on the conversation, create a structured markdown file:
# [Descriptive Title]
## Summary
[2-3 sentences capturing the core idea]
## Key Insights
- [Key point 1]
- [Key point 2]
- [Add more as needed]
## Action Items
- [ ] [Task 1]
- [ ] [Task 2]
- [Add more or remove section if none]
## Connections
- Related to: [topics]
- Source: [if applicable]
| Folder | Use When |
|---|---|
knowledge-base/ideas/ | Raw thoughts, brainstorms, "what if" |
knowledge-base/insights/ | Learnings, wisdom, mental models |
knowledge-base/actions/ | Tasks, plans, goals, decisions |
Format: YYYY-MM-DD-descriptive-slug.md
Example: 2026-01-22-morning-routine-focus.md
Execute these commands in sequence:
# Ensure on main and up to date
git checkout main
git pull origin main
# Create branch for this idea
git checkout -b idea/[slug]
# Create the file in the appropriate folder
# (write file content)
# Stage and commit
git add knowledge-base/[folder]/[filename]
git commit -m "Add: [brief topic description]"
# Push the branch
git push -u origin idea/[slug]
# Create PR, merge, and cleanup (automatic!)
gh pr create --title "Add: [brief topic]" --body "Auto-captured idea" --base main
gh pr merge --merge --delete-branch
# Return to main
git checkout main
git pull origin main
After completing, confirm:
knowledge-base/[folder]/[filename]User says: "Morning routines reduce decision fatigue because you don't have to think about what to do first thing"
Result:
knowledge-base/insights/2026-01-22-morning-routines-decision-fatigue.md