* docs: adding honcho-memory skill * fix: skills to point at llm friendly content * docs: split honcho-mcp skill out of honcho-memory; address PR review Restructure honcho-memory into a concepts/strategy hub that routes to per-connection path skills, and add a dedicated honcho-mcp skill holding the MCP-tool mechanics that previously lived inline. Addresses review feedback on #784: - honcho-memory step 2 now leads with fast context reads, with chat as the slower escalation - honcho-mcp adds a "Speed: reads vs reasoning" section, describes what each context call returns, and a reasoning-levels table - get_representation framed as a contextualized snapshot insertable into a system prompt - drop schedule_dream from the tool table (manual escape hatch, not routine guidance) - prune queue-status references from honcho-cli; document honcho-mcp in vibecoding skill registry Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * refactor(skills): move skills to canonical top-level skills/ with .claude symlink Establish a single source of truth for agent skills. The real files now live in the top-level skills/ directory (the publishing convention used by Vercel, Supabase, and Cloudflare, and the tree Honcho's `npx skills add` distributes). .claude/skills becomes a symlink to ../skills so Claude Code discovery keeps working off the one tree — eliminating the parallel-copy sync burden. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix: splitting context into references & verifying content is consistent. * docs: fixing core language * docs: fixing core language * fix: language about observe_others * chore: adding .agents folder for codex * fix: add instructions.md into the mcp server & delete mcp skill in favor of including it in honcho-memory. * chore: remove migrate docs (can be found on older versions) --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| changelog | ||
| images | ||
| logo | ||
| snippets | ||
| v1 | ||
| v2 | ||
| v3 | ||
| README.md | ||
| bun.lock | ||
| docs.json | ||
| favicon.svg | ||
| package.json | ||
README.md
Honcho Docs
These docs are built using Next.js via mintlify.
Setting Up Honcho's Docs Locally
- Clone the repository:
git clone git@github.com:plastic-labs/honcho.git
- Navigate into the
docsfolder:
cd honcho/docs/
The docs folder contains the markdown files that make up the documentation. The majority of the files are in the pages directory. Some notable files in this folder include:
- Verify that you have Node.js and npm installed in your system. You can check by running:
node --version
npm --version
-
If not installed, download Node.js and npm from the respective official websites.
-
Once you have Node.js and npm running, proceed to install
pnpm- another package manager that helps to manage project dependencies:
npm install -g pnpm
- Install the project dependencies using pnpm:
pnpm i
- After the successful installation of the project dependencies, start the local server:
pnpm dev
Now, you should be able to view the docs on your local environment by visiting http://localhost:3000. You can explore the different markdown files and make changes as you see fit.