docs: adding claude code integration#365
Conversation
|
Caution Review failedThe pull request is closed. WalkthroughAdds 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
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
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
Important Action Needed: IP Allowlist UpdateIf your organization protects your Git platform with IP whitelisting, please add the new CodeRabbit IP address to your allowlist:
Reviews will stop working after February 8, 2026 if the new IP is not added to your allowlist. Comment |
There was a problem hiding this comment.
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).
| ## 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> |
There was a problem hiding this comment.
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.
| ## 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).
There was a problem hiding this comment.
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. |
There was a problem hiding this comment.
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.
| 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.
* 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>
Summary by CodeRabbit