Dashboard
Skill azadmotala/claude-code-team-builder/examples/saas-dashboard/.claude/skills/dashboard
A claude code skill that generates a complete AI development team — agents, skills, routing rules, and project context — for any software project.
npx -y skills add azadmotala/claude-code-team-builder --skill dashboardAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Generate the visual dashboard for TenantFlow. Copies the fixed dashboard template to the workspace. The dashboard reads tasks.json and progress.log from disk and auto-refreshes every 5 seconds.
SKILL.md
1.3 KB, as published. Nobody here has run it
Dashboard
Copies the dashboard template to .claude/workspace/dashboard.html.
Workflow
- Copy the template — copy
references/templates/dashboard.htmlto.claude/workspace/dashboard.html - Do NOT regenerate the HTML from scratch — always use the fixed template
- Instruct user: "Open in a browser. Serve with
python -m http.server 8000from.claude/workspace/for auto-refresh."
How the dashboard works
- Reads
tasks.jsonandprogress.logvia fetch (relative paths) - Auto-refreshes every 5 seconds
- Shows: status counts, overall progress bar, milestone progress bars, task list with status badges, activity timeline
- No generation needed — the same HTML file works for any project because it reads task data dynamically
Important
- The dashboard must be served from
.claude/workspace/so it can findtasks.jsonandprogress.log - If
tasks.jsonis in.claude/(one level up), the dashboard tries../tasks.jsonas a fallback - The template lives in
references/templates/dashboard.html— do not modify it per project