Create book-list skill for managing reading list in MongoDB

This commit is contained in:
Connor Rhodes 2026-04-19 01:35:43 +00:00
parent e487b28c44
commit 463a04510e
2 changed files with 167 additions and 0 deletions

View file

@ -30,6 +30,7 @@ description: Master index of all skills in your robot assistant system. Your ass
| "proofread this," "proofread my email," "clean up this dictation," "polish this email" | **proofread-business-writing** |
| "polish my LinkedIn post," "clean up my LinkedIn draft," "turn this into a LinkedIn post," "edit my LinkedIn post" | **linkedin-post** |
| "use mongodb," "query my database," "add to mongo," "mongo," "database," "docdb" | **mongodb** |
| "add this to my book list," "add to my books," "what's on my reading list," "show me my to-read books" | **book-list** |
---
@ -143,6 +144,12 @@ description: Master index of all skills in your robot assistant system. Your ass
**File:** `skills/mongodb/SKILL.md`
**Dependencies:** Python with `pymongo`, `uv` CLI for dependency management
### Book List
**Purpose:** Manage a personal reading list stored in MongoDB. Add books, update status, query by tag/author/status, manage reading progress.
**Triggers:** "add this to my book list," "add to my books," "what's on my reading list," "show me my to-read books," "mark [book] as reading/completed"
**File:** `skills/book-list/SKILL.md`
**Dependencies:** mongodb skill (for database operations)
---
## Adding New Skills