Detalle del Skill

agency-stack

Agency tooling status checker, but not specifically marketing operations.

CoincidenciaPosibleRevisado para agencia de marketing
Fuentezubair-trabzada/ai-agency-claudeFuente externa
Instalaciones reportadas12Solo señal de popularidad

Revisar antes de usar

La revisión automática comprueba relevancia, no seguridad ni respaldo. Lee las instrucciones de la fuente antes de usar este Skill.

Vista previa guardada

SKILL.md

Este extracto es una copia guardada durante la revisión. La fuente externa contiene la versión completa y actual.

---
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/
                 Co
Leer la fuente completa en GitHub (abre una página externa)
Contexto

Trabajo relacionado