一键导入
client
Manage client relationships. USE WHEN user asks about clients, follow-ups, client emails, or who needs attention.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage client relationships. USE WHEN user asks about clients, follow-ups, client emails, or who needs attention.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Search Amazon, extract product data, and present ranked recommendations. Use when user asks to shop on Amazon, find products, compare items, or research purchases. Prioritizes review count over rating.
Write and iterate on blog articles from idea to publishable draft. Use this skill whenever the user wants to write a new article, continue working on a draft, edit or improve an existing article, or mentions /article. Covers the full lifecycle — from brainstorming and outlining to polishing and finalizing. Also triggers when the user says things like "write a blog post about...", "I have an article idea", "help me finish this draft", or "improve this article".
Interact with personal bank accounts via Enable Banking CLI to check balances, browse transactions, analyze spending, forecast cash flow, and manage alerts. Use this skill whenever the user mentions money, bank accounts, balances, transactions, spending, budgets, forecasts, cash flow, or anything related to personal finances. Also trigger when the user asks questions like "how much did I spend", "what is my balance", "my latest transactions", "cash flow forecast", or any financial query. Proactively use this skill even if the user doesn't explicitly say "banking" — any mention of expenses, income, categories like "groceries", "rent", "transport", or account aliases should trigger it.
Stress-test a raw idea before turning it into a project: reformulate, research the market with Exa deep search, grill the assumptions adversarially, then output a decision log with Go/No-Go/Pivot verdict. Use when the user says /brainstorm, 'j'ai une idée', 'je pense lancer', 'je voudrais creer', 'idée de projet', 'idée de boite', 'on devrait faire X', or shares any half-baked product/business/side-project idea they want to vet before commiting. Especially valuable when the idea is fresh, unvalidated, and the user hasn't yet decided to pursue it.
Daily and weekly brief workflows. USE WHEN user says /brief morning, /brief evening, /brief weekly, /brief monthly, or synonyms like 'start my day', 'end of day', 'weekly brief', 'monthly brief'.
Life coach that helps with personal growth, goals, career, relationships, health, productivity, and daily life. USE WHEN user says /coach, asks for life advice, wants accountability, mentions feeling stuck, overwhelmed, unmotivated, or needs help making a life decision. Also triggers on 'coach me', 'I need advice', 'help me decide', 'I'm stuck', 'I don't know what to do'.
| name | client |
| description | Manage client relationships. USE WHEN user asks about clients, follow-ups, client emails, or who needs attention. |
Manage clients using Clients/ folder.
| 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 |
workflows/check-followups.mdworkflows/draft-email.mdworkflows/add-client.mdClient files live in Clients/*.md with frontmatter:
---
type: client
name: Alice Martin
email: alice@example.com
company: Data-Services
stage: active # lead, active, customer
next_action: 2026-01-10
next_action_note: Follow up on proposal
last_contact: 2026-01-05
---
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