Skill Graph¶
Query and manage the skill dependency graph.
Cloud Pro+ Feature
Skill Graph requires a Cloud Pro or Team plan.
Get Recommendations¶
recs = zubbl.get_graph_recommendations(
task_type="code_review",
min_confidence=0.7,
limit=5,
)
for r in recs:
print(f"{r.pattern_name}: confidence={r.confidence}, success_rate={r.success_rate}")