Skip to content

docs: adding claude code integration#365

Merged
VVoruganti merged 4 commits into
mainfrom
abigail/dev-1363
Feb 4, 2026
Merged

docs: adding claude code integration#365
VVoruganti merged 4 commits into
mainfrom
abigail/dev-1363

Conversation

@ajspig

@ajspig ajspig commented Feb 3, 2026

Copy link
Copy Markdown
Contributor

Summary by CodeRabbit

  • Documentation
    • Added a comprehensive Claude Code integration guide covering setup, API/key configuration, plugin installation, memory behavior, MCP tools, workflows, and local integration steps.
    • Added a short "Claude Code Plugin" intro in the developer docs linking to the full guide.
    • Updated site navigation to include the new Claude Code integration page.

@coderabbitai

coderabbitai Bot commented Feb 3, 2026

Copy link
Copy Markdown
Contributor

Caution

Review failed

The pull request is closed.

Walkthrough

Adds a new Claude Code integration guide, updates the docs index to include the new page under v3 → Guides → Integrations, and inserts a short "Claude Code Plugin" blurb into the vibecoding introduction. All changes are documentation-only.

Changes

Cohort / File(s) Summary
Docs index
docs/docs.json
Inserted v3/guides/integrations/claudecode into the v3 Guides → Integrations list and fixed trailing comma to keep JSON valid.
Claude Code guide
docs/v3/guides/integrations/claudecode.mdx
Added a new comprehensive MDX guide covering setup, API keys/env vars, plugin installation, memory behavior, MCP server usage, local Honcho endpoint, and integration notes.
Intro / vibecoding
docs/v3/documentation/introduction/vibecoding.mdx
Added a "Claude Code Plugin" section with install commands, memory-related notes, and a link to the full Claude Code integration guide.

Sequence Diagram(s)

(omitted — changes are documentation-only and do not introduce new runtime control flow)

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related PRs

Suggested reviewers

  • dr-frmr
  • Rajat-Ahuja1997

Poem

🐰 I hopped through pages, nibbling text so neat,
A Claude Code guide now tucked in every feat.
Keys, plugins, MCP — a tidy trail in sight,
I wiggled my nose and left a carrot bite. 🥕

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The PR title clearly and concisely describes the main change: adding documentation for Claude Code integration, which aligns with all modified files.
Linked Issues check ✅ Passed The PR implements the primary coding objective from DEV-1363: creating a documentation integration guide as specified, though MCP tools implementation remains incomplete.
Out of Scope Changes check ✅ Passed All changes are scoped to documentation additions for Claude Code integration as required by DEV-1363; no unrelated modifications detected.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch abigail/dev-1363

Important

Action Needed: IP Allowlist Update

If your organization protects your Git platform with IP whitelisting, please add the new CodeRabbit IP address to your allowlist:

  • 136.113.208.247/32 (new)
  • 34.170.211.100/32
  • 35.222.179.152/32

Reviews will stop working after February 8, 2026 if the new IP is not added to your allowlist.


Comment @coderabbitai help to get the list of available commands and usage tips.

@ajspig ajspig marked this pull request as ready for review February 3, 2026 20:57

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Fix all issues with AI agents
In `@docs/v3/guides/integrations/claudecode.mdx`:
- Around line 214-223: The Card with title "Honcho Architecture" uses an
absolute href (href="/documentation/core-concepts/architecture") which can 404
in Mintlify versioned docs; update the Card component's href prop to a relative
documentation path (adjusting directory depth from this guide) so
cross-references resolve correctly (edit the Card element in
docs/v3/guides/integrations/claudecode.mdx and change the href value to the
appropriate relative path).

Comment on lines +214 to +223
## Next Steps

<CardGroup cols={2}>
<Card title="GitHub Repository" icon="github" href="https://github.com/plastic-labs/claude-honcho">
Source code, issues, and README.
</Card>

<Card title="Honcho Architecture" icon="sitemap" href="/documentation/core-concepts/architecture">
Learn about peers, sessions, and dialectic reasoning.
</Card>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Use a relative docs link for the v3 architecture page.
Absolute paths can 404 in Mintlify versioned docs. Switch to a relative path from this guide.

✏️ Suggested change
-  <Card title="Honcho Architecture" icon="sitemap" href="/documentation/core-concepts/architecture">
+  <Card title="Honcho Architecture" icon="sitemap" href="../../documentation/core-concepts/architecture">

Based on learnings: “In the Honcho documentation site (Mintlify-based), relative paths like ../../guides/... are the correct pattern for cross-references between documentation sections, not absolute paths like /v2/guides/... which can cause 404s.”

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
## Next Steps
<CardGroup cols={2}>
<Card title="GitHub Repository" icon="github" href="https://github.com/plastic-labs/claude-honcho">
Source code, issues, and README.
</Card>
<Card title="Honcho Architecture" icon="sitemap" href="/documentation/core-concepts/architecture">
Learn about peers, sessions, and dialectic reasoning.
</Card>
## Next Steps
<CardGroup cols={2}>
<Card title="GitHub Repository" icon="github" href="https://github.com/plastic-labs/claude-honcho">
Source code, issues, and README.
</Card>
<Card title="Honcho Architecture" icon="sitemap" href="../../documentation/core-concepts/architecture">
Learn about peers, sessions, and dialectic reasoning.
</Card>
🤖 Prompt for AI Agents
In `@docs/v3/guides/integrations/claudecode.mdx` around lines 214 - 223, The Card
with title "Honcho Architecture" uses an absolute href
(href="/documentation/core-concepts/architecture") which can 404 in Mintlify
versioned docs; update the Card component's href prop to a relative
documentation path (adjusting directory depth from this guide) so
cross-references resolve correctly (edit the Card element in
docs/v3/guides/integrations/claudecode.mdx and change the href value to the
appropriate relative path).

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Fix all issues with AI agents
In `@docs/v3/documentation/introduction/vibecoding.mdx`:
- Line 19: Replace the lowercase product name "claude code" with the proper
capitalized "Claude Code" in the sentence that reads "Give Claude Code native
access to Honcho! The [plugin](/v3/guides/integrations/claudecode) provides
claude code persistent memory that survives context wipes and session restarts."
— update the second occurrence (the plain text "claude code") to "Claude Code"
and ensure the plugin link text remains unchanged.


## Claude Code Plugin

Give Claude Code native access to Honcho! The [plugin](/v3/guides/integrations/claudecode) provides claude code persistent memory that survives context wipes and session restarts.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix product capitalization for brand consistency.

“claude code” should be “Claude Code” here.

✏️ Suggested edit
-Give Claude Code native access to Honcho! The [plugin](/v3/guides/integrations/claudecode) provides claude code persistent memory that survives context wipes and session restarts.
+Give Claude Code native access to Honcho! The [plugin](/v3/guides/integrations/claudecode) provides Claude Code persistent memory that survives context wipes and session restarts.
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
Give Claude Code native access to Honcho! The [plugin](/v3/guides/integrations/claudecode) provides claude code persistent memory that survives context wipes and session restarts.
Give Claude Code native access to Honcho! The [plugin](/v3/guides/integrations/claudecode) provides Claude Code persistent memory that survives context wipes and session restarts.
🤖 Prompt for AI Agents
In `@docs/v3/documentation/introduction/vibecoding.mdx` at line 19, Replace the
lowercase product name "claude code" with the proper capitalized "Claude Code"
in the sentence that reads "Give Claude Code native access to Honcho! The
[plugin](/v3/guides/integrations/claudecode) provides claude code persistent
memory that survives context wipes and session restarts." — update the second
occurrence (the plain text "claude code") to "Claude Code" and ensure the plugin
link text remains unchanged.

@VVoruganti VVoruganti merged commit 5864449 into main Feb 4, 2026
5 of 6 checks passed
@VVoruganti VVoruganti deleted the abigail/dev-1363 branch February 4, 2026 15:19
ranc1 pushed a commit to ranc1/honcho that referenced this pull request Apr 16, 2026
* docs: adding claude code integration

* chore: including interview and MCP integration

* chore: updating vibecoding

* chore: (docs) Update Claude Code Plugin Names

---------

Co-authored-by: Vineeth Voruganti <13438633+VVoruganti@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants