Install
openclaw skills install orgx-powerPower-user OrgX skill for OpenClaw. Use when you explicitly need the full mutation surface for entity CRUD, run control, checkpoints, stream reassignment, or agent-config policy changes.
openclaw skills install orgx-powerUse this skill only when the caller explicitly needs the full mutation surface exposed by the OrgX OpenClaw plugin. This is the elevated counterpart to the default-safe orgx skill.
Use
orgxby default. Useorgx-powerwhen you need admin or orchestration operations that change entity state directly.
/orgx/mcp endpoint rather than a domain-scoped safe surfaceThese tools are part of the plugin registry, but are elevated and should be used intentionally:
orgx_apply_changesetorgx_create_entityorgx_update_entityorgx_list_entitiesorgx_reassign_streamorgx_reassign_streamsorgx_delegation_preflightorgx_run_actionorgx_checkpoints_listorgx_checkpoint_restoreorgx_agent_sessionsorgx_resume_agent_sessionorgx_clear_agent_sessionupdate_agent_configorgx_sentinel_catalogThe default-safe reporting tools still apply and should usually wrap elevated work:
orgx_emit_activityorgx_request_decisionorgx_register_artifactorgx_spawn_checkorgx_proof_statusorgx_verify_completionorgx_emit_activity before making mutations.orgx_request_decision before irreversible or org-wide changes.orgx_apply_changeset when you need idempotent batched state updates.orgx_apply_changeset({
initiative_id: "aa6d16dc-d450-417f-8a17-fd89bd597195",
idempotency_key: "run_abc_turn_7_commit_1",
operations: [
{ op: "task.update", task_id: "task_uuid", status: "in_progress" },
{ op: "decision.create", title: "Use SSE for live updates", urgency: "medium" }
]
})
orgx_reassign_stream({
initiative_id: "aa6d16dc-d450-417f-8a17-fd89bd597195",
workstream_id: "7f8e2f61-...",
domain: "operations",
role: "reliability"
})
orgx_run_action({
runId: "9d5c8b2b-...",
action: "pause",
reason: "Waiting for approval on production cutover"
})
This skill assumes the runtime actually exposes the elevated tools. In the managed OrgX agent suite, many domain-scoped surfaces intentionally hide them. If a tool is unavailable, fall back to the safe orgx skill and request the necessary human decision or orchestration context.