idea-capture
Capture IDEA messages into the project IDEAS.md file with readable metadata.
Install
mkdir -p .claude/skills/idea-capture && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15890" && unzip -o skill.zip -d .claude/skills/idea-capture && rm skill.zipInstalls to .claude/skills/idea-capture
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Capture IDEA messages into the project IDEAS.md file with readable metadata.About this skill
Idea Capture Skill
Purpose
Use this skill when the user writes IDEA: ... and wants the idea saved in this repository.
The goal is to keep a simple, append-only idea log in the root IDEAS.md file. The log should be readable in plain Markdown and easy to update when ideas are implemented.
Trigger
Use this skill when a user message starts with or clearly contains:
IDEA: <idea text>
Capture the text after the first IDEA: marker as the idea body. Preserve the user's meaning and wording; lightly clean only obvious extra whitespace.
File format
Store ideas in the repository root file:
IDEAS.md
If the file does not exist, create it with this heading:
# Ideas
Use this file to collect workshop and project ideas. New ideas are appended at the end so the list stays easy to scan.
Each idea must be a separate ## section appended to the end of the file:
## Short idea title
**Date:** YYYY-MM-DD
**Author:** @username
**Implemented:** No
Idea text goes here.
Capture procedure
- Read
IDEAS.mdfirst so existing ideas are preserved. - Derive a short, human-readable
##heading from the idea text. - Use the current date in
YYYY-MM-DDformat. - Use the current user as the author when available; otherwise use
Unknown. - Set
ImplementedtoNofor new ideas. - Append the new idea to the end of
IDEAS.md; do not reorder or rewrite older ideas unless the user asks. - Keep the idea text concise and readable. Use plain paragraphs unless the user provides a list.
Marking ideas implemented
When the user asks to mark an idea as done or implemented:
- Find the matching
##idea section. - Change
**Implemented:** Noto**Implemented:** Yes. - Preserve the original date, author, title, and idea text.
- If multiple ideas could match, ask which one to update.
Example prompt
IDEA: Add a short facilitator checklist for choosing the right Copilot mode during demos.