Skip to content
Productivity
Skill

/client

Manage client relationships. USE WHEN user asks about clients, follow-ups, client emails, or who needs attention.

From plugin
claude-code-obsidian-starter
2205 skills1 command
Install
$ npx -y skills add ArtemXTech/claude-code-obsidian-starter --skill client --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/client

Context preview

The summary Claude sees to decide when to auto-load this skill.

Manage client relationships. USE WHEN user asks about clients, follow-ups, client emails, or who needs attention.

SKILL.md

client.SKILL.md
name: client
description: Manage client relationships. USE WHEN user asks about clients, follow-ups, client emails, or who needs attention.

Client Skill

Manage clients using `Clients/` folder.

Quick Commands

| Say | Does | |-----|------| | "Who needs follow-up?" | Shows clients needing attention | | "Tell me about [name]" | Client context and history | | "Draft email to [name]" | Personalized follow-up email | | "Add client [name]" | Creates new client file |

Workflow Routing

  • Check follow-ups → `workflows/check-followups.md`
  • Draft client email → `workflows/draft-email.md`
  • Add new client → `workflows/add-client.md`

Data

Client files live in `Clients/*.md` with frontmatter:

---
type: client
name: Sarah Chen
email: sarah@example.com
company: TechStartup Inc
stage: active       # lead, active, customer
next_action: 2026-01-10
next_action_note: Follow up on proposal
last_contact: 2026-01-05
---

Quick Queries

**List all clients:**

ls Clients/*.md

**Find who needs follow-up:**

grep -l "next_action:" Clients/*.md | while read f; do
  echo "=== $(basename "$f" .md) ==="
  grep -E "^(next_action|next_action_note):" "$f"
done

**Find by stage:**

grep -l "stage: lead" Clients/*.md
Ships withclaude-code-obsidian-starter

Free starter kit: Claude Code + Obsidian. Pre-configured vault with skills for projects, tasks, clients, and daily routines. Just open and go.

Get the whole plugin
Stats
220
Stars
46
Forks
Quiet
Maintenance
Typst
Language
6mo ago
Last commit
7mo ago
Created

Repo: ArtemXTech/claude-code-obsidian-starter