Governance.Wrapper

PendingStatic analysis audit pending.

Overview

No static analysis result has been recorded yet. Pattern checks will appear here once the artifact has been analyzed.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Installing or using the skill could cause the agent to run local code that was not included in the reviewed skill package.

Why it was flagged

The skill is supplied as instruction-only with no install spec or code files, but it depends on a pre-existing local Python helper outside the package; that helper’s provenance and behavior cannot be reviewed from the artifacts.

Skill content
`python3 /home/openclaw/.openclaw/workspace/governance/governance_wrapper.py`
Recommendation

Only use this after inspecting and verifying the referenced governance_wrapper.py file, its source, and its hash; ideally the wrapper should be packaged and pinned with the skill.

ConcernHigh Confidence
ASI01: Agent Goal Hijack
What this means

The skill may alter how the agent carries out future strict-mode work, including routing tasks through a wrapper rather than the normal execution path.

Why it was flagged

The skill makes a broad mandatory claim over autonomous operation execution, which can change normal tool use and execution flow beyond a single user-directed task.

Skill content
All autonomous operations in strict mode must execute through this wrapper:
Recommendation

Enable it only if you intentionally want this wrapper to govern strict-mode autonomous operations, and define clear limits for when it should apply.

What this means

Sensitive prompts, task context, or execution details could be stored persistently without clear retention or deletion controls.

Why it was flagged

The wrapper is required to receive system prompt and input context and create append-only evidence logs, but the artifacts do not define what context is recorded, retained, or exposed.

Skill content
Required parameters:

- `--system-prompt`
- `--input-context`
...
- Mandatory `execution-evidence.v1` emission
- Hash-chained append-only evidence logging
Recommendation

Confirm exactly what the wrapper logs, where logs are stored, who can read them, and how they can be purged before using it with sensitive tasks.