feature — for Claude Code feature, community, for Claude Code, ide skills, feature add vim keybindings, feat: add vim keybindings, 2. Create the issue, feature #20, implement #20, The worktree path uses

v1.0.0

About this Skill

Ideal for AI agents that need end-to-end skill for planning and shipping features in gwtui. operates in two modes depending on. feature is an AI agent skill for end-to-end skill for planning and shipping features in gwtui. operates in two modes depending on.

Features

End-to-end skill for planning and shipping features in gwtui. Operates in two modes depending on
Mode 1: Plan (no issue number)
When invoked without a GitHub issue number (e.g., /feature add vim keybindings), create a new
Gather feature details from the user's prompt. Distill into:
A short title prefixed with feat: (e.g., feat: add vim keybindings)

# Core Topics

plinde plinde
[0]
[0]
Updated: 4/9/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
8/11
Quality Score
40
Canonical Locale
en
Detected Body Locale
en

Ideal for AI agents that need end-to-end skill for planning and shipping features in gwtui. operates in two modes depending on. feature is an AI agent skill for end-to-end skill for planning and shipping features in gwtui. operates in two modes depending on.

Core Value

feature helps agents end-to-end skill for planning and shipping features in gwtui. operates in two modes depending on. Interactive TUI for managing git worktrees with GitHub PR status enrichment # Feature Workflow End-to-end skill for planning and shipping features in gwtui. This AI agent skill

Ideal Agent Persona

Ideal for AI agents that need end-to-end skill for planning and shipping features in gwtui. operates in two modes depending on.

Capabilities Granted for feature

Applying End-to-end skill for planning and shipping features in gwtui. Operates in two modes depending on
Applying Mode 1: Plan (no issue number)
Applying When invoked without a GitHub issue number (e.g., /feature add vim keybindings), create a new

! Prerequisites & Limits

  • Fix any failures before proceeding. Do not skip this step.
  • Stage only the relevant files (no git add .):
  • Identify which files need changes and what tests are needed

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

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

FAQ & Installation Steps

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

? Frequently Asked Questions

What is feature?

Ideal for AI agents that need end-to-end skill for planning and shipping features in gwtui. operates in two modes depending on. feature is an AI agent skill for end-to-end skill for planning and shipping features in gwtui. operates in two modes depending on.

How do I install feature?

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

What are the use cases for feature?

Key use cases include: Applying End-to-end skill for planning and shipping features in gwtui. Operates in two modes depending on, Applying Mode 1: Plan (no issue number), Applying When invoked without a GitHub issue number (e.g., /feature add vim keybindings), create a new.

Which IDEs are compatible with feature?

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 feature?

Fix any failures before proceeding. Do not skip this step.. Stage only the relevant files (no git add .):. Identify which files need changes and what tests are needed.

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 plinde/gwtui/feature. 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 feature immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

feature

Install feature, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Feature Workflow

End-to-end skill for planning and shipping features in gwtui. Operates in two modes depending on arguments.

Mode 1: Plan (no issue number)

When invoked without a GitHub issue number (e.g., /feature add vim keybindings), create a new GitHub issue.

Steps

  1. Gather feature details from the user's prompt. Distill into:
    • A short title prefixed with feat: (e.g., feat: add vim keybindings)
    • A body with these sections:
markdown
1## Summary 2<1-3 sentences describing the feature and motivation> 3 4## Acceptance criteria 5- [ ] <concrete, testable criterion> 6- [ ] <tests covering the new behavior> 7- [ ] All existing tests pass
  1. Create the issue:
bash
1~/.claude/bin/gh issue create --repo plinde/gwtui --title "${TITLE}" --body "${BODY}"
  1. Report the issue URL to the user. Ask if they want to proceed to implementation now.

Mode 2: Implement (issue number provided)

When invoked with a GitHub issue number (e.g., /feature #20, implement #20, work on /feature #20), execute the full implementation lifecycle.

Phase 1: Understand

  1. Fetch the issue details:
bash
1~/.claude/bin/gh issue view ${NUMBER} --repo plinde/gwtui --json title,body
  1. Read the issue title and body. Understand the acceptance criteria. Read relevant source files to plan the implementation. Identify which files need changes and what tests are needed.

Phase 2: Worktree

  1. Create a worktree branching from latest main:
bash
1git fetch origin main 2DESCRIPTION=$(echo "${ISSUE_TITLE}" | sed 's/^feat: //' | tr ' ' '-' | tr '[:upper:]' '[:lower:]' | tr -cd 'a-z0-9-') 3git worktree add ~/workspace/github.com/plinde/gwtui--${DESCRIPTION} -b issue-${NUMBER}/${DESCRIPTION} origin/main

The worktree path uses gwtui--<description> and the branch uses issue-N/<description>.

Phase 3: Implement

  1. Make all code changes inside the worktree directory. This is critical — never edit files in the main checkout.

  2. Write thorough tests:

    • Unit tests for new functions
    • Integration tests for new behavior interacting with existing features
    • Edge cases and error paths
    • Update existing tests if behavior changed
  3. Run the full test suite:

bash
1go test ./...

Fix any failures before proceeding. Do not skip this step.

  1. If a Makefile was changed, lint it:
bash
1checkmake Makefile

Phase 4: PR

  1. Stage only the relevant files (no git add .):
bash
1git add <specific files>
  1. Commit with a semantic message:
bash
1git commit -m "feat: <description> 2 3<optional body explaining the change> 4 5Closes #${NUMBER} 6 7Co-Authored-By: Claude <noreply@anthropic.com>"
  1. Push and create a PR:
bash
1git push -u origin issue-${NUMBER}/${DESCRIPTION} 2~/.claude/bin/gh pr create --repo plinde/gwtui --title "feat: <description>" --body "${PR_BODY}"

PR body format:

markdown
1## Summary 2<bullet points summarizing changes> 3 4Closes #${NUMBER} 5 6## Test plan 7- [x] <what's tested> 8- [ ] <manual verification steps> 9 10🤖 Generated with [Claude Code](https://claude.ai/code)

Phase 5: Merge

  1. Squash merge the PR:
bash
1~/.claude/bin/gh pr merge ${PR_NUMBER} --squash --delete-branch --repo plinde/gwtui
  1. Update local main and clean up the worktree:
bash
1git fetch origin main 2git reset --hard origin/main 3git worktree remove ~/workspace/github.com/plinde/gwtui--${DESCRIPTION}

Phase 6: Release

  1. Determine the next minor version (features bump minor):
bash
1git fetch --tags 2LATEST=$(git describe --tags --abbrev=0)

Bump minor version: v1.3.0 -> v1.4.0.

  1. Generate changelog and create release:
bash
1~/.claude/bin/gh release create ${VERSION} --repo plinde/gwtui --title "${VERSION}" --notes "${NOTES}"

Notes format:

markdown
1## What's Changed 2 3### Features 4- **Feature title** — description. (#PR) 5 6**Full Changelog**: https://github.com/plinde/gwtui/compare/${LATEST}...${VERSION}
  1. Build and install the new binary:
bash
1go build -o ~/.local/bin/gwtui ./cmd/
  1. Report final summary: issue URL, PR URL, release URL, installed version.

Related Skills

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

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

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
Developer