$npx -y skills add ArtemXTech/claude-code-obsidian-starter --skill clientManage client relationships. USE WHEN user asks about clients, follow-ups, client emails, or who needs attention.
| 1 | # Client Skill |
| 2 | |
| 3 | Manage clients using `Clients/` folder. |
| 4 | |
| 5 | ## Quick Commands |
| 6 | |
| 7 | | Say | Does | |
| 8 | |-----|------| |
| 9 | | "Who needs follow-up?" | Shows clients needing attention | |
| 10 | | "Tell me about [name]" | Client context and history | |
| 11 | | "Draft email to [name]" | Personalized follow-up email | |
| 12 | | "Add client [name]" | Creates new client file | |
| 13 | |
| 14 | ## Workflow Routing |
| 15 | |
| 16 | - Check follow-ups → `workflows/check-followups.md` |
| 17 | - Draft client email → `workflows/draft-email.md` |
| 18 | - Add new client → `workflows/add-client.md` |
| 19 | |
| 20 | ## Data |
| 21 | |
| 22 | Client files live in `Clients/*.md` with frontmatter: |
| 23 | |
| 24 | ```yaml |
| 25 | --- |
| 26 | type: client |
| 27 | name: Sarah Chen |
| 28 | email: sarah@example.com |
| 29 | company: TechStartup Inc |
| 30 | stage: active # lead, active, customer |
| 31 | next_action: 2026-01-10 |
| 32 | next_action_note: Follow up on proposal |
| 33 | last_contact: 2026-01-05 |
| 34 | --- |
| 35 | ``` |
| 36 | |
| 37 | ## Quick Queries |
| 38 | |
| 39 | **List all clients:** |
| 40 | ```bash |
| 41 | ls Clients/*.md |
| 42 | ``` |
| 43 | |
| 44 | **Find who needs follow-up:** |
| 45 | ```bash |
| 46 | grep -l "next_action:" Clients/*.md | while read f; do |
| 47 | echo "=== $(basename "$f" .md) ===" |
| 48 | grep -E "^(next_action|next_action_note):" "$f" |
| 49 | done |
| 50 | ``` |
| 51 | |
| 52 | **Find by stage:** |
| 53 | ```bash |
| 54 | grep -l "stage: lead" Clients/*.md |
| 55 | ``` |