A Claude Code plugin that orchestrates business intelligence analysis across Strategy Cloud (MicroStrategy) and routes actionable insights to 7 enterprise applications.
Single request → Strategy analysis → Intelligent routing → Enterprise-wide action
- Discover — Browses the Strategy Cloud library and inventories all dashboards
- Analyze — Opens each dashboard and detects anomalies, threshold breaches, and trends
- Enrich — Conducts web searches for external context (competitor news, market trends, macro factors)
- Synthesize — Groups findings by Line of Business (Sales, Marketing, Finance, Operations, HR, Customer Success, Executive)
- Deliver — Routes findings to the right enterprise tools based on LOB context and severity
| Tool | What Gets Routed |
|---|---|
| HubSpot | Sales intelligence — deal risk scores, pipeline updates, task creation |
| Jira | Operational blockers — issues with severity and remediation steps |
| Confluence | Investigation pages for critical findings requiring root cause analysis |
| Asana | LOB-scoped tasks with severity, dashboard links, and due dates |
| Slack | Summary messages, critical alerts, LOB-specific channel posts |
| Canva | Executive briefing presentations with findings and recommendations |
| Figma | Design annotations linked to Strategy findings |
| Command | Purpose |
|---|---|
/strategy-command-center:strategy-review |
Full end-to-end review across all dashboards and tools |
/strategy-command-center:quick-scan |
Fast anomaly scan — summary table only, no tool routing |
/strategy-command-center:sales-review |
Sales-focused — Strategy to HubSpot and Asana |
/strategy-command-center:ops-review |
Operations-focused — Strategy to Jira, Confluence, and Asana |
/strategy-command-center:executive-briefing |
Executive-focused — Strategy to Slack, Canva, and Figma |
The command-center agent runs the full orchestration autonomously:
- Parses user intent (scope, LOBs, urgency, target tools)
- Queries Strategy iteratively with different granularity per downstream tool
- Runs dashboard analysis and web enrichment
- Routes to all appropriate enterprise tools
- Produces an execution summary with artifact links
Detection patterns are configured in references/finding-patterns.json:
- Spikes: >20% value increase vs prior period
- Drops: >15% value decrease vs prior period
- Outliers: Data points beyond 2 standard deviations
- Trends: 3+ consecutive periods moving in the same direction
- Threshold breaches: Red/yellow status indicators, target misses >10%
Findings are classified as Critical (immediate action), Warning (near-term attention), or Informational (awareness only).
strategy-command-center/
├── .claude-plugin/plugin.json # Plugin manifest
├── .mcp.json # MCP server configurations
├── skills/ # 9 model-invoked skills
│ ├── analyze-dashboards/ # Dashboard scanning and anomaly detection
│ ├── enrich-findings/ # Web search enrichment
│ ├── synthesize-by-lob/ # LOB grouping and prioritization
│ ├── route-to-hubspot/ # HubSpot task/deal routing
│ ├── route-to-atlassian/ # Jira issue and Confluence page creation
│ ├── route-to-asana/ # Asana task creation by LOB
│ ├── route-to-slack/ # Slack alerts and summaries
│ ├── generate-visuals/ # Canva presentations and Figma annotations
│ └── generate-executive-summary/ # Formatted executive briefing report
├── commands/ # 5 user-invoked commands
├── agents/ # Autonomous command-center agent
├── hooks/ # Auto-alert on critical findings
└── references/ # Detection patterns, LOB mappings, tool templates
- Claude Code with plugin support
- Strategy Cloud (MicroStrategy) access via MCP
- MCP servers configured for target enterprise tools:
- Strategy, Slack, Asana, HubSpot, Atlassian, Canva, Figma
-
Clone this repository:
git clone https://github.com/tzockoll-creator/Strategy-Command-Center.git -
Load the plugin:
claude --plugin-dir ./Strategy-Command-Center -
Configure LOB mappings in
references/lob-mappings.json:- Set
assigneeandasana_projectfor each Line of Business - Adjust
dashboard_keywordsandmetricsto match your Strategy Cloud structure
- Set
-
Run a quick scan to verify:
/strategy-command-center:quick-scan
- Use natural language, not SQL. Both Strategy AI agents and the MCP USL accept natural language queries. Write questions the way you would ask a colleague (e.g., "What were total sales last quarter by region?").
- Only use tables in the playground schema. All queries should target the playground schema exclusively. Do not reference tables outside of it.
- Dashboard viewing defaults. For dashboard analysis only, use
demo.microstrategy.comas the default environment and the Office Royale Sales dashboard unless otherwise specified. For all other analysis (data queries, reporting, etc.), use the Strategy USL and Strategy Agent MCPs directly. - Tool routing fallback. If no specific project or assignee is configured for an enterprise tool (e.g., no Asana project set), discover the best-fit project or workspace in that tool automatically rather than skipping the routing. Use the tool's MCP to list available projects/workspaces and select the most relevant one based on LOB context and finding type.
- Missing MCP servers. If an enterprise tool's MCP server is not connected, skip that tool's routing step entirely. Dashboard analysis (via the Strategy MCP) should always run regardless — only the downstream enterprise routing is skipped.
- Anomaly thresholds: Edit
references/finding-patterns.jsonto adjust spike/drop percentages and trend period lengths - LOB definitions: Edit
references/lob-mappings.jsonto add/modify Lines of Business and their tool routing - Output templates: Edit
references/tool-templates.jsonto customize how findings appear in each enterprise tool
MIT