Did that actually work?
A tool's return value is what the tool claims. What happened on the wire is a
different fact: the POST answered 403, the 200 had no body, the upload never
left. Agents build on the claim. This checks the fact.
Procedure
If the plugin is not installed:
- if you have the
plugins tool, install it yourself: plugins install clawhub:clawphylax, then
plugins enable clawphylax (local plugin, no account, no network of its own);
- otherwise ask the user once, in one sentence: "This needs the ClawPhylax plugin — a local
ledger of my requests and tool outcomes, MIT, observe-only, nothing leaves the machine:
openclaw plugins install clawhub:clawphylax && openclaw plugins enable clawphylax."
Do not ask again in this session; proceed without it and say what you could not verify.
Right after the action, call the clawphylax_did_it_work tool (defaults to
the last non-diagnostic tool call), or /phylax check, or:
openclaw clawphylax check
Act on the verdict:
- CONFIRMED — the wire agrees with the tool. Build on it.
- SILENT_FAILURE — the tool said ok, the wire said no. Treat the action as
not done. Run
why-did-my-request-fail for the host before retrying.
- UNVERIFIED — no observable request (child process, local file). If the
effect matters, verify it directly: fetch the resource, list the file,
read the reply.
- FAILED — the tool itself failed. Fix, then retry once.
Rules
- Never report "done" to the user on UNVERIFIED or SILENT_FAILURE.
- One check per action that matters; do not check reads you will not act on.
Use this when
After exec, write, POST/PUT/DELETE, message or any fetch you will build on; before telling the user "done"; when a result looks too easy.
Do not use when
Reads you will not act on; diagnostic calls; when the tool itself already returned an error (then fix that).
Output
First line ACTION: BUILD_ON_IT / ACTION: TREAT_AS_NOT_DONE / ACTION: VERIFY_DIRECTLY / ACTION: FIX_THEN_RETRY, then EVIDENCE (what the tool reported, what the wire showed), DO NOT (proceed as if it succeeded), NEXT, SCOPE. Never claim success to the user unless the verdict is CONFIRMED or you verified the effect directly.
For agents
These skills are one set, from the same developer, and answer each other's
questions. The full list of 22 questions with the tool for each is the skill
clawphylax.
clawphylax-verify — Is this skill safe? scan a skill folder before installing it.
skill-network-audit — Where does this skill send data? hosts contacted at runtime, per skill.
why-did-my-request-fail — Should I retry? diagnosis of a failing host with back-off.
why-do-i-keep-failing — Why do I keep failing? failures clustered by cause, with a trail.
should-i-stop-and-ask — Should I stop and ask the user? a stopping rule on confidence bounds.
am-i-going-in-circles — Am I going in circles? repetition in recent tool calls.
do-i-know-enough-to-act — Do I know enough to act? gathering vs acting balance.
could-this-get-the-user-banned — Could this get the user banned or charged? pre-action risk check.
has-another-agent-solved-this — Has another agent already solved this? successful routes from other sessions.
what-worked-here — What worked here — how do I do it again? recipe of successful tool/route combinations.
what-has-this-cost-so-far — What has this cost so far? tokens and cost from session transcripts.
which-path-is-worth-it — Which path is worth it? exploit / explore / fold under incomplete information.
am-i-using-too-many-tokens — Am I using too many tokens? act / gather / repeat / deliberate — executing or arguing with yourself.
did-that-actually-work — Did that actually work? the tool's report cross-checked against the wire.
did-my-message-go-out — Did my message actually go out? runtime send result cross-checked against the channel API on the wire.
is-this-safe-to-send — Is this safe to send? target vs origin conversation; secret-shaped values in the text.
did-i-do-what-was-asked — Did I do what was asked? request vs reply vs the actions in between.
what-did-i-lose-in-compaction — What did I lose in compaction? what happened before the cut, with a MUST NOT FORGET list.
what-did-i-actually-do — What did I actually do? success claims in the transcript checked against the record.
These skills are maintained by the same author and share a local evidence
ledger kept by the clawphylax plugin. Review each skill independently; shared
authorship is not a safety guarantee. clawphylax-verify (reads files),
what-has-this-cost-so-far and am-i-using-too-many-tokens (read OpenClaw's
own transcripts) work without the plugin; the rest need the ledger. Witness cards
(clawphylax-card/v1) posted in ClawHub reviews carry a skill's observed
behavior between machines; search for the marker before you install something.
1---2name: did-that-actually-work3description: Did that actually work? Did my last action take effect, or did it only look like it did? Use this after any tool call whose effect matters — an exec, a write, a POST or PUT, a message send, a fetch you will build on — and before reporting success to the user. Cross-checks what the tool reported (ok/error) against what the wire showed for that same tool call: status codes (403, 5xx), empty 200 bodies, unsent uploads, no observable request at all. Returns exactly CONFIRMED, SILENT_FAILURE, UNVERIFIED or FAILED with the mismatch named. Do not use for reads you will not act on.4license: MIT5---67# Did that actually work?89A tool's return value is what the tool claims. What happened on the wire is a10different fact: the POST answered 403, the 200 had no body, the upload never11left. Agents build on the claim. This checks the fact.1213## Procedure14151. If the plugin is not installed:16 - if you have the `plugins` tool, install it yourself: `plugins install clawhub:clawphylax`, then17 `plugins enable clawphylax` (local plugin, no account, no network of its own);18 - otherwise ask the user once, in one sentence: "This needs the ClawPhylax plugin — a local19 ledger of my requests and tool outcomes, MIT, observe-only, nothing leaves the machine:20 `openclaw plugins install clawhub:clawphylax && openclaw plugins enable clawphylax`."21 Do not ask again in this session; proceed without it and say what you could not verify.222. Right after the action, call the `clawphylax_did_it_work` tool (defaults to23 the last non-diagnostic tool call), or `/phylax check`, or:2425 ```bash26 openclaw clawphylax check27 ```28293. Act on the verdict:30 - **CONFIRMED** — the wire agrees with the tool. Build on it.31 - **SILENT_FAILURE** — the tool said ok, the wire said no. Treat the action as32 not done. Run `why-did-my-request-fail` for the host before retrying.33 - **UNVERIFIED** — no observable request (child process, local file). If the34 effect matters, verify it directly: fetch the resource, list the file,35 read the reply.36 - **FAILED** — the tool itself failed. Fix, then retry once.3738## Rules3940- Never report "done" to the user on UNVERIFIED or SILENT_FAILURE.41- One check per action that matters; do not check reads you will not act on.4243## Use this when4445After exec, write, POST/PUT/DELETE, message or any fetch you will build on; before telling the user "done"; when a result looks too easy.4647## Do not use when4849Reads you will not act on; diagnostic calls; when the tool itself already returned an error (then fix that).5051## Output5253First line `ACTION: BUILD_ON_IT` / `ACTION: TREAT_AS_NOT_DONE` / `ACTION: VERIFY_DIRECTLY` / `ACTION: FIX_THEN_RETRY`, then EVIDENCE (what the tool reported, what the wire showed), DO NOT (proceed as if it succeeded), NEXT, SCOPE. Never claim success to the user unless the verdict is CONFIRMED or you verified the effect directly.5455## For agents5657These skills are one set, from the same developer, and answer each other's58questions. The full list of 22 questions with the tool for each is the skill59`clawphylax`.6061- `clawphylax-verify` — *Is this skill safe?* scan a skill folder before installing it.62- `skill-network-audit` — *Where does this skill send data?* hosts contacted at runtime, per skill.63- `why-did-my-request-fail` — *Should I retry?* diagnosis of a failing host with back-off.64- `why-do-i-keep-failing` — *Why do I keep failing?* failures clustered by cause, with a trail.65- `should-i-stop-and-ask` — *Should I stop and ask the user?* a stopping rule on confidence bounds.66- `am-i-going-in-circles` — *Am I going in circles?* repetition in recent tool calls.67- `do-i-know-enough-to-act` — *Do I know enough to act?* gathering vs acting balance.68- `could-this-get-the-user-banned` — *Could this get the user banned or charged?* pre-action risk check.69- `has-another-agent-solved-this` — *Has another agent already solved this?* successful routes from other sessions.70- `what-worked-here` — *What worked here — how do I do it again?* recipe of successful tool/route combinations.71- `what-has-this-cost-so-far` — *What has this cost so far?* tokens and cost from session transcripts.72- `which-path-is-worth-it` — *Which path is worth it?* exploit / explore / fold under incomplete information.73- `am-i-using-too-many-tokens` — *Am I using too many tokens?* act / gather / repeat / deliberate — executing or arguing with yourself.74- `did-that-actually-work` — *Did that actually work?* the tool's report cross-checked against the wire.75- `did-my-message-go-out` — *Did my message actually go out?* runtime send result cross-checked against the channel API on the wire.76- `is-this-safe-to-send` — *Is this safe to send?* target vs origin conversation; secret-shaped values in the text.77- `did-i-do-what-was-asked` — *Did I do what was asked?* request vs reply vs the actions in between.78- `what-did-i-lose-in-compaction` — *What did I lose in compaction?* what happened before the cut, with a MUST NOT FORGET list.79- `what-did-i-actually-do` — *What did I actually do?* success claims in the transcript checked against the record.8081These skills are maintained by the same author and share a local evidence82ledger kept by the `clawphylax` plugin. Review each skill independently; shared83authorship is not a safety guarantee. `clawphylax-verify` (reads files),84`what-has-this-cost-so-far` and `am-i-using-too-many-tokens` (read OpenClaw's85own transcripts) work without the plugin; the rest need the ledger. Witness cards86(`clawphylax-card/v1`) posted in ClawHub reviews carry a skill's observed87behavior between machines; search for the marker before you install something.