🎯

git-troubleshooting

🎯Skill

from geoffjay/claude-plugins

VibeIndex|
What it does

Provides targeted guidance and step-by-step solutions for resolving common Git version control issues and error scenarios.

πŸ“¦

Part of

geoffjay/claude-plugins(32 items)

git-troubleshooting

Installation

Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add geoffjay/claude-plugins
Install PluginInstall plugin from marketplace
/plugin install golang-development
πŸ“– Extracted from docs: geoffjay/claude-plugins
3Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Overview

# Personal Claude Plugins Marketplace

> [!WARNING]

> For now this is just a place to try out Claude plugins, not much to see here.

Quick Start

Step 1: Add the Marketplace

Add this marketplace to Claude Code:

```bash

/plugin marketplace add geoffjay/claude-plugins

```

This makes all plugins available for installation, but does not load any agents or tools into the Claude context.

Step 2: Install Plugins

Browse available plugins:

```bash

/plugin

```

Install the plugins you need:

```bash

/plugin install golang-development

```

Each installed plugin only loads its specific agents, commands, and skills into the Claude context.

Architecture Highlights

Granular Design

  • Single responsibility - Each plugin does one thing well
  • Minimal token usage - Average 3.4 components per plugin
  • Composable - Mix and match for complex workflows
  • 100% coverage - All 85 agents accessible across plugins

Progressive Disclosure (Skills)

Three-tier architecture for token efficiency:

  1. Metadata - Name and activation criteria (always loaded)
  2. Instructions - Core guidance (loaded when activated)
  3. Resources - Examples and templates (loaded on demand)

Repository Structure

```

claude-agents/

β”œβ”€β”€ .claude-plugin/

β”‚ └── marketplace.json # all plugins

β”œβ”€β”€ plugins/

β”‚ β”œβ”€β”€ golang-development/

β”‚ β”‚ β”œβ”€β”€ agents/ # Expert definitions

β”‚ β”‚ β”œβ”€β”€ commands/ # Scaffolding tool

β”‚ β”‚ └── skills/ # Specialized skills

β”‚ └── ... (more plugins)

β”œβ”€β”€ docs/ # Comprehensive documentation

└── README.md # This file

```

[β†’ View architecture details](docs/architecture.md)

Contributing

To add new agents, skills, or commands:

  1. Identify or create the appropriate plugin directory in plugins/
  2. Create .md files in the appropriate subdirectory:

- agents/ - For specialized agents

- commands/ - For tools and workflows

- skills/ - For modular knowledge packages

  1. Follow naming conventions (lowercase, hyphen-separated)
  2. Write clear activation criteria and comprehensive content
  3. Update the plugin definition in .claude-plugin/marketplace.json

See [Architecture Documentation](docs/architecture.md) for detailed guidelines.

Resources

Documentation

  • [Claude Code Documentation](https://docs.claude.com/en/docs/claude-code/overview)
  • [Plugins Guide](https://docs.claude.com/en/docs/claude-code/plugins)
  • [Subagents Guide](https://docs.claude.com/en/docs/claude-code/sub-agents)
  • [Agent Skills Guide](https://docs.claude.com/en/docs/agents-and-tools/agent-skills/overview)
  • [Slash Commands Reference](https://docs.claude.com/en/docs/claude-code/slash-commands)

Attribution

This project borrows considerably from [wshobson/agents](https://github.com/wshobson/agents).

License

MIT License - see [LICENSE](LICENSE) file for details.

More from this repository10

🎯
tokio-patterns🎯Skill

Provides expert guidance and code examples for implementing common asynchronous programming patterns using the Tokio runtime in Rust.

🎯
tokio-troubleshooting🎯Skill

Helps diagnose and resolve common runtime issues and performance bottlenecks in Rust applications using the Tokio asynchronous runtime.

🎯
tokio-concurrency🎯Skill

Provides expert guidance and code examples for implementing concurrent and asynchronous programming patterns using the Tokio runtime in Rust.

🎯
gpui-styling🎯Skill

Provides styling guidance and recommendations for creating user interfaces with the GPUI framework, focusing on design consistency and best practices.

🎯
gpui-patterns🎯Skill

Identifies and suggests design patterns and best practices for building graphical user interfaces (GUIs) across different programming frameworks and languages.

πŸͺ
geoffjay-claude-pluginsπŸͺMarketplace

Claude workflow orchestration through focused plugins, specialized agents, and tools - optimized for granular installation and minimal token usage

🎯
rust-ui-architecture🎯Skill

Provides expert guidance and architectural patterns for designing and implementing user interfaces in Rust, focusing on modular, scalable UI development strategies.

🎯
tokio-networking🎯Skill

Provides specialized guidance and code generation for implementing network programming tasks using the Tokio asynchronous runtime in Rust.

🎯
git-repository🎯Skill

Manages Git repository interactions, providing commands and agents for repository-level operations like cloning, branching, and metadata retrieval.

🎯
documentation-update🎯Skill

Updates documentation by identifying outdated sections, suggesting improvements, and generating revised content based on current project context and best practices.