---
name: Add Agent Adapter
slug: add-agent-adapter
category: AI Engineering
description: Add Agent Adapter guides the steps for wiring a new AI coding agent into Gryph. Use it when adding support for a new agent, changing adapter wiring, or updating hook detection and event parsing.
github: "https://github.com/safedep/gryph/tree/main/.claude/skills/add-agent-adapter"
language: Go
stars: 161
forks: 18
install: "npx degit https://github.com/safedep/gryph/tree/main/.claude/skills/add-agent-adapter ~/.claude/skills/add-agent-adapter"
installs_to: ~/.claude/skills/add-agent-adapter
source_path: .claude/skills/add-agent-adapter/SKILL.md
collection_size: 3
category_size: 3670
collection_url: "https://dirskills.com/collections/safedep/gryph"
added: 2026-09-08T05:36:09.677Z
last_synced: 2026-09-08T05:36:09.677Z
canonical_url: "https://dirskills.com/skills/add-agent-adapter"
---

# Add Agent Adapter

Add Agent Adapter guides the steps for wiring a new AI coding agent into Gryph. Use it when adding support for a new agent, changing adapter wiring, or updating hook detection and event parsing.

**Install:**

```bash
npx degit https://github.com/safedep/gryph/tree/main/.claude/skills/add-agent-adapter ~/.claude/skills/add-agent-adapter
```

## README

# Add a New Agent Adapter

The full, current guide is `docs/agent-adapter.md`. It is the single source of truth for this task. Read it and follow it step by step.

Do not add an agent adapter from memory. The adapter pattern touches 13 or more files across `agent/`, `config/`, `cli/`, and `tui/`. A missed file breaks detection, registration, or the security response path. The doc lists every file and the exact change each one needs.

## How to use this skill

1. Read `docs/agent-adapter.md` in full.
2. Follow each step in order. Use the wiring table in the doc to change every listed file.
3. Use an existing adapter as your reference. The `agent/gemini/` package is the recommended model for the `settings.json` pattern.
4. Run the verify commands from the doc's final step before you finish.

## Keep the doc correct

The doc is the source of truth, so keep it accurate. If you find the code no longer matches the doc, update `docs/agent-adapter.md` in the same change. Do not fork the guidance into this skill.
