بنقرة واحدة
openclaw-execute
Execute tasks through WRE routing with graduated autonomy and WSP governance
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Execute tasks through WRE routing with graduated autonomy and WSP governance
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | openclaw-execute |
| description | Execute tasks through WRE routing with graduated autonomy and WSP governance |
| user-invocable | true |
| command-dispatch | tool |
| command-tool | bash |
| command-arg-mode | raw |
| category | workflow |
| evals | [] |
Execute tasks through the Foundups WRE (Work Routing Engine) with full WSP governance, permission gating, and pattern memory learning.
OpenClaw Execute is the "doer" skill. It routes your request through:
cd O:/Foundups-Agent && python -c "
import asyncio
from modules.communication.moltbot_bridge.src.openclaw_dae import OpenClawDAE
dae = OpenClawDAE()
result = asyncio.run(dae.process(
message='{task_description}',
sender='{sender_id}',
channel='openclaw',
))
print(result)
"
| Category | Route | Description |
|---|---|---|
| QUERY | HoloIndex | Semantic code/WSP search |
| COMMAND | WRE Orchestrator | Execute via WRE (commander only) |
| MONITOR | AI Overseer | System status and health |
| SCHEDULE | YouTube Scheduler | Time-bound scheduling |
| SOCIAL | Communication DAEs | Social engagement |
| SYSTEM | Infrastructure | System operations (commander only) |
| CONVERSATION | Digital Twin | Conversational response |
cd O:/Foundups-Agent && python -c "
import asyncio
from modules.communication.moltbot_bridge.src.openclaw_dae import OpenClawDAE
dae = OpenClawDAE()
print(asyncio.run(dae.process('Explain how WRE pattern memory works', 'user', 'openclaw')))
"
cd O:/Foundups-Agent && python -c "
import asyncio
from modules.communication.moltbot_bridge.src.openclaw_dae import OpenClawDAE
dae = OpenClawDAE()
print(asyncio.run(dae.process('Show system status', 'user', 'openclaw')))
"
Parse natural-language coding requests into structured tasks for FoundUps worker handoff. Use when the user describes code work but intent is unstructured.
Tiny text-only skill to verify AI Edge Gallery loaded a FoundUps worker skill. Say LOAD_OK if the user says ping.
Validate parser, scope, packet, and result JSON objects against FoundUps mobile worker v1 shapes before handoff to 0102. Use when pasting pipeline outputs or a pipeline envelope.
Summarize raw test output, logs, or diffs into a compact worker-friendly report for FoundUps handoff. Use after execution upstream returns artifacts.
Narrow ambiguous coding work to the smallest safe scope for FoundUps worker handoff. Use after foundups-code-task-parser or when scope is broad.
Convert a scoped coding task into a strict machine-readable task packet for upstream FoundUps execution. Use after scope is locked.