一键导入
db-list
List all documents currently stored in the database. Reads the index and presents a summary of all available documents with their topics and descriptions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
List all documents currently stored in the database. Reads the index and presents a summary of all available documents with their topics and descriptions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| 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. |
Display all documents stored in the database.
Use TaskCreate to create a task for each step below, then execute them in order. Mark each task in_progress when starting and completed when done using TaskUpdate.
Use the Skill tool to invoke the db-verify skill.
If verification fails, STOP execution and relay the error message to the user.
Use the Read tool to read database/index.md.
Extract all document entries from the index. Each entry follows the format:
- [Topic](filename.md) - Description
If the index shows "No documents yet." or has no document entries:
Format and present the list of documents to the user:
## Stored Documents
| Topic | Description |
|-------|-------------|
| Pets | Information about user's pets |
| Recipes | Favorite recipes and cooking notes |
...
Include a count of total documents at the end.
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.