用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/TashanGKD/cc_plugins --skill note命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | note |
| description | 个人笔记记录助手。自动以 JSON 格式记录想法、学习笔记、会议纪要到 ~/.note,支持标签分类和全文搜索。 |
| user-invocable | true |
~/.note/notes/YYYY-MM/YYYY-MM-DD_NNN.json
{
"id": "2026-01-14_001",
"timestamp": "2026-01-14T10:30:00+08:00",
"created_at": "2026-01-14",
"tags": ["git", "workflow"],
"category": "learning",
"title": "Git rebase 学习笔记",
"content": "具体内容..."
}
| 分类 | 触发关键词 |
|---|---|
| development | 实现、开发、重构、优化 |
| idea | 想法、建议、可以考虑、或许 |
| meeting | 会议、讨论、决定、周会 |
| bugfix | bug、问题、错误、修复 |
| learning | 学习、笔记、了解、研究 |
| other | 默认 |
| 标签 | 关键词 |
|---|---|
| git | git, commit, push, pull, merge, rebase, branch |
| python | python, pip, uv, pytest |
| docker | docker, container, image, compose |
| auth | auth, login, token, jwt, oauth |
| api | api, rest, endpoint, http |
| refactor | refactor, 重构 |
| debug | debug, bug, fix, 修复 |
~/.note 不存在,创建目录和 config.json、index.jsontags:xxx,yyy 格式)YYYY-MM-DDTHH:mm:ss+08:00YYYY-MM-DD_XXX~/.note/notes/YYYY-MM/YYYY-MM-DD_XXX.jsonindex.json 的 notes 数组,更新 total_notes 和 last_updated# 使用 date 命令获取正确的本地时间戳
date "+%Y-%m-%dT%H:%M:%S%z"
# 输出示例:2026-01-14T18:44:24+0800
重要:必须使用本地时间,而非 UTC 时间。
| 用户输入 | 操作 |
|---|---|
/note 今天学习了 Git rebase | 快速记录笔记 |
/note tags:git,workflow 学习 rebase | 记录并指定标签 |
/note 初始化 | 创建 ~/.note 目录 |
/note 列出最近10条 | 显示最近笔记 |
/note 搜索 git | 全文搜索笔记 |
/note 查看 learning 分类 | 按分类查看 |
/note | 交互式记录(引导输入) |