name: rest-api-testing
description: Test REST APIs with repeatable, file-based requests under /setup/rest, with per-project endpoint and Bearer token presets, using the bundled rest.sh (curl + jq). Use when the user asks to manually call REST endpoints, replay requests reliably, add CI-friendly assertions, and record API test reports.
REST API Testing
Contract
Prereqs:
-
bashandcurlavailable onPATH(jqrecommended for pretty-printing/assertions). -
setup/rest/exists (or bootstrap from template) with requests and optional endpoint/token presets.
Inputs:
- Request file path:
setup/rest/requests/<name>.request.json. - Optional flags/env:
--env,--url,--token,--config-dir,--no-history(plusREST_URL,ACCESS_TOKEN).
Outputs:
- Response JSON (or raw response) printed to stdout; errors printed to stderr.
- Optional history file under
setup/rest/.rest_history(gitignored; disabled via--no-history). - Optional markdown report via
$CODEX_HOME/skills/tools/testing/rest-api-testing/scripts/rest-report.sh.
Exit codes:
-
0: request completed successfully (and assertions, if present, passed) - non-zero: invalid inputs/missing files/http error/assertion failure
Failure modes:
- Missing
curl, invalid request JSON, or missing endpoint configuration (REST_URL/ endpoints env). - Auth missing/invalid (
ACCESS_TOKEN/ token profile) causing 401/403. - Network/timeout/connection failures.
Goal
Make REST API calls reproducible and CI-friendly via:
-
setup/rest/requests/*.request.json(request + optionalexpectassertions) -
setup/rest/endpoints.env(+ optionalendpoints.local.env) -
setup/rest/tokens.env(+ optionaltokens.local.env) -
setup/rest/prompt.md(optional, committed; project context for LLMs)
TL;DR (fast paths)
Call an existing request (JSON only):
$CODEX_HOME/skills/tools/testing/rest-api-testing/scripts/rest.sh \
--env local \
setup/rest/requests/<request>.request.json \
| jq .
If the endpoint requires auth, pass a token profile (from setup/rest/tokens.local.env) or use ACCESS_TOKEN:
# Token profile (requires REST_TOKEN_<NAME> to be non-empty in setup/rest/tokens.local.env)
$CODEX_HOME/skills/tools/testing/rest-api-testing/scripts/rest.sh --env local --token default setup/rest/requests/<request>.request.json | jq .
# Or: one-off token (useful for CI)
REST_URL="https://<host>" ACCESS_TOKEN="<token>" \
$CODEX_HOME/skills/tools/testing/rest-api-testing/scripts/rest.sh --url "$REST_URL" setup/rest/requests/<request>.request.json | jq .
Replay the last run (history):
$CODEX_HOME/skills/tools/testing/rest-api-testing/scripts/rest-history.sh --command-only
Generate a report (includes a replayable ## Command by default):
$CODEX_HOME/skills/tools/testing/rest-api-testing/scripts/rest-report.sh \
--case "<test case name>" \
--request setup/rest/requests/<request>.request.json \
--env local \
--run
Generate a report from a copied rest.sh command snippet (no manual rewriting):
$CODEX_HOME/commands/api-report-from-cmd '<paste a rest.sh command snippet>'
If your repo bootstrapped setup/rest/ from the template, you can also use:
-
setup/rest/api-report-from-cmd.sh '<paste a rest.sh command snippet>'
Flow (decision tree)
- If
setup/rest/prompt.mdexists → read it first for project-specific context. - No
setup/rest/yet → bootstrap from template:-
cp -R "$CODEX_HOME/skills/tools/testing/rest-api-testing/assets/scaffold/setup/rest" setup/
-
- Have request file → run with
rest.sh. - Need a markdown report → use
rest-report.sh --run(or--response).
Notes (defaults)
- History is on by default:
setup/rest/.rest_history(gitignored); one-off disable with--no-history(orREST_HISTORY_ENABLED=false). - Requests can embed CI-friendly assertions:
-
expect.status(integer; required whenexpectis present) -
expect.jq(optional; evaluated withjq -eagainst the JSON response)
-
- Reports redact common secret-like fields by default (e.g.
Authorization,Cookie,accessToken); use--no-redactonly when necessary. - Prefer
--config-dir setup/restin automation for deterministic discovery.
References
- Full guide (project template):
skills/tools/testing/rest-api-testing/references/REST_API_TESTING_GUIDE.md - Report contract:
skills/tools/testing/rest-api-testing/references/REST_API_TEST_REPORT_CONTRACT.md - Report template:
skills/tools/testing/rest-api-testing/references/REST_API_TEST_REPORT_TEMPLATE.md - Progress plan:
docs/progress/20260108_rest-api-testing-skill.md
chat Comments (0)
Sign in to join the discussion and leave a comment.
Skill Details
GitHub Stars
2
GitHub Forks
0
Created
Jan 2026
Last Updated
5个月前
tools
tools productivity tools
Related Skills
Build your own?
Join 12,000+ developers contributing to the Claude ecosystem.
No comments yet. Be the first to share your thoughts!