Loading...
Loading...
Generate standalone interactive dashboard HTML from skill graph, TKT, memory, and roadmap data.
npx skill4agent add arthur0824hao/skills skill-system-dashboardpython3 "<this-skill-dir>/scripts/generate.py" --target /path/to/project
python3 "<this-skill-dir>/scripts/generate.py" --target /path/to/project --output /tmp/index.htmlskills/skill-system-graphskills/skill-system-*/SKILL.spec.yamlSKILL.behavior.yaml.tkt/<target>/dashboard/index.html{
"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}"]
}
}
}
}