Tool tree
HAIL is an AI Fluency diagnostic for teams. Discover your hero AI archetype — how your team is really doing with AI, not how busy it looks — and the exact moves to level up.
list_questionsAnswer
List HAIL assessment questions for simple, professional, or advanced profile. Each question includes tier (core|extended) and core_position. Payload also returns core_count, core_keys, and extended_order.
View tool JSON
{
"name": "list_questions",
"kind": "answer",
"impl": "imperative",
"description": "List HAIL assessment questions for simple, professional, or advanced profile. Each question includes tier (core|extended) and core_position. Payload also returns core_count, core_keys, and extended_order.",
"inputSchema": {
"type": "object",
"properties": {
"profile": {
"type": "string",
"enum": [
"simple",
"professional",
"advanced"
]
}
}
},
"page": "/"
}run_assessmentAction
Score a team assessment. Email is optional — anonymous runs are allowed. Core 8 answers are enough to place a hero; response includes core_complete and sharpen hints. Agents are bounded by the per-IP rate limit, not a free-run gate.
View tool JSON
{
"name": "run_assessment",
"kind": "act",
"impl": "imperative",
"description": "Score a team assessment. Email is optional — anonymous runs are allowed. Core 8 answers are enough to place a hero; response includes core_complete and sharpen hints. Agents are bounded by the per-IP rate limit, not a free-run gate.",
"inputSchema": {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"team_name": {
"type": "string"
},
"profile": {
"type": "string",
"enum": [
"simple",
"professional",
"advanced"
]
},
"answers": {
"type": "object"
},
"team_type": {
"type": "string",
"enum": [
"product",
"platform"
]
},
"business_answers": {
"type": "object"
}
},
"required": [
"team_name",
"answers"
]
},
"page": "/"
}get_resultAnswer
Fetch a stored HAIL result by run_id or share_slug.
View tool JSON
{
"name": "get_result",
"kind": "answer",
"impl": "imperative",
"description": "Fetch a stored HAIL result by run_id or share_slug.",
"inputSchema": {
"type": "object",
"properties": {
"run_id": {
"type": "string"
}
},
"required": [
"run_id"
]
},
"page": "/"
}get_playbookAnswer
Get the What-to-Fix playbook for a run (Premium/Portfolio). Requires a Save token proving ownership — run_id alone is not enough.
View tool JSON
{
"name": "get_playbook",
"kind": "answer",
"impl": "imperative",
"description": "Get the What-to-Fix playbook for a run (Premium/Portfolio). Requires a Save token proving ownership — run_id alone is not enough.",
"inputSchema": {
"type": "object",
"properties": {
"run_id": {
"type": "string"
},
"token": {
"type": "string",
"description": "Save-link token proving ownership"
}
},
"required": [
"run_id"
]
},
"page": "/"
}