Openforge

ReviewAudited by ClawScan on May 10, 2026.

Overview

OpenForge is a transparent PRD-orchestration skill, but it can spawn sub-agents, edit workspace files, and run PRD-specified shell gates, so users should only run trusted PRDs.

Install only if you are comfortable giving a PRD-driven agent permission to edit your workspace and run reviewed build/test/lint commands. Treat PRDs like executable code: keep them trusted, avoid secrets, use version control, and review outputs before relying on them.

Findings (5)

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

A PRD can cause the agent to run local commands in your workspace, which could modify files or run project scripts.

Why it was flagged

The skill intentionally runs shell commands from PRD gate definitions. This is disclosed and purpose-aligned for build/test/lint gates, but shell execution is high-impact if the PRD is not trusted.

Skill content
Gate commands are run via `exec` in the working directory.
Recommendation

Only use PRDs you trust, and review every `Gate:` command before starting OpenForge.

What this means

The skill can make code and configuration changes across the active workspace as part of executing a PRD.

Why it was flagged

The skill uses broad agent tools to spawn sub-agents, read/write files, and execute commands. This matches its PRD implementation purpose, but users should understand the authority being delegated.

Skill content
runs entirely through native OpenClaw tools (`sessions_spawn`, `exec`, `read`, `write`).
Recommendation

Run it in the intended project workspace, keep source control backups, and review generated changes before accepting them.

What this means

Anything placed in the PRD may be shown to sub-agents and, through configured model providers, leave the local environment.

Why it was flagged

The artifact discloses that PRD text is shared with sub-agents and is not secret-scanned. This is expected for multi-agent PRD execution, but it makes PRD contents sensitive.

Skill content
PRD content is passed to sub-agents verbatim. OpenForge does not scan for embedded secrets
Recommendation

Do not include API keys, passwords, tokens, private customer data, or other secrets in PRDs.

What this means

Mistakes in the PRD or review output could be amplified into multiple rounds of edits before the run stops.

Why it was flagged

Automatic fix-and-review cycles are bounded and disclosed, but a bad PRD or incorrect review finding could lead to repeated workspace changes during a run.

Skill content
Fix sub-agent is spawned with the findings as context; review re-runs after fixes
- Loop repeats up to 3 cycles before escalating
Recommendation

Use version control, inspect diffs after each run, and keep PRDs narrowly scoped.

What this means

Multiple agent workers may read and modify the workspace at the same time during a run.

Why it was flagged

The skill intentionally creates sub-agents to execute PRD phases. The artifacts describe this openly and bound execution to the orchestrated run, but users should notice that work may happen in parallel.

Skill content
Spawns sub-agents for phases that can run in parallel
Recommendation

Use this on isolated branches or clean workspaces, especially for large PRDs with parallel phases.