skill-system-dashboard
Original:🇺🇸 English
Translated
1 scriptsChecked / no sensitive code detected
Generate standalone interactive dashboard HTML from skill graph, TKT, memory, and roadmap data.
13installs
Sourcearthur0824hao/skills
Added on
NPX Install
npx skill4agent add arthur0824hao/skills skill-system-dashboardTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →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.htmlBehavior
- Reads graph data from scan output.
skills/skill-system-graph - Reads skill metadata from and
skills/skill-system-*/SKILL.spec.yaml.SKILL.behavior.yaml - Reads ticket/roadmap data from .
.tkt/ - Reads pending/DB memory snapshots when available.
- Writes one HTML file (default ).
<target>/dashboard/index.html
skill
{
"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}"]
}
}
}
}