Mini PIV - Lightweight Feature Builder

PassAudited by ClawScan on May 10, 2026.

Overview

This is a coherent coding-workflow skill, but it can run project commands, spawn sub-agents, modify files, and create a local git commit after you invoke it.

Install only if you want an agent to actively implement features in your repository. Use it from a clean working tree, review project instruction files and generated PRPs, and check diffs before allowing the final git commit.

Findings (6)

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

Unrelated local changes or files in the repository could be included in the generated commit if the working tree is not clean.

Why it was flagged

The workflow performs broad git staging and a local commit as its final step. This is disclosed and aligned with a feature-builder skill, but `git add -A` can include unrelated tracked or untracked changes.

Skill content
cd PROJECT_PATH && git status && git diff --stat
git add -A
git commit -m
Recommendation

Run this only in the intended repository, start from a clean working tree, and review `git status`/diffs before the commit step.

What this means

Project test, build, lint, or service-start commands may run code from the repository on your machine.

Why it was flagged

The executor role is instructed to edit files and run validation/build/test commands. That is central to the skill’s purpose, but repository scripts can execute arbitrary local code.

Skill content
Use the available tools (read, write, edit, exec) to implement changes and run commands
Recommendation

Use this in repositories you trust, or review the project’s scripts and validation commands before allowing execution.

What this means

Project context and implementation details may be shared across spawned agent sessions during the workflow.

Why it was flagged

The orchestrator passes project paths, PRP paths, summaries, gaps, and errors between multiple spawned agents. The roles are defined and bounded, but it is still an inter-agent data flow.

Skill content
Use the `sessions_spawn` tool to create fresh sub-agent sessions
Recommendation

Use the skill only when you are comfortable with sub-agents receiving project context needed for implementation and validation.

What this means

A malicious or unexpected project instruction file could steer how the agent plans, edits, or runs commands.

Why it was flagged

The generated PRP template tells agents to follow repository-level instruction files. This is normal in coding agents, but those files can influence agent behavior if the repository is untrusted.

Skill content
Global rules: Follow any project-level configuration files (CLAUDE.md, AGENTS.md, .cursorrules, etc.)
Recommendation

Review project-level agent instruction files before using this skill on unfamiliar repositories.

What this means

Generated planning files may retain project details and may be reused by future agent runs.

Why it was flagged

The skill persists codebase analysis and generated PRPs inside the project. This is expected for the workflow, but those files may contain implementation context and can later influence agents.

Skill content
Save to: {PROJECT_PATH}/PRPs/planning/mini-{FEATURE_NAME}-analysis.md
Recommendation

Review generated PRP and analysis files before committing or sharing the repository.

What this means

Research commands may use your locally configured GitHub identity if you have the GitHub CLI authenticated.

Why it was flagged

The skill optionally suggests using the GitHub CLI for research. If `gh` is configured, it may operate under the user’s GitHub account, though the artifacts do not show token capture or unrelated account actions.

Skill content
Shell/command runner — use `gh` CLI for GitHub code search, repo exploration
Recommendation

Be aware of which GitHub account `gh` is logged into, especially when working with private repositories.