dev — git branch automation dev, world, whilp, community, git branch automation, ai agent skill, ide skills, agent automation, pr management workflow, review feedback tool, development workflow automation, branch creation utility

v1.0.0
GitHub

About this Skill

Perfect for Development Agents needing streamlined workflow automation for branching and PR management. dev is a development workflow utility that automates tasks such as branch creation and PR management

Features

Creates new branches off the latest default branch commit
Detects default branch (main or master) for workflow automation
Generates short, kebab-case branch names based on tasks
Switches to new branch for streamlined development
Supports PR management and review feedback for collaborative development
Automates workflow using Git commands for efficient development

# Core Topics

whilp whilp
[9]
[3]
Updated: 2/20/2026

Quality Score

Top 5%
51
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
> npx killer-skills add whilp/world/dev
Supports 19+ Platforms
Cursor
Windsurf
VS Code
Trae
Claude
OpenClaw
+12 more

Agent Capability Analysis

The dev skill by whilp is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for git branch automation, pr management workflow, review feedback tool.

Ideal Agent Persona

Perfect for Development Agents needing streamlined workflow automation for branching and PR management.

Core Value

Empowers agents to automate tasks such as creating branches, switching between them, and managing review feedback, utilizing Git protocols and kebab-case naming conventions for descriptive branch names.

Capabilities Granted for dev

Automating branch creation with descriptive names based on tasks
Streamlining PR management through automated workflows
Generating review feedback for improved code quality

! Prerequisites & Limits

  • Requires Git version control system
  • Limited to branching and PR management workflows
Project
SKILL.md
3.4 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

dev

Development workflow utilities for branching, PR management, and review feedback.

Creating branches

Create a new branch off the latest default branch commit.

Workflow

  1. Fetch latest from remote
  2. Detect default branch (main or master)
  3. Create branch with descriptive name based on task
  4. Switch to new branch

Branch naming

Generate a short, kebab-case name from the task:

  • add-user-auth not add-user-authentication-feature
  • fix-login-bug not fix-the-bug-in-the-login-flow
  • refactor-api not refactor-api-endpoints-for-better-performance

Use a prefix if the repo convention requires one (check existing branches).

bash
1# Fetch and get default branch 2git fetch origin 3git remote show origin | sed -n '/HEAD branch/s/.*: //p' 4 5# Create branch from latest default branch 6git checkout -b <branch-name> origin/main 7 8# See existing branch naming patterns 9git branch -r | head -20

If branches use prefixes like feature/, fix/, or username prefixes like wcm/, follow that pattern.

Review feedback

Address GitHub PR review comments and reply to reviewers.

Workflow

  1. Get pending review comments - fetch unresolved comments
  2. Address each comment - make code changes to resolve feedback
  3. Commit with clear message - reference what feedback was addressed
  4. Reply to reviewer - concise reply with commit SHA and explanation

Getting review comments

bash
1# All comments on a PR (includes replies) 2gh pr view <pr-number> --comments --json comments 3 4# Review comments (code-level feedback) 5gh api repos/{owner}/{repo}/pulls/{pr}/comments --jq '.[] | {id, path, line, body, user: .user.login, in_reply_to_id}' 6 7# Pending/unresolved comments (no replies yet) 8gh api repos/{owner}/{repo}/pulls/{pr}/comments --jq '[.[] | select(.in_reply_to_id == null)] | .[] | {id, path, body: .body[0:100]}'

Replying to comments

bash
1# Reply to a review comment 2gh api repos/{owner}/{repo}/pulls/{pr}/comments \ 3 --method POST \ 4 -f body="Fixed in abc1234 - renamed to run-test.js" \ 5 -F in_reply_to=<comment-id>

Good reply format

Replies should be:

  • Concise - one sentence is often enough
  • Reference commit SHA - so reviewer can verify
  • Explain how - brief description of the fix

Examples:

  • Fixed in abc1234 - renamed to run-test.js as suggested
  • Addressed in def5678 - now uses a single rule in cook.mk
  • Good catch, fixed in 789abcd - removed the duplicate import

Complete example

bash
1# 1. Get pending comments on PR #269 2gh api repos/whilp/world/pulls/269/comments \ 3 --jq '.[] | select(.in_reply_to_id == null) | {id, path, body}' 4 5# Output: 6# {"id":2702089939,"path":"lib/appscript/run-tests.js","body":"run-tests.js should be run-test.js..."} 7 8# 2. Make the fix and commit 9git mv lib/appscript/run-tests.js lib/appscript/run-test.js 10git commit -m "appscript: rename run-tests.js to run-test.js" 11# Commit SHA: abc1234 12 13# 3. Reply to the comment 14gh api repos/whilp/world/pulls/269/comments \ 15 --method POST \ 16 -f body="Fixed in abc1234 - renamed to run-test.js" \ 17 -F in_reply_to=2702089939

Batch processing

For multiple comments:

bash
1# Get all pending comments as JSON 2gh api repos/{owner}/{repo}/pulls/{pr}/comments \ 3 --jq '[.[] | select(.in_reply_to_id == null)] | group_by(.path) | .[] | {path: .[0].path, comments: [.[] | {id, body}]}'

This groups comments by file for efficient processing.

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is dev?

Perfect for Development Agents needing streamlined workflow automation for branching and PR management. dev is a development workflow utility that automates tasks such as branch creation and PR management

How do I install dev?

Run the command: npx killer-skills add whilp/world/dev. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for dev?

Key use cases include: Automating branch creation with descriptive names based on tasks, Streamlining PR management through automated workflows, Generating review feedback for improved code quality.

Which IDEs are compatible with dev?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for dev?

Requires Git version control system. Limited to branching and PR management workflows.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add whilp/world/dev. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use dev immediately in the current project.

Related Skills

Looking for an alternative to dev or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
Design

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
AI

antd-commit-msg

Logo of ant-design
ant-design

Generate a single-line commit message for ant-design by reading the projects git staged area and recent commit style. Use when the user asks for a commit message, says msg, commit msg, 写提交信息, or wants

97.8k
0
Design