# Add to your Claude Code skills
git clone https://github.com/reAPIAI/reAPI-skillsLast scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T17:06:23.525Z",
"npmAuditRan": true,
"pipAuditRan": true
}reAPI-skills is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by reAPIAI. Agent Skills For reAPI. It has 0 GitHub stars.
Yes. reAPI-skills passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/reAPIAI/reAPI-skills" and add it to your Claude Code skills directory (see the Installation section above).
reAPI-skills is primarily written in Python. It is open-source under reAPIAI on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh reAPI-skills against similar tools.
No comments yet. Be the first to share your thoughts!
Agent skill for calling the public reAPI service at https://reapi.ai to
generate images and videos through asynchronous API tasks.
https://reapi.aihttps://reapi.ai.export REAPI_API_KEY="rk_live_xxx"
The skill also accepts REAPI_KEY. REAPI_BASE_URL is optional and defaults to
https://reapi.ai.
You can also create skills/reapi/.env based on skills/reapi/.env.example.
The CLI only reads REAPI_* values from .env.
From Claude Code:
/plugin marketplace add https://github.com/reAPIAI/reAPI-skills.git
/plugin install reapi-skills
Restart Claude Code after installing.
List bundled model examples:
cd skills/reapi
python3 scripts/reapi.py config
python3 scripts/reapi.py models
Print an example payload:
python3 scripts/reapi.py example gpt-image-2
Submit by model id and let the CLI choose the endpoint:
python3 scripts/reapi.py submit-model gpt-image-2 \
--wait \
--json '{"prompt":"a cute red panda","size":"1:1"}'
Submit an image task and wait:
python3 scripts/reapi.py submit images \
--wait \
--json '{"model":"gpt-image-2","prompt":"a cute red panda","size":"1:1"}'
Submit a video task and wait:
python3 scripts/reapi.py submit videos \
--wait \
--json '{"model":"doubao-seedance-2.0","prompt":"a cinematic red panda","duration":5,"resolution":"720p"}'
Poll an existing task:
python3 scripts/reapi.py wait task_xxx
skills/reapi/
├── .env.example
├── SKILL.md
├── agents/openai.yaml
├── references/
│ ├── API.md
│ ├── MODELS.md
│ └── models.json
└── scripts/reapi.py
Use https://reapi.ai/docs for the current model-specific parameter reference
and pricing.