Metadata-Version: 2.4
Name: ai-config-cli
Version: 0.4.2
Summary: Declarative plugin manager for Claude Code
Project-URL: Homepage, https://github.com/safurrier/ai-config
Project-URL: Documentation, https://safurrier.github.io/ai-config/
Project-URL: Repository, https://github.com/safurrier/ai-config
Project-URL: Issues, https://github.com/safurrier/ai-config/issues
Project-URL: Changelog, https://github.com/safurrier/ai-config/blob/main/CHANGELOG.md
Author-email: Alex Furrier <afurrier@gmail.com>
License: MIT
License-File: LICENSE
Keywords: ai,claude,claude-code,configuration,plugin
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: click>=8.0
Requires-Dist: pydantic>=2.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: questionary>=2.0
Requires-Dist: requests>=2.28
Requires-Dist: rich>=13.0
Requires-Dist: tomli>=1.0.0; python_full_version < '3.11'
Requires-Dist: watchdog>=3.0
Provides-Extra: dev
Requires-Dist: docker>=7.0; extra == 'dev'
Requires-Dist: pre-commit>=3.6.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
Requires-Dist: pytest-cov>=5.0.0; extra == 'dev'
Requires-Dist: pytest>=8.1.1; extra == 'dev'
Requires-Dist: ruff>=0.3.0; extra == 'dev'
Requires-Dist: ty>=0.0.2; extra == 'dev'
Requires-Dist: types-pyyaml>=6.0; extra == 'dev'
Requires-Dist: types-requests>=2.28; extra == 'dev'
Provides-Extra: docs
Requires-Dist: mkdocs-material>=9.6.14; extra == 'docs'
Requires-Dist: mkdocstrings[python]>=0.26.1; extra == 'docs'
Description-Content-Type: text/markdown

# ai-config

Declarative plugin manager for Claude Code — with cross-tool conversion to Codex, Cursor, OpenCode, and Pi.

## Why this exists

You've spent time building up your AI coding setup — custom skills, MCP servers, hooks, workflows. Then you want to try Codex or Pi, and you're starting from scratch. Or you get a new machine and have to remember what you installed.

ai-config solves both problems. You define your setup in one YAML file, and it:

1. **Installs your plugins** across machines reproducibly (`ai-config sync`)
2. **Converts your setup** to work with other tools automatically — same skills, same config, no manual porting

No more vendor lock-in because your customizations are trapped in one tool's config directory. No more juggling dotfiles across `.claude/`, `.codex/`, `.cursor/`, `.opencode/`, and `.pi/`. Write it once, sync everywhere.

Or more simply, run `ai-config init` and it walks you through everything.

## What this isn't

This README does not have:

- 14 shields.io badges declaring build status, coverage, npm downloads, discord members, twitter followers, and mass-to-charge ratio
- A mass of emojis to make it look "friendly" and "approachable"
- Claims about revolutionizing your development workflow
- A "Quick Start" that's actually 73 steps
- Screenshots of a dashboard that doesn't exist
- A "Powered by AI" badge despite just being a for-loop

It's a config file and some commands. That's it.

## Installation

```bash
pip install ai-config-cli
# or
uv tool install ai-config-cli
```

This installs `ai-config` globally. Run `ai-config --help` to verify.

### From source (latest)

```bash
uv tool install git+https://github.com/safurrier/ai-config
```

### For development

```bash
git clone https://github.com/safurrier/ai-config.git
cd ai-config
just setup    # Install dependencies
just check    # Run lint, type check, tests
```

## Quick Start

**1. Create your config**

```bash
ai-config init
```

Interactive wizard walks you through adding marketplaces and plugins. Supports GitHub repos and local paths (including env vars like `$DOTS_REPO/plugins` for portability across machines). Creates `.ai-config/config.yaml`.

**2. Sync to install plugins**

```bash
ai-config sync
```

Installs/uninstalls plugins to match your config. If you have conversion enabled, it also generates config for Codex, Cursor, and OpenCode.

If plugins seem stale or out of date:

```bash
ai-config sync --fresh
```

**3. Iterate with watch (plugin development)**

```bash
ai-config watch
```

Auto-syncs when you edit config or plugin files. Press Ctrl+C to stop.

**Note:** Claude Code loads plugins at session start. After changes sync, restart Claude Code to apply them. Use `claude --resume` to continue your previous session.

**4. Troubleshoot with doctor**

```bash
ai-config doctor
```

Validates marketplaces, plugins, skills, hooks, and MCP servers. Shows fix hints for any issues.

## Example: one config, five tools

Say you have a plugin marketplace with your coding skills and MCP servers. Here's the full config:

```yaml
version: 1
targets:
  - type: claude
    config:
      marketplaces:
        my-plugins:
          source: github
          repo: myorg/ai-plugins
      plugins:
        - id: code-review@my-plugins
          scope: user
        - id: test-writer@my-plugins
          scope: user
      conversion:
        enabled: true
        targets: [codex, cursor, opencode, pi]
        scope: user
```

Run `ai-config sync` and you get:

- **Claude Code**: plugins installed via `claude plugin install`
- **Codex**: skills in `~/.codex/skills/`, MCP in `~/.codex/mcp-config.toml`
- **Cursor**: rules in `~/.cursor/rules/`, MCP in `~/.cursor/mcp.json`
- **OpenCode**: skills in `~/.opencode/skills/`, MCP in `~/opencode.json`
- **Pi**: skills in `~/.pi/agent/skills/`, prompt templates in `~/.pi/agent/prompts/`

Same skills, same setup, every tool. Check this config into your dotfiles and run `ai-config sync` on any machine.

Want to try Pi for the first time? Just add `pi` to the targets list and re-sync. Your skills are already there.

## What it does

**Declarative config** - Define your plugins in `.ai-config/config.yaml`:

```yaml
version: 1
targets:
  - type: claude
    config:
      marketplaces:
        my-marketplace:
          source: github
          repo: owner/repo
        my-local-plugins:
          source: local
          path: $DOTS_REPO/plugins    # env vars preserved for portability
      plugins:
        - id: my-plugin@my-marketplace
          scope: user
          enabled: true
      conversion:
        enabled: true
        targets: [codex, cursor, opencode, pi]
        scope: user
```

**Interactive setup** - Don't want to write YAML? Run the wizard:

```bash
ai-config init
```

Walks you through adding marketplaces and plugins with arrow-key navigation. Escape goes back a step, Ctrl+C cancels.

**Sync** - Make reality match your config:

```bash
ai-config sync
```

**Cross-tool conversion** - Generate config for other AI coding tools:

```bash
ai-config convert --plugin ~/.claude/plugins/my-plugin --target codex
```

Or let sync handle it automatically with the `conversion:` section in your config. Skills, hooks, MCP servers, and commands are mapped to each tool's native format.

**Validation** - Find problems before they bite you:

```bash
ai-config doctor
ai-config doctor --target codex    # validate converted output
```

Checks that marketplaces exist, plugins are installed, skills are valid, hooks work.

## Commands

| Command | What it does |
|---------|--------------|
| `init` | Interactive config generator |
| `sync` | Install/uninstall plugins to match config (+ conversion) |
| `status` | Show what's currently installed |
| `watch` | Auto-sync on file changes (plugin development) |
| `update` | Update plugins to latest versions |
| `doctor` | Validate setup and show fix hints |
| `convert` | Convert a plugin to another tool's format |
| `plugin create` | Scaffold a new plugin |
| `cache clear` | Clear the plugin cache |

## Config file locations

ai-config looks for config in this order:

1. `.ai-config/config.yaml` (project-local)
2. `~/.ai-config/config.yaml` (global)

You can also pass `-c /path/to/config.yaml` to any command.

Paths support environment variables (`$MY_VAR`) and tilde (`~`), expanded at load time.

## Scopes

Plugins can be installed in different scopes:

- **user** - Available everywhere (`~/.claude/plugins/`)
- **project** - Only in the current project (`.claude/plugins/`)

## Conversion targets

ai-config converts Claude plugins to work with:

| Tool | Output | Binary |
|------|--------|--------|
| Codex (OpenAI) | `.codex/` | `codex` |
| Cursor | `.cursor/` | `cursor-agent` |
| OpenCode | `.opencode/` | `opencode` |
| Pi | `.pi/` | `pi` |

Skills, commands, hooks, and MCP servers are mapped to each tool's native format. Not everything maps 1:1 — conversion reports show what was native, approximated, or unsupported.

## Troubleshooting

**Something not working? Force a full rebuild:**

```bash
ai-config sync --force
```

This clears the plugin cache and re-converts everything from scratch. Use it when plugins aren't showing up, you've added a new conversion target, or things are just out of sync.

If you only want to redo conversions without clearing the plugin cache:

```bash
ai-config sync --force-convert
```

**Something's broken and Claude Code won't help**

```bash
ai-config doctor --verbose
```

**Converted output looks wrong**

```bash
ai-config doctor --target codex    # or cursor, opencode, pi
```

## License

MIT
