Agent Skills: /attributes:dashboard

Compact text-based health dashboard showing scores, findings, and severity breakdown. Use for at-a-glance codebase health visibility.

UncategorizedID: laurigates/claude-plugins/attributes-dashboard

Install this agent skill to your local

pnpm dlx add-skill https://github.com/laurigates/claude-plugins/tree/HEAD/codebase-attributes-plugin/skills/attributes-dashboard

Skill Files

Browse the full folder contents for attributes-dashboard.

Download Skill

Loading file tree…

codebase-attributes-plugin/skills/attributes-dashboard/SKILL.md

Skill Metadata

Name
attributes-dashboard
Description
Compact text-based health dashboard showing scores, findings, and severity breakdown. Use for at-a-glance codebase health visibility.

/attributes:dashboard

Compact text-based health dashboard with scores, bars, and findings.

When to Use This Skill

| Use this skill when... | Use another approach when... | |------------------------|------------------------------| | Want quick visual health overview | Need machine-readable JSON (use /attributes:collect) | | Reviewing health before a session | Want to fix issues (use /attributes:route) | | Comparing categories at a glance | Need detailed diagnostics (use /health:check) |

Parameters

| Parameter | Description | |-----------|-------------| | --format | Output format: compact (default), detailed |

Execution

Step 1: Load Attribute Data

Read .claude/attributes.json if it exists. Otherwise, perform the same checks as /attributes:collect inline.

Step 2: Render Dashboard

Output a compact terminal-style dashboard:

Health: 72/100 (C)  [██████████████░░░░░░]

  Documentation    15/20  [███████████████░░░░░]
  Testing          12/20  [████████████░░░░░░░░]
  Security          8/20  [████████░░░░░░░░░░░░]  2 critical/high
  Code Quality     17/20  [█████████████████░░░]
  CI/CD            20/20  [████████████████████]

  Critical: 2  High: 3  Medium: 5  Low: 8

  ⚠ Critical (2)
    security: .env file committed to repository
    security: No security scanning in CI
  ⚠ High (3)
    tests: No test directory or test files found
    tests: No CI workflow runs tests
    security: Missing .gitignore
  ▲ Medium (5)
    docs: Missing CLAUDE.md
    ...

Step 3: Detailed Mode

If --format detailed, also show:

  • Action suggestions for each finding
  • Auto-fixable indicator
  • Target agent for each finding
  ⚠ Critical (2)
    security: .env file committed → agent:security "fix .env exposure" (manual)
    security: No security scanning → agent:security "setup CI security scanning" [auto-fixable]

Agentic Optimizations

| Context | Command | |---------|---------| | Quick dashboard | /attributes:dashboard | | Detailed with actions | /attributes:dashboard --format detailed | | Check if data exists | test -f .claude/attributes.json && echo cached \|\| echo fresh |