api-call
01Skill Claude CodeCodex
A way to call an internal API and return its response as-is. A request that starts work returns a UUID, while a request that retrieves data returns that data.
Skill Claude CodeCodex
A way to call an internal API and return its response as-is. A request that starts work returns a UUID, while a request that retrieves data returns that data.
Skill Claude CodeCodex
Call an HTTP/JSON API with explicit timeouts, retries with backoff, and progress reporting. Use for any outbound API call from a skill, and read this before writing a script that hangs.
Skill Claude CodeCodex
Fire off a long-running API job that returns a key immediately and writes its result to a database, then collect that result later by key. Use for work that must not occupy the model while it runs.
Skill Claude CodeCodex
Profile a CSV or TSV file — column types, null counts, cardinality, numeric ranges and sample values. Use before writing any analysis or transformation code against an unfamiliar tabular file.
Skill Claude CodeCodex
Call the internal job API. submit.py fires a long job and returns its uuid for the front end; report.py waits for a synchronous answer. Use submit for anything that takes more than a few seconds.
Skill Claude CodeCodex
Summarise a git repository — recent commits, churn by file, contributor counts and branch state. Use to orient yourself in an unfamiliar repo before reading any source.
Skill Claude CodeCodex
Call an internal RESTful API and return only the fields you asked for. Use when a plain REST endpoint returns more rows or columns than the answer needs.
Skill Claude CodeCodex
Word, line and character counts plus top-term frequencies for a block of text or a file. Use for readability checks, keyword extraction, or verifying a draft fits a length budget.
MCP server Claude CodeCodexCursor
A Model Context Protocol (MCP) server for managing Claude skills. Runs locally from the skill-mcp Python package.