assistant-skills/_skill-index.md

83 lines
3.6 KiB
Markdown

---
name: skill-index
description: Master index of all skills in your robot assistant system. Your assistant reads this to decide which skill to use for a given request.
---
# Skill Index
**Your assistant should read this file when processing any request.** This is the routing table — it maps what you say to which skill handles the job.
---
## Quick Trigger Reference
| You say... | Skill to use |
|------------|-------------|
| "summarize meeting," "meeting notes," "what happened in the meeting" | **meeting-notes** |
| "check my Drafts inbox," "process my inbox," "what's in Drafts" | **drafts-inbox** |
| "run my briefing," "morning briefing," "what's my day look like" | **daily-briefing** |
| "run my shutdown," "end of day," "close out the day" | **shutdown-routine** |
| "weekly review," "how'd my week go," "plan my week," "Sunday review" | **weekly-review** |
| "organize these files," "sort this folder," "clean up my files," "rename these" | **file-organizer** |
| "run the assembler for video [N]," "assembler for video [N]," "build video [N]" | **robot-assistant-assembler** |
---
## Skills
### Meeting Notes
**Purpose:** Takes raw meeting notes and produces a clean, formatted summary with decisions, action items, and follow-ups.
**Triggers:** "summarize meeting," "meeting notes," "what happened in the meeting"
**File:** `Skills/meeting-notes.md`
**Dependencies:** None
### Drafts Inbox
**Purpose:** Reads all Drafts tagged "cowork," processes each item, and archives when done.
**Triggers:** "check my Drafts inbox," "process my inbox," "what's in Drafts"
**File:** `Skills/drafts-inbox.md`
**Dependencies:** Drafts MCP connector
### Daily Briefing
**Purpose:** Produces a morning overview of your day — calendar, tasks, deadlines, and anything else you need to know.
**Triggers:** "run my briefing," "morning briefing," "what's my day look like"
**File:** `Skills/daily-briefing.md`
**Dependencies:** Calendar MCP connector (when set up)
### Shutdown Routine
**Purpose:** Reviews the day, checks what's outstanding, and previews tomorrow.
**Triggers:** "run my shutdown," "end of day," "close out the day"
**File:** `Skills/shutdown-routine.md`
**Dependencies:** None
### Weekly Review
**Purpose:** A weekly check-in workflow that reviews the past week, scans what's ahead, and produces a summary with priorities.
**Triggers:** "weekly review," "how'd my week go," "plan my week," "Sunday review"
**File:** `Skills/weekly-review.md`
**Dependencies:** Calendar MCP connector (when set up)
### File Organizer
**Purpose:** Scans a folder for files that don't match your naming conventions, proposes renames and folder placement, and executes on approval.
**Triggers:** "organize these files," "sort this folder," "clean up my files," "rename these"
**File:** `Skills/file-organizer.md`
**Dependencies:** Naming conventions documented in CLAUDE.md
### Robot Assistant Assembler
**Purpose:** Personalizes the Starter Kit as you work through the video series. Each module asks questions about your work and customizes the corresponding template.
**Triggers:** "run the assembler for video [N]," "assembler for video [N]," "build video [N]"
**File:** `Skills/robot-assistant-assembler.md`
**Dependencies:** Starter Kit template files
---
## Adding New Skills
When you build a new skill:
1. Create the skill file in the `Skills/` folder
2. Add an entry to this index with triggers, purpose, and dependencies
3. Add the triggers to the Quick Trigger Reference table at the top
The index is a living document. Update it every time you add, change, or remove a skill.
---
*Started with the Robot Assistant Field Guide Starter Kit. Customized in Video 5 via the assembler.*