dev — install dev for automated branching community, install dev for automated branching, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Ideal for Development Agents requiring streamlined workflow utilities for branching, PR management, and review feedback. dev is a development workflow utility that automates branching, PR management, and review feedback tasks, enhancing the development process.

Features

Creates a new branch off the latest default branch commit
Detects default branch (main or master) for branch creation
Generates short, kebab-case branch names based on tasks
Switches to new branch after creation
Supports workflow automation for PR management and review feedback

# Core Topics

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

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 install dev for automated branching.

Ideal Agent Persona

Ideal for Development Agents requiring streamlined workflow utilities for branching, PR management, and review feedback.

Core Value

Empowers agents to automate tasks such as creating branches, switching between them, and managing PRs using descriptive kebab-case branch names, enhancing development workflow efficiency with features like fetching latest from remote and detecting default branches.

Capabilities Granted for dev

Automating branch creation with descriptive names
Streamlining PR management and review feedback
Switching between branches efficiently

! Prerequisites & Limits

  • Requires remote repository access
  • Limited to Git-based version control systems
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

dev

Install dev, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

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?

Ideal for Development Agents requiring streamlined workflow utilities for branching, PR management, and review feedback. dev is a development workflow utility that automates branching, PR management, and review feedback tasks, enhancing the development process.

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, Streamlining PR management and review feedback, Switching between branches efficiently.

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 remote repository access. Limited to Git-based version control systems.

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

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI