alapi
Installation
SKILL.md
ALAPI
Overview
Use this skill to work against the full ALAPI OpenAPI catalog without hand-parsing the schema each time. The skill bundles the raw OpenAPI source, a generated endpoint catalog, an auth guide, and a reusable request script.
Workflow
- Confirm whether
ALAPI_TOKENis available. - If the token is missing, tell the user to request one from
https://apifox.com/apihub/, then ask them to send it back. - After the user sends the token, persist it to the active shell profile, export it in the current session, and avoid echoing it back in logs.
- Use
references/intent-router.mdfirst to map a user request to the most likely endpoint with minimal context cost. - Open
references/api-catalog.mdonly for the exact endpoint you selected. - Use
scripts/alapi_request.pyfor real calls instead of rewriting HTTP boilerplate. - If the OpenAPI source changes, replace
references/openapi-source.jsonand rerunscripts/generate_references.py.