Check and configure outfitter marketplaces and plugins. Use when setting up a new project, checking plugin configuration, or when "setup outfitter", "configure plugins", or "marketplace" are mentioned.
View on GitHuboutfitter-dev/agents-internal
outfitter-dev
outfitter-dev/skills/agent-setup/SKILL.md
January 25, 2026
Select agents to install to:
npx add-skill https://github.com/outfitter-dev/agents-internal/blob/main/outfitter-dev/skills/agent-setup/SKILL.md -a claude-code --skill agent-setupInstallation paths:
.claude/skills/agent-setup/# Agent Setup
Check and configure outfitter marketplaces in a project.
## Check Current Status
Checks both project (`.claude/settings.json`) and user (`~/.claude/settings.json`) levels.
!`bun skills/agent-setup/scripts/check-outfitter.ts .`
## Marketplaces
| Alias | Repo | Required Plugin |
|-------|------|-----------------|
| `outfitter` | `outfitter-dev/agents` | `outfitter@outfitter` |
| `outfitter-internal` | `outfitter-dev/agents-internal` | `outfitter-dev@outfitter-internal` |
## Optional Plugins
From `outfitter` marketplace:
| Plugin | Purpose |
|--------|---------|
| `gt` | Graphite stacked PR workflows |
| `but` | GitButler virtual branch workflows |
| `cli-dev` | CLI development patterns |
## Required Setup
```json
{
"extraKnownMarketplaces": {
"outfitter": {
"source": { "source": "github", "repo": "outfitter-dev/agents" }
},
"outfitter-internal": {
"source": { "source": "github", "repo": "outfitter-dev/agents-internal" }
}
},
"enabledPlugins": {
"outfitter@outfitter": true,
"outfitter-dev@outfitter-internal": true
}
}
```
## Full Setup
```json
{
"extraKnownMarketplaces": {
"outfitter": {
"source": { "source": "github", "repo": "outfitter-dev/agents" }
},
"outfitter-internal": {
"source": { "source": "github", "repo": "outfitter-dev/agents-internal" }
}
},
"enabledPlugins": {
"outfitter@outfitter": true,
"outfitter-dev@outfitter-internal": true,
"gt@outfitter": true,
"but@outfitter": true,
"cli-dev@outfitter": true
}
}
```