Context Workflow

ReviewAudited by ClawScan on May 14, 2026.

Overview

This appears to be a coherent repo workflow helper, but it will run a local scanner, write persistent context files, and can coordinate subagents to make code changes when invoked.

This looks reasonable for teams that want a file-based project workflow. Before installing, be aware that it will create or update AGENTS.md and context/ files, may run a local Python scanner, and can coordinate subagents to change code when you invoke execution. Start with plan mode, review proposed file changes and task scopes, and use version control so generated context or code changes are reversible.

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.

What this means

The skill may fail or require manual fallback if Python 3 is unavailable, despite no binary requirement being declared.

Why it was flagged

The skill depends on a local python3 helper even though the registry metadata declares no required binaries. This is an install/metadata gap, but the helper is bundled and its use is disclosed.

Skill content
python3 scripts/scan_repo.py --target-repo "<repo>" --project-type "<new|existing|auto>" --format markdown
Recommendation

Ensure Python 3 is available before using initialization, or use the documented manual scan fallback if the script cannot run.

What this means

Using the init workflow runs local helper code over the selected repository.

Why it was flagged

Initialization instructs the agent to run a bundled repository scanner before planning or writing files. Local command execution is central to this skill and is described as read-only.

Skill content
Always scan the target repository before drafting or writing files:
Recommendation

Use it on repositories you trust, start in plan mode, and review the scanner behavior if local code execution is a concern.

What this means

If invoked for execution, the skill can cause multiple agent workers to modify project files according to the task docs.

Why it was flagged

The orchestrator can coordinate subagents that implement repository tasks. The same artifact requires exact files, validation, review, and blocker handling, so this is disclosed and scoped rather than suspicious.

Skill content
dispatch one worker subagent per ready task when write scopes do not conflict
Recommendation

Review task files, allowed write paths, and validation commands before starting execution, and keep the repository under version control.

What this means

Incorrect or untrusted content in AGENTS.md or context/ could steer later agent work in the repository.

Why it was flagged

The skill intentionally creates persistent repo-local context that future agents will read as project knowledge and operating guidance.

Skill content
Treat `context/` as working memory, not a dumping ground.
Recommendation

Review generated context files before relying on them, and keep stable specs/rules accurate and source-controlled.