Provider api
Skill onfire7777/universal-ai-skills-library/skills/provider-api
Router-first AI skill system for Codex, Claude, Cursor, Hermes, Paperclip, OpenCode, and local AI stacks: search, preflight-route, and load 1,812 skills on demand without duplicating the corpus.
npx -y skills add onfire7777/universal-ai-skills-library --skill provider-apiAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 13 stars13 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Universal hosted-provider API adapter guide. Use the skill-router provider-api CLI for compatible project/task/file/webhook/agent APIs, with explicit endpoint and key configuration instead of provider-specific defaults.
SKILL.md
1.5 KB, as published. Nobody here has run it
Provider API
Use this skill when a workflow needs to call a hosted project provider through the universal skill-router provider-api CLI. The adapter is intentionally neutral: it does not assume any provider endpoint, API key name, or hosted UI.
CLI Contract
Set an endpoint and key explicitly before making API calls:
export SKILL_ROUTER_API_BASE="https://provider.example/v2"
export SKILL_ROUTER_API_KEY="..."
skill-router provider-api tasks list
You can also pass the endpoint per command:
skill-router provider-api --api-base "https://provider.example/v2" projects list
Supported Surfaces
The CLI exposes common hosted-provider surfaces:
tasksfor task lifecycle callsprojectsfor reusable project contextfilesfor provider-managed file referenceswebhooksfor callback configurationagentsfor provider-hosted agent recordsconnectors,skills,usage, andwebsiteswhen the provider supports them
Provider-Specific Docs
For exact request schemas, authentication headers, rate limits, or provider-only behavior, load the explicit provider skill or documentation for that platform. Do not hard-code provider endpoints into universal setup, install, doctor, or router defaults.