Claude
Skills
Sign in
Back

skill-system-dashboard

Included with Lifetime
$97 forever

Generate standalone interactive dashboard HTML from skill graph, TKT, memory, and roadmap data.

Web Devscripts

What this skill does


# Skill System Dashboard

This skill generates the project dashboard HTML using repository-local data.

## Usage

```bash
python3 "<this-skill-dir>/scripts/generate.py" --target /path/to/project
python3 "<this-skill-dir>/scripts/generate.py" --target /path/to/project --output /tmp/index.html
```

## Behavior

- Reads graph data from `skills/skill-system-graph` scan output.
- Reads skill metadata from `skills/skill-system-*/SKILL.spec.yaml` and `SKILL.behavior.yaml`.
- Reads tone files, asset directories, and source metadata to render 4-axis skill cards.
- Reads ticket/roadmap data from `.tkt/`.
- Reads pending/DB memory snapshots when available.
- Writes one HTML file (default `<target>/dashboard/index.html`).

```skill-manifest
{
  "schema_version": "2.0",
  "id": "skill-system-dashboard",
  "version": "1.0.0",
  "capabilities": ["dashboard-generate", "dashboard-render"],
  "effects": ["fs.read", "fs.write", "proc.exec", "db.read"],
  "operations": {
    "dashboard-generate": {
      "description": "Generate target dashboard/index.html using target project context.",
      "input": {
        "target": {"type": "string", "required": false, "default": ".", "description": "Target project root"},
        "output": {"type": "string", "required": false, "description": "Output HTML path override"}
      },
      "output": {
        "description": "Dashboard generation report",
        "fields": {"status": "ok | error", "output": "string", "target": "string"}
      },
      "entrypoints": {
        "unix": ["python3", "{skill_dir}/scripts/generate.py", "--target", "{target}"],
        "windows": ["python", "{skill_dir}/scripts/generate.py", "--target", "{target}"]
      }
    }
  },
  "stdout_contract": {
    "last_line_json": true
  }
}
```
Files: 6
Size: 110.3 KB
Complexity: 58/100
Category: Web Dev

Related in Web Dev