ワンクリックで
prism-skill-author
Use this skill when Codex is asked to create, update, install, or manage custom Prism/Codex skills for an instance.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use this skill when Codex is asked to create, update, install, or manage custom Prism/Codex skills for an instance.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use this skill when Codex is executing a stored scheduled Prism task prompt through task-runner.
Use this skill when Codex needs to pull the next or current Prism request, inspect request/workflow state, create requests, attach external refs, or create and update execution records through the Prism Agent API.
Use this skill when Codex is asked to create, update, test, or delete Prism workflow hooks that trigger workflow-backed requests from external events or on-demand calls.
Use this skill when Codex is asked to design or create a scheduled Prism task from a user's natural-language request.
Use this skill when Codex is asked to create, update, or reason about Prism request workflows, workflow steps, gates, manifests, or workflow instruction files.
Use this skill when Codex is asked to view or update Prism instance settings such as platform branding, logo, title, workspace label, or site content.
| name | prism-skill-author |
| description | Use this skill when Codex is asked to create, update, install, or manage custom Prism/Codex skills for an instance. |
Use this skill to create or update instance custom skills.
Custom skill definitions are owned by the site service and stored under /data/skills/<skill-name>/SKILL.md. Do not write custom skill definitions into CODEX_HOME unless the user explicitly asks for a temporary local experiment.
example-skill.SKILL.md./data/custom/<experiment>/... if they must run from codex-runtime.PRISM_AGENT_API_BASE_URL and PRISM_AGENT_SERVICE_TOKEN are available.In deployed Prism instances, Codex Runtime usually receives APP_API_BASE_URL and APP_API_SERVICE_TOKEN, then exposes them to Codex as PRISM_AGENT_API_BASE_URL and PRISM_AGENT_SERVICE_TOKEN. If the PRISM_* names are missing, check the APP_* names before concluding the API is unavailable.
Do not use browser admin routes from Codex Runtime. Custom skill writes should go through /agent/skills with x-service-token.
POST the complete SKILL.md content:
curl -fsSL \
-X POST \
-H "content-type: application/json" \
-H "x-service-token: $PRISM_AGENT_SERVICE_TOKEN" \
"$PRISM_AGENT_API_BASE_URL/agent/skills" \
-d @skill-payload.json
Payload shape:
{
"name": "example-skill",
"content": "---\nname: example-skill\ndescription: Use this skill when...\n---\n\nSkill instructions go here.\n"
}
After saving, the skill appears in the admin Skills tab and can be requested by tasks through instructionConfig.requestedSkills.