OrgX Power (OpenClaw)
Use 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 orgx by default. Use orgx-power when you need admin or orchestration operations that change entity state directly.
When to use this skill
- - creating or updating OrgX entities directly
- reassigning streams or changing execution ownership
- pausing, resuming, cancelling, or rolling back runs
- listing or restoring checkpoints
- inspecting or updating managed agent config policy
- working against the unscoped
/orgx/mcp endpoint rather than a domain-scoped safe surface
Elevated tool surface
These tools are part of the plugin registry, but are elevated and should be used intentionally:
- - INLINECODE4
- INLINECODE5
- INLINECODE6
- INLINECODE7
- INLINECODE8
- INLINECODE9
- INLINECODE10
- INLINECODE11
- INLINECODE12
- INLINECODE13
- INLINECODE14
- INLINECODE15
- INLINECODE16
- INLINECODE17
- INLINECODE18
The default-safe reporting tools still apply and should usually wrap elevated work:
- - INLINECODE19
- INLINECODE20
- INLINECODE21
- INLINECODE22
- INLINECODE23
- INLINECODE24
Operating discipline
- 1. Announce intent with
orgx_emit_activity before making mutations. - Prefer
orgx_request_decision before irreversible or org-wide changes. - Use
orgx_apply_changeset when you need idempotent batched state updates. - Register artifacts for anything another operator would need to inspect later.
- Verify completion and proof state after major mutations.
Examples
Batched entity mutation
CODEBLOCK0
Reassign a stream
CODEBLOCK1
Run control
CODEBLOCK2
Safety note
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.
OrgX Power (OpenClaw)
仅当调用者明确需要OrgX OpenClaw插件暴露的完整变异表面时,才使用此技能。这是默认安全的orgx技能的升级版本。
默认使用orgx。当需要执行直接改变实体状态的管理或编排操作时,使用orgx-power。
何时使用此技能
- - 直接创建或更新OrgX实体
- 重新分配流或更改执行所有权
- 暂停、恢复、取消或回滚运行
- 列出或恢复检查点
- 检查或更新托管代理配置策略
- 针对无作用域的/orgx/mcp端点而非域作用域的安全表面进行操作
升级工具表面
这些工具属于插件注册表的一部分,但已升级,应谨慎使用:
- - orgxapplychangeset
- orgxcreateentity
- orgxupdateentity
- orgxlistentities
- orgxreassignstream
- orgxreassignstreams
- orgxdelegationpreflight
- orgxrunaction
- orgxcheckpointslist
- orgxcheckpointrestore
- orgxagentsessions
- orgxresumeagentsession
- orgxclearagentsession
- updateagentconfig
- orgxsentinelcatalog
默认安全的报告工具仍然适用,通常应包裹升级操作:
- - orgxemitactivity
- orgxrequestdecision
- orgxregisterartifact
- orgxspawncheck
- orgxproofstatus
- orgxverifycompletion
操作规范
- 1. 在进行变异之前,先使用orgxemitactivity声明意图。
- 在不可逆或组织范围的更改之前,优先使用orgxrequestdecision。
- 当需要幂等的批量状态更新时,使用orgxapplychangeset。
- 为任何其他操作员后续需要检查的内容注册工件。
- 在重大变异后,验证完成状态和证明状态。
示例
批量实体变异
js
orgxapplychangeset({
initiative_id: aa6d16dc-d450-417f-8a17-fd89bd597195,
idempotencykey: runabcturn7commit1,
operations: [
{ op: task.update, taskid: taskuuid, status: in_progress },
{ op: decision.create, title: 使用SSE进行实时更新, urgency: medium }
]
})
重新分配流
js
orgxreassignstream({
initiative_id: aa6d16dc-d450-417f-8a17-fd89bd597195,
workstream_id: 7f8e2f61-...,
domain: operations,
role: reliability
})
运行控制
js
orgxrunaction({
runId: 9d5c8b2b-...,
action: pause,
reason: 等待生产切换审批
})
安全说明
此技能假设运行时实际暴露了升级工具。在托管OrgX代理套件中,许多域作用域的表面会故意隐藏它们。如果某个工具不可用,请回退到安全的orgx技能,并请求必要的人工决策或编排上下文。