omni-dev 0.28.0

A powerful Git commit message analysis and amendment toolkit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Extension recipes

Short, task-oriented guides for the three extension points contributors most
often reach for. Each recipe assumes you have already read
[`../../CONTRIBUTING.md`](../../CONTRIBUTING.md) (build/test/release basics)
and follows the same skeleton: *files you'll touch → walkthrough → testing →
ADRs → gotchas*.

| Recipe | When you need it |
|---|---|
| [Adding an MCP tool]adding-an-mcp-tool.md | You want to expose a new operation to MCP clients (a new `git_*`, `jira_*`, `confluence_*`, or other tool). |
| [Adding an AI backend]adding-an-ai-backend.md | You want omni-dev to drive a new model provider (a new sibling of [`src/claude/ai/claude.rs`]../../src/claude/ai/claude.rs, [`openai.rs`]../../src/claude/ai/openai.rs, [`bedrock.rs`]../../src/claude/ai/bedrock.rs, [`claude_cli.rs`]../../src/claude/ai/claude_cli.rs). |
| [Extending the ADF schema]extending-the-adf-schema.md | You want to support a new Atlassian Document Format (ADF) node or mark — both on the wire and in the JIRA-Flavoured Markdown (JFM) dialect. |

These recipes document the **current** code path. If a path or symbol has
moved by the time you read this, fix the recipe in the same PR as your
extension — don't work around it.