Skip to content

Releases: Yeshwanthyk/gitgud

v0.0.4

12 Dec 16:42

Choose a tag to compare

  • Auto-discover SKILL.md in nested directories

v0.0.3

12 Dec 03:36

Choose a tag to compare

[0.0.3] - 2025-12-12

Added

  • gitgud update command: Self-update to the latest version
    • Checks GitHub releases for newer versions
    • Downloads and replaces the binary automatically
    • Shows helpful message when running via bun/node

v0.0.2

12 Dec 03:30

Choose a tag to compare

[0.0.2] - 2025-12-12

Changed

  • Precedence order updated: gitgud skills now take priority over Claude skills
    • local .gitgud (highest) → global .gitgud → local .claude → global .claude (lowest)
    • Allows users to override any Claude skill with custom versions

v0.0.1

12 Dec 03:04

Choose a tag to compare

[0.0.1] - 2025-12-11

First release.

New Features

  • Multi-Source Installation: Install skills from anywhere

    • Claude-plugins registry: gitgud install @anthropics/claude-code/frontend-design
    • GitHub repos: gitgud install gh:owner/repo/path/to/skill
    • Local directories: gitgud install ./my-skill
  • Skill Discovery: Find and explore your installed skills

    • gitgud list - View all skills with descriptions
    • gitgud search <term> - Search by keyword
    • gitgud show <name> - Load full skill content with base directory
    • gitgud path <name> - Get filesystem path
  • Claude Code Compatible: Works with existing Claude skills

    • Reads from ~/.claude/skills/ and .claude/skills/
    • Your gitgud and Claude Code skills work together
  • Agent-Friendly Output: Designed for AI agents

    • gitgud show includes base directory for resolving bundled resources
    • JSON output with --json flag for programmatic use
    • Progressive disclosure pattern: list → search → show
  • Standalone Binaries: No runtime dependencies

    • macOS (Apple Silicon and Intel)
    • Linux (x64 and ARM64)
    • One-line install: curl -fsSL https://raw.githubusercontent.com/Yeshwanthyk/gitgud/main/install.sh | bash

Installation

# Quick install (recommended)
curl -fsSL https://raw.githubusercontent.com/Yeshwanthyk/gitgud/main/install.sh | bash

# Or via npm/bun
npx gitgud-skills list
bun install -g gitgud-skills

Technical

  • Built with Bun and TypeScript
  • 40 tests with full coverage of core functionality