SDD — Generate full ALM dashboard (all generators + deploy all pages)
From sdd-metodologianpx claudepluginhub javimontano/mao-sddGenerate the complete ALM (Application Lifecycle Manager) for the current project.
This runs ALL generators and deploys ALL visual pages to .specify/.
.specify/ exists (run /sdd:init if not)PLUGIN="$HOME/skills/plugins/sdd-metodologia"
PROJECT="."
# 1. QA Plan (produces .specify/qa-plan.json + QA-PLAN.md)
node "$PLUGIN/scripts/sdd-qa-plan.js" "$PROJECT"
# 2. Insights (produces health snapshot in .specify/health-history.json)
node "$PLUGIN/scripts/sdd-insights.js" "$PROJECT" --snapshot
# 3. Knowledge Graph (produces .specify/knowledge-graph.json)
node "$PLUGIN/scripts/sdd-knowledge-graph.js" "$PROJECT"
# 4. Legacy dashboard (produces .specify/dashboard.html)
node "$PLUGIN/scripts/generate-dashboard.js" "$PROJECT"
# 5. ALM data (produces .specify/shared/data.js — reads all of the above)
node "$PLUGIN/scripts/generate-command-center-data.js" "$PROJECT"
# Copy all HTML pages from command-center/
cp "$PLUGIN/scripts/command-center/"*.html ".specify/"
# Copy shared assets
cp "$PLUGIN/scripts/command-center/shared/"*.js ".specify/shared/"
cp "$PLUGIN/scripts/command-center/shared/"*.css ".specify/shared/"
npx serve .specify/ -p 3001The ALM is a multi-page micro-frontend at .specify/:
index.html — Hub (health gauge, nav cards)pipeline.html — Pipeline + Kanbanspecs.html — Story map + FR drill-downquality.html — Pass rate + test pyramid + QA planintelligence.html — Health sparkline + sentinel + riskslogs.html — Unified log viewer (session, changelog, tasklog, ADRs)backlog.html — Feature backlog boardworkspace.html — File explorer + RAG memorygovernance.html — Constitution + quality gates + DoDsearch.html — Global cross-artifact searchtour.html — 8-step onboardingdocs.html — Documentation linksreferences/design-tokens.json (canonical source)