一键导入
skills-list
Get a list of currently available skills that you can invoke to perform database operations. Always check this list before attempting any operation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Get a list of currently available skills that you can invoke to perform database operations. Always check this list before attempting any operation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Add a new note or update an existing one. Creates the notes database if it doesn't exist.
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.
基于 SOC 职业分类
| name | skills-list |
| description | Get a list of currently available skills that you can invoke to perform database operations. Always check this list before attempting any operation. |
Any of these skills can be invoked by name via the Skill tool.
name: db-verify
description: Verify that the database exists and is properly initialized. Returns status indicating whether the database is ready for use. Use this before any operation that assumes the database exists.
name: db-init
description: 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.
name: db-read
description: Find and read documents from the database matching a query. Searches the index for relevant entries, then reads and synthesizes the content. Use this when the user wants to retrieve stored information.
name: db-list
description: 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: db-upsert
description: Create a new document or update an existing one. If the topic already exists, updates the document. If it's new, creates the document and adds it to the index. Use this when the user wants to store or update information.
name: db-delete
description: 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.