by reAPIAI
Agent Skills For reAPI
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
# Add to your Claude Code skills
git clone https://github.com/reAPIAI/reAPI-skillsNo 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.