Skip to content

QA & Community Tools (6)

These 6 tools support the community feedback loop. They let agents and users rate knowledge quality, submit test reports, and browse community sentiment.


Multi-criteria quality assessment for knowledge items.

ParameterTypeRequiredDefaultDescription
item_typestringYesType of item to assess
item_idstringYesItem identifier
criteriastringNo"all""readability", "completeness", "accuracy", "utility", or "all"

Returns: { pass: bool, score: float, feedback }


Rate a knowledge item. Community-driven quality signal.

ParameterTypeRequiredDefaultDescription
item_typestringYes"chunk", "eureka", "tool", "content", "debunk", "skill", "truth"
item_idstringYesItem identifier
ratingintYes-1 (bad), 0 (neutral), +1 (good)
commentstringNo""Optional feedback text

Returns: { status: "recorded", item_type, item_id }

{
"name": "submit_feedback",
"arguments": {
"item_type": "skill",
"item_id": "fastapi-patterns",
"rating": 1,
"comment": "Very comprehensive, the dependency injection section saved me hours"
}
}

Submit a QA testing round report for tracking.

ParameterTypeRequiredDefaultDescription
round_idstringYesQA round identifier
model_namestringYesModel used for testing
test_countintYesTotal tests run
pass_countintYesTests passed
notesstringNo""Additional notes

Returns: { status: "submitted", round_id }


Browse QA reports with optional filtering.

ParameterTypeRequiredDefaultDescription
round_idstringNo""Filter by round
model_namestringNo""Filter by model

Returns: List of QA reports with pass rates and timestamps.


Browse community feedback entries.

ParameterTypeRequiredDefaultDescription
item_typestringNo""Filter by item type
item_idstringNo""Filter by item ID
min_ratingintNo-2Minimum rating threshold

Returns: List of feedback entries matching filters.


Aggregated feedback statistics.

ParameterTypeRequiredDefaultDescription
item_idstringNo""Filter by specific item

Returns: { avg_rating, count, distribution, sentiment }

Shows the overall quality perception across all community feedback.