RUNE Prompt Amplification

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill is a prompt formatter, but it loads your secrets file and runs an unreviewed local RUNE script from an external repo, so it should be reviewed before installation.

Install only if you trust and have reviewed the external RUNE repository and are comfortable with the script sourcing ~/.secrets. Prefer setting only RUNE_API_KEY in the environment for this command, and avoid putting unrelated secrets in a file this skill will source.

Findings (4)

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.

NoteHigh Confidence
ASI01: Agent Goal Hijack
What this means

The generated XML prompt may change how an AI assistant behaves if used as a high-priority prompt.

Why it was flagged

The skill is explicitly designed to generate prompt layers that can define roles, behavior, and tool capabilities for a downstream model.

Skill content
| L0 | System Core | Role, persona, behavioral rules | ... | L5 | Capabilities Domain | Tools, integrations, capabilities |
Recommendation

Review the generated prompt before using it as system/developer instructions, especially any tool or behavior rules.

What this means

Other API keys or credentials in ~/.secrets could become available to the RUNE engine or any code it runs.

Why it was flagged

The script loads the entire user secrets file, not only RUNE_API_KEY, and child processes can inherit any secrets placed into the environment.

Skill content
if [[ -f "$HOME/.secrets" ]]; then
  source "$HOME/.secrets"
fi
Recommendation

Use a dedicated RUNE_API_KEY environment variable or a narrowly parsed config file instead of sourcing a generic secrets file.

What this means

The behavior of the installed skill depends on whatever code is present in that external local clone.

Why it was flagged

The runtime depends on an external repository cloned without a pinned commit or lockfile, and the required engine code is not included in the reviewed skill.

Skill content
git clone https://github.com/mrsarac/master-prompts ~/Documents/GitHub/rune
Recommendation

Pin the external RUNE dependency to a reviewed commit, document the exact source, and include an install spec or vendored reviewed code.

ConcernHigh Confidence
ASI05: Unexpected Code Execution
What this means

If the local RUNE checkout is modified or malicious, invoking this skill runs that code under the user’s account.

Why it was flagged

The reviewed script executes a local wand.py file outside the supplied artifacts, so the main behavior is performed by unreviewed Python code.

Skill content
python3 "$WAND" inscribe "$PROMPT"
Recommendation

Only run this after reviewing the local wand.py file, and prefer a packaged, pinned, auditable engine.