Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
This is the official Claude Code repository by Anthropic. It contains:
- **Official plugins** in `plugins/` - extending Claude Code with commands, agents, hooks, and skills
- **Example hooks** in `examples/hooks/` - sample hook implementations
- **Example settings** in `examples/settings/` - managed settings files for organization-wide deployments (lax, strict, bash-sandbox)
- **Issue management scripts** in `scripts/` - TypeScript/Bun scripts for GitHub issue automation
- **GitHub workflows** in `.github/workflows/` - CI/CD for issue triage, duplicate detection, and @claude mentions

Expand Down Expand Up @@ -39,10 +40,14 @@ plugin-name/
| Plugin | Purpose |
|--------|---------|
| `agent-sdk-dev` | Agent SDK development tools |
| `claude-opus-4-5-migration` | Migrate code and prompts from Sonnet 4.x / Opus 4.1 to Opus 4.5 |
| `code-review` | Automated PR review with confidence scoring |
| `commit-commands` | Git workflow automation (`/commit`, `/commit-push-pr`) |
| `explanatory-output-style` | Educational insights about implementation choices (mimics deprecated Explanatory output style) |
| `feature-dev` | 7-phase feature development workflow |
| `frontend-design` | Frontend design skill for distinctive, production-grade UI |
| `hookify` | Create custom hooks from conversation patterns |
| `learning-output-style` | Interactive learning mode requesting code contributions at decision points |
| `plugin-dev` | Plugin creation toolkit with validators |
| `pr-review-toolkit` | Specialized PR review agents |
| `ralph-wiggum` | Iterative AI loops for development |
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ For more installation options, uninstall steps, and troubleshooting, see the [se

2. Navigate to your project directory and run `claude`.

## Example Settings

The [`examples/settings/`](./examples/settings/) directory contains example managed settings files for organization-wide Claude Code deployments, including lax, strict, and bash-sandbox configurations. See the [settings examples README](./examples/settings/README.md) for details.

## Plugins

This repository includes several Claude Code plugins that extend functionality with custom commands and agents. See the [plugins directory](./plugins/README.md) for detailed documentation on available plugins.
Expand Down
15 changes: 11 additions & 4 deletions plugins/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,17 @@ Learn more in the [official plugins documentation](https://docs.claude.com/en/do

These plugins are included in the Claude Code repository. To use them in your own projects:

1. Install Claude Code globally:
```bash
npm install -g @anthropic-ai/claude-code
```
1. Install Claude Code using one of the [recommended methods](../README.md#get-started):

**MacOS/Linux:**
```bash
curl -fsSL https://claude.ai/install.sh | bash
```

**Windows:**
```powershell
irm https://claude.ai/install.ps1 | iex
```
Comment on lines +33 to +43

Copilot AI Mar 24, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR description says changes are "strictly additive", but this hunk removes the existing npm install -g installation step and replaces it with curl/irm instructions. Consider updating the PR description (or Notes section) to reflect that this is a replacement/removal of deprecated guidance, not purely additive.

Copilot uses AI. Check for mistakes.

2. Navigate to your project and run Claude Code:
```bash
Expand Down