Description
Map skills coverage versus track goals. Analyzes which categories have sufficient skill implementations and identifies gaps.
Inputs
{
"track": "web3-core-operations|enterprise-skills",
"goals": ["List of category goals"]
}
Outputs
{
"ok": true,
"data": {
"coverage": "45%",
"gaps": ["Missing category"]
}
}
Usage
Demo Mode
python scripts/main.py --demo
Check Coverage
echo '{"track":"web3-core-operations"}' | python3 scripts/main.py
Examples
Example 1: Coverage Analysis
$ echo '{"track":"web3-core-operations","goals":["DeFi","NFT","Bridge"]}' | python3 scripts/main.py
{
"ok": true,
"data": {
"coverage": "67%",
"gaps": ["Security"]
}
}
Error Handling
When an error occurs, the skill returns:
{
"ok": false,
"error": "Error description",
"details": {
"track": "Unknown track"
}
}