원클릭으로
notes-delete
Delete a note from the database. Removes the note file and its index entry.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Delete a note from the database. Removes the note file and its index entry.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Add a new note or update an existing one. Creates the notes database if it doesn't exist.
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-delete |
| description | Delete a note from the database. Removes the note file and its index entry. |
This skill removes a note from the notes database.
Use the Read tool to try reading notes-config.yaml.
If the file doesn't exist: Report: "Notes aren't configured yet. There's nothing to delete. I can help you set up notes — just ask me to add a note."
Stop execution.
Read 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 the Read tool to try reading <notes_path>/index.md.
If it doesn't exist, report: "The notes database hasn't been initialized yet. There's nothing to delete."
From the user's request, determine which note they want to delete.
Check the index for a matching topic. If no exact match, list available notes and ask for clarification.
Before deleting, confirm with the user:
"Are you sure you want to delete the note '[topic]'? This cannot be undone."
Only proceed if the user confirms.
Use Bash to remove the note file:
rm <notes_path>/<topic>.md
<notes_path>/index.mdReport that the note was deleted successfully.