diff --git a/docs/changelog/compatibility-guide.mdx b/docs/changelog/compatibility-guide.mdx index f6b3c46e..43ee00ea 100644 --- a/docs/changelog/compatibility-guide.mdx +++ b/docs/changelog/compatibility-guide.mdx @@ -30,7 +30,6 @@ This guide helps you understand which versions of Honcho's API are compatible wi - ## Version Compatibility Table | Honcho API Version | TypeScript SDK | Python SDK | diff --git a/docs/docs.json b/docs/docs.json index 2f4f1850..04bdf289 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -34,10 +34,10 @@ "group": "Core Concepts", "pages": [ "v2/documentation/core-concepts/architecture", - "v2/documentation/core-concepts/glossary", "v2/documentation/core-concepts/features", "v2/documentation/core-concepts/configuration", - "v2/documentation/core-concepts/summarizer" + "v2/documentation/core-concepts/summarizer", + "v2/documentation/core-concepts/glossary" ] }, { @@ -74,20 +74,7 @@ } ] }, - { - "tab": "Contributing", - "groups": [ - { - "group": "Contributing", - "pages": [ - "v2/contributing/guidelines", - "v2/contributing/self-hosting", - "v2/contributing/configuration", - "v2/contributing/license" - ] - } - ] - }, + { "tab": "API Reference", "groups": [ @@ -177,6 +164,20 @@ ] } ] + }, + { + "tab": "Contributing", + "groups": [ + { + "group": "Contributing", + "pages": [ + "v2/contributing/guidelines", + "v2/contributing/self-hosting", + "v2/contributing/configuration", + "v2/contributing/license" + ] + } + ] } ] }, @@ -331,9 +332,9 @@ "global": { "anchors": [ { - "anchor": "Managed Platform", + "anchor": "Dashboard", "href": "https://app.honcho.dev", - "icon": "book-open-cover" + "icon": "table-columns" }, { "anchor": "Community", diff --git a/docs/v2/documentation/reference/platform.mdx b/docs/v2/documentation/reference/platform.mdx index 98b3cbb3..3b01717a 100644 --- a/docs/v2/documentation/reference/platform.mdx +++ b/docs/v2/documentation/reference/platform.mdx @@ -1,8 +1,8 @@ --- -title: "Managed Honcho Platform" +title: "The Honcho Dashboard" icon: "rocket" description: "Build socially intelligent agents without worrying about infrastructure" -sidebarTitle: "Platform Overview" +sidebarTitle: "Dashboard Overview" --- diff --git a/docs/v2/guides/overview.mdx b/docs/v2/guides/overview.mdx index 79a08be8..f3093fea 100644 --- a/docs/v2/guides/overview.mdx +++ b/docs/v2/guides/overview.mdx @@ -11,40 +11,48 @@ AI development often feels like magic - you craft the right prompt and get exact Whether you're integrating Honcho into existing platforms, exploring advanced features, or getting up and running quickly, these guides provide concrete examples and implementation patterns. -## What You'll Find Here +Each spellbook focuses on a specific use case with working code you can adapt to your needs. The goal is to get you from idea to working prototype as quickly as possible, then provide the depth you need to scale and customize. -### Getting Started -**[Overview](/v2/guides/overview)** - You are here - -**[MCP Integration](/v2/guides/mcp)** - Get Honcho running with a single prompt in Cursor or Claude Code - -### Application Interfaces +## Application Interfaces Ready-to-use integration patterns for popular platforms: -**[Discord Bot](/v2/guides/discord)** - Build a Discord bot that remembers users across conversations + + + Build a Discord bot that remembers users across conversations + + + Create a Telegram bot with persistent user understanding + + +Get Honcho running with a single prompt in Cursor or Claude Code + + -**[Telegram Bot](/v2/guides/telegram)** - Create a Telegram bot with persistent user understanding - -### Design Patterns +## Design Patterns Implementation patterns for Honcho's core capabilities: -**[Dialectic Endpoint](/v2/guides/dialectic-endpoint)** - Query user psychology in natural language -**[Working with Session Context](/v2/guides/get-context)** - Manage conversation flow and context windows - -**[Search](/v2/guides/search)** - Search your data using natural language - -**[Working Representations](/v2/guides/working-rep)** - Understanding and customizing user models - -**[Streaming Responses](/v2/guides/streaming-response)** - Handle real-time interactions efficiently - -**[Using Filters](/v2/guides/using-filters)** - Control what data gets processed and how - -**[File Uploads](/v2/guides/file-uploads)** - Upload PDF, text, or JSON files to create messages - -## Philosophy - -These aren't just API documentation - they're implementation patterns that solve real problems. Each spellbook focuses on a specific use case with working code you can adapt to your needs. - -The goal is to get you from idea to working prototype as quickly as possible, then provide the depth you need to scale and customize. + + + Query user psychology in natural language + + +Manage conversation flow and context windows + + + Search your data using natural language + + + Understanding and customizing user models + + +Handle real-time interactions efficiently + + +Control what data gets processed and how + + +Upload PDF, text, or JSON files to create messages + +