ℹ
Purpose & Capability
Name/description (PIV workflow orchestrator) align with the content: the SKILL.md provides orchestration flow, templates, and role definitions. Required binaries declare only git, which is reasonable given the skill's smart-commit step. Minor inconsistent signals: metadata/openclaw.homepage points to a specific GitHub repo while the skill 'Source' is listed as unknown and homepage none; that's a provenance mismatch you should verify. The skill expects a platform tool called sessions_spawn to spawn sub-agents (reasonable for an orchestrator) but that tool is not declared in requires.bins (platform-provided tools may not be listed).
ℹ
Instruction Scope
SKILL.md is rich and prescriptive: it instructs directory creation, copying templates into the user's project, running codebase discovery (tree/ls), running linters/tests, and spawning sub-agents with sessions_spawn. Those actions are within expected scope for an orchestrator. Items to note: the instructions recommend using additional CLIs and commands (tree, gh, pytest, various linters) although only git is declared as required; the skill will attempt to read many project files (configs, README, .env patterns) — this is expected for code analysis, but you should be aware it will examine repository contents and may read config files unless you limit its access.
✓
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest-risk install mechanism. Nothing is downloaded or written by an installer besides the template/project files the skill directs the agent to create inside the user's project tree.
ℹ
Credentials
The skill declares no required environment variables or credentials, which is consistent with its scope. However, the workflow instructs agents to inspect project config files and environment patterns (.env.example, config files) and may run commands that access local files. If your repo contains secrets in files, the skill's sub-agents could read them — consider cleaning or isolating sensitive files before running. Also note the commit message template includes a hardcoded URL (https://github.com/SmokeAlot420/ftw) — benign but externally-referencing and something to be aware of.
✓
Persistence & Privilege
The skill does not request always:true, does not add install hooks, and has no install spec — it does not demand permanent presence. It writes PRP/analysis files into the project directory (expected for this orchestrator). One operational inconsistency: the skill-level flag disable-model-invocation is set true while the orchestration flow depends on spawning fresh sub-agents via sessions_spawn; verify how your platform treats disable-model-invocation vs. sessions_spawn so the skill can actually perform its intended orchestration.