Skip to content
Merged
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
11 changes: 11 additions & 0 deletions .claude/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"permissions": {
"allow": []
},
"enabledPlugins": {
"code-review@claude-plugins-official": true,
"pr-review-toolkit@claude-plugins-official": true,
"claude-md-management@claude-plugins-official": true,
"plugin-dev@claude-plugins-official": true
}
}
3 changes: 3 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ See `mise.toml` for the full task list and tool versions.

## Plugin commands (Claude)

Project-level plugin settings are in `.claude/settings.json` (`enabledPlugins`).
Contributors must first add the marketplace before these take effect.

```bash
# Add marketplace
/plugin marketplace add awslabs/agent-plugins
Expand Down
14 changes: 14 additions & 0 deletions DEVELOPMENT_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@ This project uses Mise (https://mise.jdx.dev/). At the moment, there is no dedic
| `code .` | Opens the project in VSCode. You can use the editor of your choice, just adapt this step to your specific use case. |
| `mise install` | This command will install the tools required for the project and environmental variables |

## Claude Code Setup

This project uses Claude Code plugins for development workflows. The project-level `.claude/settings.json` pre-configures enabled plugins via `enabledPlugins`, but you must first register the marketplace(s) it references.

### One-time marketplace setup

Run this once inside a Claude Code session:

```bash
/plugin marketplace add awslabs/agent-plugins
```

After adding the marketplace, the plugins listed in `.claude/settings.json` will activate automatically for this project.

## Working on Your Contribution

| Action | Explanation |
Expand Down