Install
openclaw skills install risha-content-generationDiscover, prepare, and execute any Risha.ai capability available to the authenticated account. Use when Codex needs to authenticate to a Risha workspace, load a ready-to-use catalog of accessible capabilities, inspect manual field definitions, inspect creator, dialect, or voice choices, submit capability requests, poll async jobs, or fetch generated text, audio, image, video, or multimodal outputs from Risha.
openclaw skills install risha-content-generationUse this skill to drive Risha's capability workflow from discovery through final output retrieval. Prefer the bundled helper script for repeated API work so the request flow stays consistent and the payload shape remains inspectable.
prompt_data.Prefer one of these auth approaches:
RISHA_AUTH_HEADER when the caller already has a working header such as Bearer ... or Basic ....RISHA_EMAIL and RISHA_PASSWORD when the skill can log in directly through /api/auth/login/.Set RISHA_API_BASE_URL only if the host changes. The default is https://adminxcore-api.risha.ai/api.
Before doing generation work, validate auth with the helper:
python3 scripts/risha_api.py me
If login succeeds but the script cannot derive a reusable auth token/header from the response, stop guessing and ask the user for the exact header format that works in their environment.
Never hardcode prompt_data blindly. The valid keys come from each capability's linked manual definition.
This skill now ships with a current account snapshot:
Refresh that snapshot in one step when needed:
python3 scripts/risha_api.py catalog \
--quiet \
--write-json references/current-capabilities.json \
--write-markdown references/current-capabilities.md
Use the catalog for:
When you need one capability in full detail, inspect it directly:
python3 scripts/risha_api.py capability 123
Use the capability manual to inspect:
manual.fieldsfield_pathjson_typeis_requiredchoice_modelenum_valuesBuild prompt_data from those manual fields. Use the field path exactly as Risha expects. For nested paths such as input.text, create nested JSON objects.
The current account snapshot includes 17 accessible capabilities across:
multimodaltext_generationttsTreat the snapshot as the fast path and the live catalog command as the refresh path.
For creator-backed writing flows, inspect available creators before choosing one:
python3 scripts/risha_api.py creators
If the relevant manual field uses choice_model: creators, pass the creator's field_value, not just its label.
Use the same pattern for dialects and voices when the manual points to those choice models.
The helper now includes credit preview by default. Before every generate request, it fetches:
prompt_dataIf you want the preview without creating anything, use:
python3 scripts/risha_api.py estimate \
--capability-id 123 \
--prompt-data-file /absolute/path/prompt-data.json
Pass either inline JSON or a JSON file:
python3 scripts/risha_api.py generate \
--capability-id 123 \
--title "LinkedIn post draft" \
--prompt-data '{"input":{"topic":"AI adoption","tone":"confident"}}'
Or:
python3 scripts/risha_api.py generate \
--capability-id 123 \
--prompt-data-file /absolute/path/prompt-data.json \
--wait
Use --wait to poll until the request reaches a terminal state. Terminal states are:
completedfailedcancelledWhen completed, prefer returning:
generated_content.content for textgenerated_content.asset or thumbnail URLs for mediagenerated_content.content_metadata when it contains useful structured extrasThe generate response now includes a credit_preview block alongside the request or final generation result.
Risha also exposes /api/chat/ and /api/chat/stream/, but the schema does not currently describe their request bodies. Treat those endpoints as exploratory only unless the user provides working payload examples. Prefer the capability plus generation-request flow for reliable automation.
/auth/login/ returns 400 with Invalid email or password, confirm credentials before retrying.error_message on the request record.502 Bad Gateway, retry with backoff instead of rewriting the workflow.https://adminxcore-api.risha.ai/api/docs/?format=openapi.