Moxie Docs – Automatic codebase documentation and MCP
Friday Cleanup opens docs-only PRs weekly—fixes drift without touching your code.
Supabase docs over SSH
SSH interface for docs matches how agents naturally explore codebases with grep and cat.
Developers using coding agents like Claude Code, Cursor
ssh supabase.sh grep -rl 'RLS' docs
ssh supabase.sh cat docs/guides/database/postgres/row-level-security.md | head -10
Under the hood commands run inside Vercel's just-bash [1] library - an emulated bash shell sandboxed within the JS runtime. It uses a VFS where the docs are mounted as markdown files. SSH is handled by ssh2 [2].
Next step is evals to confirm whether or not this truly performs better than other knowledge retrieval methods (like skills, web search, MCP tools), but we were too excited not to share something now.
[1] https://github.com/vercel-labs/just-bash [2] https://github.com/mscdex/ssh2
Friday Cleanup opens docs-only PRs weekly—fixes drift without touching your code.
Local doc indexing for Claude Code beats context-switching to browser tabs.
Three-way merge for docs is clever, but Notion and GitBook already own collaborative editing.
Yet another codebase access tool when Copilot and Cursor already do this.
Content negotiation serves raw Markdown to agents, skipping the reconversion tax entirely.
Markdown-defined workflows with agentic state management, but chat-with-LLM for documents is crowded.