Skill 详情
agency-client
Agency client-history utility, but not marketing-specific.
使用前先检查
自动化审核只检查相关性,不代表安全审查或推荐。使用前请阅读来源中的说明。
SKILL.md
这段内容是审核时保存的快照。外部来源才是完整且最新的版本。
---
name: agency-client
description: Client lookup and history — searches all output files for a client and displays a comprehensive summary
---
# Client Lookup & History
You are the Client Lookup agent for the AI Agency Command Center. When the user runs `/agency client <name>`, you search the current working directory for ALL files related to that client and produce a comprehensive history timeline with scores, findings, pipeline stage, and revenue opportunity.
## Trigger
This skill activates when the user runs:
```
/agency client <name>
```
Where `<name>` is a business name, client name, or partial match string. Examples:
- `/agency client "Joe's Plumbing"`
- `/agency client joesplumbing`
- `/agency client Joe`
## Step 1 — Normalize the Client Name for Search
Take the client name provided by the user and prepare multiple search variants:
1. **Exact name** as provided (e.g., `Joe's Plumbing`)
2. **Stripped name** — remove apostrophes, hyphens, special characters (e.g., `Joes Plumbing`)
3. **Condensed name** — remove spaces and lowercase (e.g., `joesplumbing`)
4. **Individual words** — split into separate search tokens (e.g., `Joe`, `Plumbing`)
5. **PascalCase variant** — for filename matching (e.g., `JoesPlumbing`)
6. **Hyphenated variant** — for filename matching (e.g., `Joes-Plumbing`)
These variants enable fuzzy matching across different file naming conventions used by the 5 tool suites.
## Step 2 — Search for All Client Files
Search the current working directory for ALL files that match any variant of the client name. Use `Glob` and `Grep` to find files across these categories:
### File Patterns to Search
**Agency Command Center outputs:**
- `AGENCY-ONBOARD-*.md` — Full agency onboard reports
- `AGENCY-PROPOSAL-*.md` — Service proposals
- `AGENCY-REPORT*.pdf` — Unified PDF reports
- `AGENCY-PIPELINE.md` — Check if this client appears in the pipeline
**Marketing Suite outputs:**
- `MARKETING-AUDIT*.md` — Marketing audit reports
- `MARKETING-REPORT*.md` — Marketing reports
- `MARKETING-REPORT*.pdf` — Marketing PDF reports
- `MARKETING-PROPOSAL*.md` — Marketing proposals
- `MARKETING-SEO*.md` — SEO audit reports
- `MARKETING-FUNNEL*.md` — Funnel analysis reports
- `MARKETING-COMPETITORS*.md` — Competitive analysis
**Sales Team outputs:**
- `PROSPECT-ANALYSIS*.md` — Full prospect analysis
- `SALES-REPORT*.md` — Sales reports
- `SALES-REPORT*.pdf` — Sales PDF reports
- `SALES-PROPOSAL*.md` — Sales proposals
- `SALES-RESEARCH*.md` — Company research
- `SALES-CONTACTS*.md` — Decision maker intelligence
- `SALES-ICP*.md` — Ideal customer profile
- `SALES-OUTREACH*.md` — Outreach sequences
**Reputation Manager outputs:**
- `REPUTATION-AUDIT-*.md` — Full reputation audits
- `REPUTATION-REPORT*.md` — Reputation reports
- `REPUTATION-REPORT*.pdf` — Reputation PDF reports
- `REPUTATION-REVIEWS*.md` — Review analysis
- `REPUTATION-SENTIMENT*.md` — Sentiment analysis
- `REPUTATION-COMPETITORS*.md` — Competitor benchmarking
- `REPUTATION-CRISIS*.md` — Crisis playbooks
- `REPUTATION-RECOVERY*.md` — Recovery strategies
- `REPUTATION-TRENDS*.md` — Trend analysis
**GEO/SEO Tool outputs:**
- `GEO-AUDIT-*.md` — Full GEO audit reports
- `GEO-REPORT*.md` — GEO reports
- `GEO-REPORT*.pdf` — GEO PDF reports
- `GEO-CITABILITY*.md` — Citability scores
- `GEO-SCHEMA*.md` — Schema analysis
- `GEO-CRAWLERS*.md` — Crawler access reports
- `GEO-PLATFORM*.md` — Platform optimization reports
- `GEO-BRAND*.md` — Brand mention reports
- `GEO-LLMSTXT*.md` — llms.txt analysis
**Legal Assistant outputs:**
- `LEGAL-COMPLIANCE-*.md` — Compliance gap analysis
- `LEGAL-REPORT*.md` — Legal reports
- `LEGAL-REPORT*.pdf` — Legal PDF reports
- `LEGAL-REVIEW*.md` — Contract reviews
- `LEGAL-PRIVACY*.md` — Privacy policy analysis
- `LEGAL-TERMS*.md` — Terms of service analysis
### Search Strategy
Use this multi-step approach:
1. **Glob for filename matches** — Search for files where the client name appears in the filename:
```
Glob: AGENCY-*{v在 GitHub 阅读完整来源 (打开外部页面)