Skip to content

Dev Plugin Reference

The rp1-dev plugin provides development workflow capabilities for the complete feature lifecycle, code quality tools, and PR management.

Version: 4.1.0 Dependencies: rp1-base >= 2.0.0


Commands by Category

Blueprint & Planning

Start projects and plan features with structured documentation.

Command Description
blueprint Create project charter and PRD documents
feature-requirements Collect and document feature requirements
feature-design Generate technical design specifications
feature-tasks Break down design into actionable tasks
validate-hypothesis Test design assumptions through experiments

Implementation

Build features from specifications and manage the implementation lifecycle.

Command Description
feature-build Implement features from task lists
feature-verify Validate acceptance criteria before merge
feature-edit Propagate mid-stream changes across documents
feature-archive Archive completed features
feature-unarchive Restore archived features

Code Quality

Maintain code health with automated checks and analysis.

Command Description
code-check Fast hygiene validation (lint, test, coverage)
code-audit Pattern consistency and maintainability audit
code-investigate Systematic bug investigation
code-clean-comments Remove unnecessary code comments
code-quick-build Exploratory development for quick fixes

PR Management

Review and manage pull requests effectively.

Command Description
pr-review Map-reduce PR review with confidence gating
pr-visual Generate Mermaid diagrams from PR diffs
pr-feedback-collect Extract and classify PR review comments
pr-feedback-fix Systematically address PR feedback

Feature Development Workflow

The dev plugin commands work together to support a complete feature lifecycle:

blueprint → feature-requirements → feature-design → feature-tasks → feature-build → feature-verify

Each step produces artifacts that feed into the next:

Step Command Artifact
1 blueprint .rp1/work/charter.md, .rp1/work/prds/*.md
2 feature-requirements .rp1/work/features/{id}/requirements.md
3 feature-design .rp1/work/features/{id}/design.md
4 feature-tasks .rp1/work/features/{id}/tasks.md
5 feature-build Implementation + task updates
6 feature-verify Verification report

Feature Development Tutorial


Installation

/plugin marketplace add rp1-run/rp1
/plugin install rp1-base  # Required dependency
/plugin install rp1-dev
curl -fsSL https://raw.githubusercontent.com/rp1-run/rp1/main/scripts/install-for-opencode.sh | bash

Quick Start

After installation, start a new feature:

/feature-requirements my-feature
/rp1-dev/feature-requirements my-feature

This creates .rp1/work/features/my-feature/requirements.md and guides you through requirements collection.