Skip to content

Skill Graph

Query and manage the skill dependency graph.

Cloud Pro+ Feature

Skill Graph requires Cloud Pro ($99/mo) or Team ($299/mo) plan.

List Skills

skills = zubbl.graph_skills(domain="engineering")
for skill in skills:
    print(f"{skill['name']}: {skill['proficiency']}")

Get Recommendations

recs = zubbl.graph_recommendations(
    task_type="code_review",
    min_confidence=0.7,
    limit=5,
)

Skill Gap Analysis

gaps = zubbl.skill_gaps(
    agent_id="agent-001",
    task_type="security_audit",
)
print(f"Coverage: {gaps['coverage']}")
for skill in gaps['missing_skills']:
    print(f"  Missing: {skill['skill']} (importance: {skill['importance']})")