/create-prp banner
Wirasm Wirasm

/create-prp

Git community intermediate

Description

AI-powered development utilities using Claude Code. This project combines production-ready CLI tools with an experimental concept library for enhancing development workflows.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Dylan

AI-powered development utilities using Claude Code. This project combines production-ready CLI tools with an experimental concept library for enhancing development workflows.

Core Application

The main CLI (`dylan`) provides integrated access to production-ready utilities:

# Main CLI with sub-commands
dylan review feature-branch    # Run AI code reviews
dylan standup                 # Generate standup reports

Available Commands

`dylan review` - AI Code Review

Analyzes git diffs and provides comprehensive code reviews with:

  • Issue identification by severity (critical, high, medium, low)
  • File and line-specific feedback
  • Suggested fixes
  • JSON output support for automation
dylan review feature-branch --format json

`dylan standup` - Daily Standup Reports

Generates formatted standup reports from:

  • Recent git commits
  • GitHub PRs (if configured)
  • Customizable time ranges
dylan standup --since yesterday --open

`dylan pr` - Pull Request Management

Creates and manages pull requests with:

  • Automated PR title and description generation
  • Branch management and tracking
  • GitHub CLI integration
dylan pr feature-branch --target develop

`dylan release` - Release Management

Manages project releases with:

  • Version bumping and changelog updates
  • Release notes generation
  • Git tag management
dylan release --minor --tag

Installation

# Install as a development tool
uv tool install -e /path/to/dylan

# Use anywhere
dylan --help

Concept Library

The `concept_library/` directory contains experimental ideas and proof-of-concepts exploring Claude Code's capabilities:

Core Concepts

  1. Automated Review Flow - Multi-stage code review, development, and PR creation
  2. Product Requirement Prompt (PRP) Flow - Structured prompt engineering for feature implementation
  3. Automated Bug Triage - GitHub issue analysis and categorization

...