Skill 詳細
agency-stack
Agency tooling status checker, but not specifically marketing operations.
使用前に確認
自動レビューは関連性のみを確認し、安全性や推奨を保証しません。使用前に出典の説明を読んでください。
SKILL.md
これはレビュー時に保存された抜粋です。完全で最新の内容は外部ソースを確認してください。
---
name: agency-stack
description: Tool suite status checker — shows which of the 5 AI tool suites are installed and ready
---
# Tool Suite Status Checker
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.
## Trigger
This skill activates when the user runs:
```
/agency stack
```
No arguments required.
## Step 1 — Check Each Tool Suite
Check the following 5 paths to determine which suites are installed. Use `Bash` to test file existence:
```bash
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 Details Reference
| 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` |
## Step 2 — Count Sub-Skills for Installed Suites
For each installed suite, count the actual number of SKILL.md files in its directory tree:
```bash
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.
## Step 3 — Check for Version Info
For each installed suite, check if there is version information available:
1. Look for a `VERSION` file in the suite root directory
2. Check the first few lines of the main SKILL.md for version mentions
3. Check for a `package.json` or `metadata.json` in the suite directory
If version info is not available, display "latest" as the version.
## Step 4 — Check the Agency Suite Itself
Also verify the Agency Command Center's own installation:
```bash
test -f ~/.claude/skills/agency/SKILL.md && echo "INSTALLED" || echo "MISSING"
```
Count agency sub-skills:
```bash
find ~/.claude/skills/agency -name "SKILL.md" 2>/dev/null | wc -l
```
## Step 5 — Display the Stack Status
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/
CoGitHub で全文を読む (外部ページ)