원클릭으로
notes-add
Add a new note or update an existing one. Creates the notes database if it doesn't exist.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Add a new note or update an existing one. Creates the notes database if it doesn't exist.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Delete a note from the database. Removes the note file and its index entry.
List all notes in the database with their topics and descriptions.
Read a specific note from the database. Use this to get fresh content after making changes.
Remove a document from the database. Deletes the document file and removes its entry from the index. Use this when the user wants to delete stored information.
Initialize the database by creating the database/ directory and an empty index.md file. Safe to call if database already exists - will not overwrite existing data.
List all documents currently stored in the database. Reads the index and presents a summary of all available documents with their topics and descriptions.
| name | notes-add |
| description | Add a new note or update an existing one. Creates the notes database if it doesn't exist. |
This skill creates a new note or updates an existing one in the notes database.
Use the Read tool to try reading notes-config.yaml.
If the file doesn't exist:
./notes as default)notes-config.example.yaml to get the templatenotes-config.yaml with their chosen path using the Write toolRead notes-config.yaml and extract the notes_path value.
Handle path resolution:
~, expand it to the user's home directory./, it's relative to the config file locationUse Bash to check if the notes directory exists:
ls <notes_path>
If the directory doesn't exist:
mkdir -p <notes_path># Notes Index
A catalog of all notes in the database.
## Notes
*No notes yet.*
Write this to <notes_path>/index.md using the Write tool.
From the user's input, determine:
If unclear, ask the user for clarification.
Use the Read tool to read <notes_path>/index.md.
Look for an existing entry matching the topic. Note whether this is a new note or an update.
Create the note content:
# [Topic Title]
[Content organized clearly]
---
*Last updated: [current date]*
If new note: Use Write tool to create <notes_path>/<topic>.md
If updating: Use Read tool to read existing note first, merge content appropriately, then Write the updated version.
If new note:
<notes_path>/index.md- [Topic Title](topic.md) - Brief descriptionIf updating:
Report what was created or updated, and mention the topic name for future reference.