一键导入
note
Capture and save notes as markdown files. Use when the user wants to take a note, jot something down, or save a thought. Triggered by /note command.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Capture and save notes as markdown files. Use when the user wants to take a note, jot something down, or save a thought. Triggered by /note command.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
How to create agents that work with the agent-runner
Design and create a town — a group of agents that work together.
Multi-agent orchestration over a shared SQLite event queue.
Collide two random notes into new ideas using oblique-strategy thinking. Generates 3 new ideas in the idea-collider/ folder.
Capture text into the note garden pipeline. Paste a transcript or idea and it flows through the zettelkasten pipeline.
Summarize recent activity in the note garden by reading breadcrumbs
| name | note |
| description | Capture and save notes as markdown files. Use when the user wants to take a note, jot something down, or save a thought. Triggered by /note command. |
| user_invocable | true |
/note <content> - Save a note with the given content
When the user invokes this skill with /note <content>:
Parse the user's input to extract:
# (e.g., #idea, #project)Generate the filename:
my-great-idea.mdCheck if file exists:
Write the file with YAML frontmatter in this format:
---
title: <extracted title>
date: <current date in YYYY-MM-DD format>
tags: [<extracted tags without # prefix>]
---
<note content>
Use the agent-queue skill to push a new event to the event queue:
busytown events push --worker note --type note.created --payload '{"path":"..."}'
Input: /note This is my first idea #idea #brainstorm
this-is-my-first-idea.mdInput:
/note #meeting Discussed the roadmap for Q2. Key decisions: launch by March.
discussed-the-roadmap-for-q2.mdWhen a note with the same filename already exists:
<!-- Updated: YYYY-MM-DD -->