ワンクリックで
note-capture
How agents capture conversations, brainstorms, and thinking as notes in the Hero knowledge base.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
How agents capture conversations, brainstorms, and thinking as notes in the Hero knowledge base.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Behavioral rules that make AI coding agents more reliable — verification, self-correction, and scope discipline.
Debugging guidance and structured report template for thorough bug investigation, evidence gathering, and root cause documentation.
Cold-audit a completed delivery — verify the spec was actually delivered, challenge performative claims, and produce a what-landed report.
Guidelines for generating self-contained HTML mockups that look professional and are easy to iterate on.
Shared implementation guidance for making minimal, correct, maintainable code changes that fit existing systems.
The doctrine for `/roadmap-review` — interactive triage of roadmap-shape drift, walked one item at a time, with paste-ready resolution phrasing for the active sizing lens.
| name | note-capture |
| description | How agents capture conversations, brainstorms, and thinking as notes in the Hero knowledge base. |
| compatibility | opencode, cursor, claude |
| metadata | {"audience":"agents","purpose":"knowledge-capture"} |
Teach agents how to capture valuable conversations and thinking as notes in the Hero knowledge base. Notes are the lowest-friction knowledge type — no structure required, no status workflow, just timestamped captures of thinking that gets indexed and searchable.
Load this skill when:
Include both sides of the conversation. The agent's analysis, reasoning, suggestions, and code examples are often the most valuable part. Do not strip out your own contributions. Do not aggressively summarize. Preserve the thinking.
Derive a short kebab-case slug from the topic:
auth-flow-brainstormredis-vs-postgres-session-storewhy-we-chose-grpcdebugging-memory-leak-april-12If the user doesn't provide a topic, ask: "What should I title this note?"
Run:
hero note <slug>
This creates .hero/knowledge/notes/<slug>/spec.md with minimal frontmatter.
Open the created file and replace the placeholder with the captured content. Use this structure:
---
title: <descriptive title>
type: note
created: <date>
tags: [<relevant>, <tags>]
---
# <Title>
## Context
What prompted this conversation. One or two sentences.
## Discussion
**Human:** <user's message>
**Assistant:** <your response>
**Human:** <user's follow-up>
**Assistant:** <your analysis>
(Continue for the full relevant conversation)
## Key Takeaways
- Bullet point the conclusions, decisions made, or open questions
- Include any action items that emerged
- Note anything that should become a spec later
Tell the user:
The user says "save this whole conversation as a note." Capture everything substantive from the session.
The user says "save the part about auth as a note." Extract only the relevant portion of the conversation.
The user says "let's brainstorm about X — capture this as a note when we're done." Continue the conversation normally, then at the end, save everything discussed about X.
The user says "note: we should probably add rate limiting to the API." Just run:
hero note "we should probably add rate limiting to the API"
This creates a one-liner note. Fast, minimal friction.
Notes are the entry point for knowledge. Over time, notes may graduate:
| From | To | When |
|---|---|---|
| Note about a pattern | Convention (/convention) | The pattern is worth standardizing |
| Note about a decision | Decision (/decide) | The decision needs formal documentation |
| Note about a feature idea | Spec (/design) | The idea is ready to become actionable work |
| Note about a bug pattern | Bug spec (/diagnose) | The pattern needs investigation |
When saving a note, if you notice it's really a decision or convention in disguise, mention that to the user: "This looks like it could be a decision record. Want me to create a /decide instead?"
Once saved, notes are indexed by hero index and searchable via hero search. The full text is indexed with FTS5 porter stemming, so even rough notes become findable later.