โ† All skills
Tencent SkillHub ยท Productivity

Mini PIV - Lightweight Feature Builder

Lightweight PIV workflow - discovery-driven feature builder. No PRD needed. Asks quick questions, generates PRP, executes with validation loop. For small-to-medium features when you want to skip PRD ceremony.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Lightweight PIV workflow - discovery-driven feature builder. No PRD needed. Asks quick questions, generates PRP, executes with validation loop. For small-to-medium features when you want to skip PRD ceremony.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, assets/prp_base.md, references/codebase-analysis.md, references/execute-prp.md, references/generate-prp.md, references/piv-debugger.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 19 sections Open source page

Arguments: $ARGUMENTS

Parse arguments: FEATURE_NAME = $ARGUMENTS[0] or null (will ask user during discovery) PROJECT_PATH = $ARGUMENTS[1] or current working directory

Philosophy: Quick & Quality

"When you just want to build something without writing a PRD first." Same quality pipeline (Execute โ†’ Validate โ†’ Debug), but starts from a quick conversation instead of a PRD. You are the orchestrator - stay lean, spawn fresh sub-agents for heavy lifting. Sub-agent spawning: Use the sessions_spawn tool to create fresh sub-agent sessions. Each spawn is non-blocking โ€” you'll receive results via an announce step. Wait for each agent's results before proceeding to the next step.

Required Reading by Role

RoleInstructionsOrchestratorThis file onlyResearch Agent{baseDir}/references/codebase-analysis.md + {baseDir}/references/generate-prp.mdExecutor{baseDir}/references/piv-executor.md + {baseDir}/references/execute-prp.mdValidator{baseDir}/references/piv-validator.mdDebugger{baseDir}/references/piv-debugger.md

Visual Workflow

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ 1. DISCOVERY โ†’ Ask 3-5 questions โ”‚ โ”‚ 2. RESEARCH & PRP โ†’ Codebase analysis + PRP generation โ”‚ โ”‚ 3. EXECUTE โ†’ Implement PRP โ”‚ โ”‚ 4. VALIDATE โ†’ PASS / GAPS_FOUND / HUMAN_NEEDED โ”‚ โ”‚ 5. DEBUG LOOP โ†’ Fix gaps (max 3x) โ”‚ โ”‚ 6. COMMIT โ†’ feat(mini): {description} โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

1a. Determine Feature Name

If not provided: ask user or infer from context. Normalize to kebab-case.

1b. Check for Existing PRP

ls -la PROJECT_PATH/PRPs/ 2>/dev/null | grep -i "mini-{FEATURE_NAME}" If exists, ask: "Overwrite, rename, or skip to execution?"

1c. Ask Discovery Questions

Present in a single conversational message: I've got a few quick questions so I can build this right: 1. **What does this feature do?** Quick rundown. 2. **Where in the codebase does it live?** Files, folders, components? 3. **Any specific libraries, patterns, or existing code to follow?** 4. **What does "done" look like?** 1-3 concrete success criteria. 5. **Anything explicitly OUT of scope?** Adapt for feature type (UI, API, contracts, integrations).

1d. Structure Discovery Answers

feature: name: {FEATURE_NAME} scope: {Q1} touchpoints: {Q2} dependencies: {Q3} success_criteria: {Q4} out_of_scope: {Q5}

Step 2: Research & PRP Generation

Spawn a fresh sub-agent using sessions_spawn: MINI PIV: RESEARCH & PRP GENERATION ==================================== Project root: {PROJECT_PATH} Feature name: {FEATURE_NAME} ## Discovery Input {paste structured YAML} ## Step 1: Codebase Analysis Read {baseDir}/references/codebase-analysis.md for the process. Save to: {PROJECT_PATH}/PRPs/planning/mini-{FEATURE_NAME}-analysis.md ## Step 2: Generate PRP (analysis context still loaded) Read {baseDir}/references/generate-prp.md for the process. ### Discovery โ†’ PRP Translation | Discovery | PRP Section | |-----------|-------------| | Scope (Q1) | Goal + What | | Touchpoints (Q2) | Implementation task locations | | Dependencies (Q3) | Context YAML, Known Gotchas | | Success Criteria (Q4) | Success Criteria + Validation | | Out of Scope (Q5) | Exclusions in What section | Use template: PRPs/templates/prp_base.md Output to: {PROJECT_PATH}/PRPs/mini-{FEATURE_NAME}.md Do BOTH steps yourself. DO NOT spawn sub-agents. Wait for completion.

Step 3: Spawn EXECUTOR

Spawn a fresh sub-agent using sessions_spawn: EXECUTOR MISSION - Mini PIV ============================ Read {baseDir}/references/piv-executor.md for your role. Read {baseDir}/references/execute-prp.md for the execution process. PRP: {PROJECT_PATH}/PRPs/mini-{FEATURE_NAME}.md Project: {PROJECT_PATH} Follow: Load PRP โ†’ Plan Thoroughly โ†’ Execute โ†’ Validate โ†’ Verify Output EXECUTION SUMMARY.

Validation Sizing Decision

Before spawning a full validator, assess: <5 files changed, <100 lines, no external APIs โ†’ Quick validation (review changes yourself as orchestrator) Otherwise โ†’ Spawn full validator sub-agent (Step 4)

Step 4: Spawn VALIDATOR

Spawn a fresh sub-agent using sessions_spawn: VALIDATOR MISSION - Mini PIV ============================= Read {baseDir}/references/piv-validator.md for your process. PRP: {PROJECT_PATH}/PRPs/mini-{FEATURE_NAME}.md Project: {PROJECT_PATH} Executor Summary: {SUMMARY} Verify ALL requirements independently. Output VERIFICATION REPORT with Grade, Checks, Gaps. Process result: PASS โ†’ commit | GAPS_FOUND โ†’ debugger | HUMAN_NEEDED โ†’ ask user

Step 5: Debug Loop (Max 3 iterations)

Spawn a fresh sub-agent using sessions_spawn: DEBUGGER MISSION - Mini PIV - Iteration {I} ============================================ Read {baseDir}/references/piv-debugger.md for your methodology. Project: {PROJECT_PATH} PRP: {PROJECT_PATH}/PRPs/mini-{FEATURE_NAME}.md Gaps: {GAPS} Errors: {ERRORS} Fix root causes. Run tests after each fix. Output FIX REPORT. After debugger: re-validate โ†’ PASS (commit) or loop (max 3) or escalate.

Step 6: Smart Commit

  • cd PROJECT_PATH && git status && git diff --stat
  • git add -A
  • git commit -m "feat(mini): implement {FEATURE_NAME}
  • {bullet 1}
  • {bullet 2}
  • Built via Mini PIV Ralph
  • Built with FTW (First Try Works) - https://github.com/SmokeAlot420/ftw"

Completion

  • ## MINI PIV RALPH COMPLETE
  • Feature: {FEATURE_NAME}
  • Project: {PROJECT_PATH}
  • ### Artifacts
  • PRP: PRPs/mini-{FEATURE_NAME}.md
  • Analysis: PRPs/planning/mini-{FEATURE_NAME}-analysis.md
  • ### Implementation
  • Validation cycles: {N}
  • Debug iterations: {M}
  • ### Files Changed
  • {list}
  • All requirements verified and passing.

Error Handling

Executor BLOCKED: Ask user for guidance Validator HUMAN_NEEDED: Ask user for guidance 3 debug cycles exhausted: Escalate with persistent issues list

Sub-Agent Timeout/Failure

When a sub-agent times out or fails: Check for partial work (files created, tests written) Retry once with a simplified, shorter prompt If retry fails, escalate to user with what was accomplished

Quick Reference

ScenarioUse ThisSmall/medium feature, no PRDMini PIVLarge feature with phasesFull PIV (/piv)

File Naming

PRPs/mini-{feature-name}.md # PRP PRPs/planning/mini-{feature-name}-analysis.md # Analysis

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
6 Docs
  • SKILL.md Primary doc
  • assets/prp_base.md Docs
  • references/codebase-analysis.md Docs
  • references/execute-prp.md Docs
  • references/generate-prp.md Docs
  • references/piv-debugger.md Docs