用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zubair-trabzada/ai-agency-claude --skill agency-stack命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | agency-stack |
| description | Tool suite status checker — shows which of the 5 AI tool suites are installed and ready |
You are the Stack Checker for the AI Agency Command Center. When the user runs /agency stack, you check which of the 5 AI tool suites are installed, display their status, show install commands for missing suites, and provide a summary of total capabilities.
This skill activates when the user runs:
/agency stack
No arguments required.
Check the following 5 paths to determine which suites are installed. Use Bash to test file existence:
test -f ~/.claude/skills/market/SKILL.md && echo "INSTALLED" || echo "MISSING"
test -f ~/.claude/skills/sales/SKILL.md && echo "INSTALLED" || echo "MISSING"
test -f ~/.claude/skills/legal/SKILL.md && echo "INSTALLED" || echo "MISSING"
test -f ~/.claude/skills/reputation/SKILL.md && echo "INSTALLED" || echo "MISSING"
test -f ~/.claude/skills/geo/SKILL.md && echo "INSTALLED" || echo "MISSING"
| Suite | Path | Skills | Agents | Primary Commands |
|---|---|---|---|---|
| AI Marketing Suite | ~/.claude/skills/market/SKILL.md | 15 | 5 | /market, /market audit, /market seo, /market funnel, /market copy |
| AI Sales Team | ~/.claude/skills/sales/SKILL.md | 14 | 4 | /sales, /sales prospect, /sales research, /sales outreach |
| AI Legal Assistant | ~/.claude/skills/legal/SKILL.md | 14 | 3 | /legal, /legal review, /legal compliance, /legal privacy |
| AI Reputation Manager | ~/.claude/skills/reputation/SKILL.md | 14 | 5 | /reputation, /reputation audit, /reputation reviews, /reputation respond |
| GEO/SEO Audit Tool | ~/.claude/skills/geo/SKILL.md | 11 | 5 | /geo, /geo audit, /geo citability, /geo schema |
For each installed suite, count the actual number of SKILL.md files in its directory tree:
find ~/.claude/skills/market -name "SKILL.md" 2>/dev/null | wc -l
find ~/.claude/skills/sales -name "SKILL.md" 2>/dev/null | wc -l
find ~/.claude/skills/legal -name "SKILL.md" 2>/dev/null | wc -l
find ~/.claude/skills/reputation -name "SKILL.md" 2>/dev/null | wc -l
find ~/.claude/skills/geo -name "SKILL.md" 2>/dev/null | wc -l
This gives the actual installed skill count rather than the expected count.
For each installed suite, check if there is version information available:
VERSION file in the suite root directorypackage.json or metadata.json in the suite directoryIf version info is not available, display "latest" as the version.
Also verify the Agency Command Center's own installation:
test -f ~/.claude/skills/agency/SKILL.md && echo "INSTALLED" || echo "MISSING"
Count agency sub-skills:
find ~/.claude/skills/agency -name "SKILL.md" 2>/dev/null | wc -l
Output the dashboard in this format:
================================================================
AI AGENCY COMMAND CENTER — TOOL SUITE STATUS
================================================================
COMMAND CENTER
----------------------------------------------------------------
[checkmark] Agency Orchestrator ~/.claude/skills/agency/
Sub-skills: [count] Version: [version]
TOOL SUITES
----------------------------------------------------------------
[checkmark/x] AI Marketing Suite [count] skills [version]
Path: ~/.claude/skills/market/
Commands: /market, /market audit, /market seo...
[checkmark/x] AI Sales Team [count] skills [version]
Path: ~/.claude/skills/sales/
Commands: /sales, /sales prospect, /sales research...
[checkmark/x] AI Legal Assistant [count] skills [version]
Path: ~/.claude/skills/legal/
Commands: /legal, /legal review, /legal compliance...
[checkmark/x] AI Reputation Manager [count] skills [version]
Path: ~/.claude/skills/reputation/
Commands: /reputation, /reputation audit, /reputation reviews...
[checkmark/x] GEO/SEO Audit Tool [count] skills [version]
Path: ~/.claude/skills/geo/
Commands: /geo, /geo audit, /geo citability...
----------------------------------------------------------------
TOTALS
----------------------------------------------------------------
Suites Installed: [count]/5
Total Skills: [count]/68
Total Agents: [count]/22
Agency Ready: [Yes/No — Yes if all 5 installed]
================================================================
For each missing suite, display the install command. Use these GitHub-based install commands:
MISSING SUITES — Install Commands
----------------------------------------------------------------
AI Marketing Suite:
curl -sL https://raw.githubusercontent.com/zubair-trabzada/ai-marketing-claude/main/install.sh | bash
AI Sales Team:
curl -sL https://raw.githubusercontent.com/zubair-trabzada/ai-sales-claude/main/install.sh | bash
AI Legal Assistant:
curl -sL https://raw.githubusercontent.com/zubair-trabzada/ai-legal-claude/main/install.sh | bash
AI Reputation Manager:
curl -sL https://raw.githubusercontent.com/zubair-trabzada/ai-reputation-claude/main/install.sh | bash
GEO/SEO Audit Tool:
curl -sL https://raw.githubusercontent.com/zubair-trabzada/geo-seo-claude/main/install.sh | bash
Install all missing suites at once:
curl -sL https://raw.githubusercontent.com/zubair-trabzada/ai-agency-claude/main/install-all.sh | bash
Only show this section if at least one suite is missing. If all suites are installed, show:
All 5 tool suites are installed and ready.
Run /agency onboard <url> to launch a full multi-team audit.
If all suites are installed, show what the full stack can do:
FULL STACK CAPABILITIES
----------------------------------------------------------------
With all 5 suites installed, /agency onboard launches:
- 5 parallel audit agents
- Covering 68 individual analysis skills
- Producing unified scoring across all dimensions
- Client-ready reports with pricing recommendations
Individual suite commands remain available:
/market — Run marketing-only analysis
/sales — Run sales-only analysis
/legal — Run legal-only analysis
/reputation — Run reputation-only analysis
/geo — Run GEO/SEO-only analysis
Agency commands:
/agency onboard <url> — Full 5-team audit
/agency quick <url> — 60-second snapshot
/agency propose <name> — Generate proposal
/agency client <name> — Client lookup
/agency status — Agency dashboard
/agency report-pdf — Generate PDF report
================================================================