# ToGO > ToGO is an open-source, API-first full-stack framework: a Laravel-artisan-grade CLI for the Go + sqlc + Atlas + React stack. One binary, one repo, zero glue. Install: `curl -fsSL https://to-go.dev/install.sh | sh` · `npm i -g @togo-framework/cli` ## Pages - [Home](https://to-go.dev/): overview, install, the generator workflow, API-first, databases, AI-native - [Plugins](https://to-go.dev/plugins): the plugin marketplace - [AI Stack](https://to-go.dev/ai): agents, skills & tools for AI-driven togo development — `togo install claude` - [Submit a plugin](https://to-go.dev/plugins/submit): propose a plugin (opens a GitHub issue) - [UI Kit](https://ui.to-go.dev): the @togo-framework/ui component library — Storybook docs for every component (cards, tables, charts, plugin cards, dashboards) ## Community - [Discord](https://discord.gg/Rv9Y7tcBtN): the togo community — questions, help, and announcements - [UI Kit (ui.to-go.dev)](https://ui.to-go.dev): @togo-framework/ui Storybook — browse and copy components - [MCP server](https://mcp.to-go.dev): the public togo MCP endpoint for agents ## AI Stack - [togo](https://to-go.dev/ai/agents/togo) (agent): Master orchestrator for a togo app — routes work to the right specialist, owns architecture and the generate→migrate→serve sequence, verifies integration across Go API and React UI before reporting done. - [togo-architect](https://to-go.dev/ai/agents/togo-architect) (agent): Architecture guide for togo apps — microkernel/plugin design, generator-first workflow, codegen pipeline order, and API-first (GraphQL + REST) decisions. Use for design questions and when deciding resource vs plugin. - [togo-backend](https://to-go.dev/ai/agents/togo-backend) (agent): Backend specialist for this togo app — Go, chi, Huma (REST/OpenAPI), gqlgen (GraphQL), sqlc, Atlas, pgx/Postgres. Use for API endpoints, resolvers, queries, migrations. - [togo-data](https://to-go.dev/ai/agents/togo-data) (agent): Data specialist for togo — sqlc typed queries, Atlas schema/migrations, query performance, seeders/factories, and analytics over Postgres/togo-postgres (pgvector, FTS). Use for data modeling and DB performance. - [togo-db](https://to-go.dev/ai/agents/togo-db) (agent): Database specialist for a togo app — Atlas schema/migrations (HCL), sqlc typed queries, seeders, and the DB driver registry (Postgres/SQLite/MySQL/Mongo). Use for schema, queries, and data. - [togo-devops](https://to-go.dev/ai/agents/togo-devops) (agent): DevOps for a togo app — togo deploy (rsync/ssh), infra, Docker, CI/CD, and environment config. Use for shipping the single binary + frontend to a server and wiring pipelines. - [togo-frontend](https://to-go.dev/ai/agents/togo-frontend) (agent): Frontend specialist for a togo app — React, TanStack Router/Query or Next.js App Router, Vite, the generated typed API client + hooks, and pages. Use for UI, data fetching, and routes. - [togo-plugin-architect](https://to-go.dev/ai/agents/togo-plugin-architect) (agent): Plugin architect for togo — the microkernel contract (Register/Boot, priority, hooks), capability boundaries, and the base→providers model (e.g. auth → auth-dev/auth-firebase). Use for designing plugins and their interfaces. - [togo-plugin-author](https://to-go.dev/ai/agents/togo-plugin-author) (agent): Author togo capability plugins — the microkernel Plugin contract (Priority/Register/Boot), CLI/route/schema registration, packaging, and publishing to the marketplace. Use when building or extending a togo plugin. - [togo-prompt-engineer](https://to-go.dev/ai/agents/togo-prompt-engineer) (agent): Prompt/agent engineer for togo — the .claude/ tree (agents, skills, rules, hooks), the MCP wiring, and the claude-togo plugin. Use for authoring or improving AI tooling around a togo app. - [togo-qa](https://to-go.dev/ai/agents/togo-qa) (agent): QA for a togo app — Go testing (table-driven, httptest), the generated REST/GraphQL contract, and React UI tests (Vitest/Playwright). Use for test coverage, E2E flows, and regression checks. - [togo-release-manager](https://to-go.dev/ai/agents/togo-release-manager) (agent): Release manager for togo packages — semver, CHANGELOG, goreleaser tags, npm wrapper publishing, and pkg.go.dev. Use for cutting releases and promotion governance. - [togo-security](https://to-go.dev/ai/agents/togo-security) (agent): Security for a togo app — auth/RBAC (JWT, OTP/2FA, sessions), secrets handling, dependency/VAPT audit, and safe plugin installation. Use for threat review, auth flows, and hardening. - [togo-technical-writer](https://to-go.dev/ai/agents/togo-technical-writer) (agent): Technical writer for togo — READMEs, docs pages, llms.txt, command/agent reference, and the plugin marketplace copy. Use for clear, accurate, example-first documentation. - [togo-ui-designer](https://to-go.dev/ai/agents/togo-ui-designer) (agent): UI/design for togo apps — the @togo-framework/ui kit, semantic theme tokens, dark/light + RTL, and component composition. Use for building/adjusting UI with the kit instead of raw CSS. - [/togo:deploy](https://to-go.dev/ai/skills/deploy) (skill): Provision infra and deploy the togo app (Terraform). - [/togo:doctor](https://to-go.dev/ai/skills/doctor) (skill): Check the togo toolchain (Go, Node/npm, sqlc, Atlas) and auto-install what's missing. - [/togo:generate](https://to-go.dev/ai/skills/generate) (skill): Run the togo codegen pipeline (sqlc → gqlgen → Atlas → OpenAPI). - [/togo:logs](https://to-go.dev/ai/skills/logs) (skill): Tail and explain the running togo app's logs (API + web). - [/togo:mcp](https://to-go.dev/ai/skills/mcp) (skill): Inspect / wire the togo MCP server (generators + project introspection as tools). - [/togo:migrate](https://to-go.dev/ai/skills/migrate) (skill): Apply / manage database migrations (Atlas) for the current togo app. - [/togo:new](https://to-go.dev/ai/skills/new) (skill): Scaffold a new togo app (Go API + React UI, one binary). Installs the togo CLI if missing. - [/togo:new-plugin](https://to-go.dev/ai/skills/new-plugin) (skill): Scaffold a new togo plugin (microkernel capability) from the plugin template. - [/togo:plugin](https://to-go.dev/ai/skills/plugin) (skill): Install or scaffold a togo capability plugin (auth, dashboard, cache, queue, …). - [/togo:resource](https://to-go.dev/ai/skills/resource) (skill): Generate a togo resource (model + sqlc + Atlas + GraphQL + REST + UI page) and run codegen. - [/togo:serve](https://to-go.dev/ai/skills/serve) (skill): Run the togo app (Go API + React UI) locally. - [/togo:status](https://to-go.dev/ai/skills/status) (skill): Show togo project health — toolchain, MCP connectivity, build/generate status, and running services. - [/togo:team](https://to-go.dev/ai/skills/team) (skill): List the togo agent team and what each specialist owns. - [/togo:test](https://to-go.dev/ai/skills/test) (skill): Run the togo app's tests — Go tests and the frontend tests — and report results. - [Claude Code plugin](https://to-go.dev/ai/tools/claude) (tool) - [togo MCP server](https://to-go.dev/ai/tools/mcp) (tool) ## Plugins - [aeo](https://to-go.dev/plugins/aeo) (other): Answer-Engine Optimization: per-page /md markdown twins, llms.txt index, sitemap sections and jsonb+i18n unwrapping — the clean content a model sees. — install: `togo install togo-framework/aeo` - [ai-agentops](https://to-go.dev/plugins/ai-agentops) (ai): Agent operations & observability for togo — token/cost/latency tracking, feeds billing — install: `togo install togo-framework/ai-agentops` - [ai-agno](https://to-go.dev/plugins/ai-agno) (ai): Agno agent framework integration for togo — install: `togo install togo-framework/ai-agno` - [ai-anthropic](https://to-go.dev/plugins/ai-anthropic) (ai): Anthropic Claude driver for togo ai — install: `togo install togo-framework/ai-anthropic` - [ai-crawlee](https://to-go.dev/plugins/ai-crawlee) (ai): Go-native site crawler data-source for the togo AI kit — install: `togo install togo-framework/ai-crawlee` - [ai-deepseek](https://to-go.dev/plugins/ai-deepseek) (ai): DeepSeek LLM driver for togo ai — install: `togo install togo-framework/ai-deepseek` - [ai-firecrawl](https://to-go.dev/plugins/ai-firecrawl) (ai): Firecrawl scrape/crawl data-source (self-hosted + API) for the togo AI kit — install: `togo install togo-framework/ai-firecrawl` - [ai-gateway](https://to-go.dev/plugins/ai-gateway) (ai): togo AI gateway — rate limits, spend caps, response caching, prompt management & provider fallback — install: `togo install togo-framework/ai-gateway` - [ai-gemini](https://to-go.dev/plugins/ai-gemini) (ai): Google Gemini driver for togo ai — install: `togo install togo-framework/ai-gemini` - [ai-grok](https://to-go.dev/plugins/ai-grok) (ai): xAI Grok LLM driver for togo ai — install: `togo install togo-framework/ai-grok` - [ai-ollama](https://to-go.dev/plugins/ai-ollama) (ai): Ollama LLM driver for togo ai — install: `togo install togo-framework/ai-ollama` - [ai-openai](https://to-go.dev/plugins/ai-openai) (ai): OpenAI LLM driver for togo ai — install: `togo install togo-framework/ai-openai` - [ai-playwright](https://to-go.dev/plugins/ai-playwright) (ai): Headless-browser (Playwright) data-source for the togo AI kit — install: `togo install togo-framework/ai-playwright` - [ai-qwen](https://to-go.dev/plugins/ai-qwen) (ai): Qwen (DashScope) LLM driver for togo ai — install: `togo install togo-framework/ai-qwen` - [ai-rag](https://to-go.dev/plugins/ai-rag) (ai): RAG capability for togo (on the ai plugin) — install: `togo install togo-framework/ai-rag` - [ai-rss](https://to-go.dev/plugins/ai-rss) (ai): RSS/Atom feed data-source for the togo AI kit — install: `togo install togo-framework/ai-rss` - [ai-searxng](https://to-go.dev/plugins/ai-searxng) (ai): SearXNG metasearch data-source for the togo AI kit — install: `togo install togo-framework/ai-searxng` - [ai-stt](https://to-go.dev/plugins/ai-stt) (ai): Speech-to-Text for togo — Whisper + Deepgram drivers — install: `togo install togo-framework/ai-stt` - [ai-tts](https://to-go.dev/plugins/ai-tts) (ai): Text-to-Speech for togo — ElevenLabs + OpenAI TTS drivers (TTS_DRIVER) — install: `togo install togo-framework/ai-tts` - [analytics](https://to-go.dev/plugins/analytics) (other): togo product analytics — event tracking, funnels, retention & dashboards — install: `togo install togo-framework/analytics` - [audit](https://to-go.dev/plugins/audit) (other): togo audit log + model versioning — activity tracking with diffs & restore — install: `togo install togo-framework/audit` - [auth-mfa](https://to-go.dev/plugins/auth-mfa) (auth): togo MFA — TOTP 2FA, recovery codes, email OTP, magic-link, account lockout & password policy — install: `togo install togo-framework/auth-mfa` - [auth-passkeys](https://to-go.dev/plugins/auth-passkeys) (auth): togo passkeys — WebAuthn/FIDO2 passwordless login for the auth family — install: `togo install togo-framework/auth-passkeys` - [auth-platform](https://to-go.dev/plugins/auth-platform) (auth): togo organizations & teams — multi-tenant auth with per-org roles, invites & branding — install: `togo install togo-framework/auth-platform` - [auth-saml](https://to-go.dev/plugins/auth-saml) (auth): togo SAML 2.0 SSO — service-provider login (metadata/login/ACS) issuing an auth session — install: `togo install togo-framework/auth-saml` - [authz](https://to-go.dev/plugins/authz) (other): togo authorization — policies, gates & abilities beyond RBAC — install: `togo install togo-framework/authz` - [autopilot](https://to-go.dev/plugins/autopilot) (ai): Autopilot — an Issues → Agent → Code → Deploy loop for togo apps: file issues, an in-app runner implements them with Claude Code, opens PRs; human↔agent comments, blocked/unblock, multi-agent, Feedback SDK. — install: `togo install togo-framework/autopilot` - [awesome-togo](https://to-go.dev/plugins/awesome-togo) (other): A curated directory of everything in the togo ecosystem — plugins, CLI, agents, skills & tools. https://to-go.dev/marketplace — install: `togo install togo-framework/awesome-togo` - [backup](https://to-go.dev/plugins/backup) (other): togo backups — scheduled DB + files archives to storage, retention & restore — install: `togo install togo-framework/backup` - [billing](https://to-go.dev/plugins/billing) (other): Usage-based billing + API keys for togo — per-user keys, AI token metering, quotas & usage reports — install: `togo install togo-framework/billing` - [board](https://to-go.dev/plugins/board) (other): Drag-and-drop tile board host: arranges widgets, feed posts and page sections across topbar/sidebar/body zones, with per-user layout + save-as-default persisten — install: `togo install togo-framework/board` - [brain](https://to-go.dev/plugins/brain) (other): CaBrain memory organ as a togo plugin — hybrid recall (vector+BM25/RRF+rerank), salience, reconsolidation, hot/cold tiers on togo-postgres. Providers ship as brain-* driver plugins. — install: `togo install togo-framework/brain` - [brain-cognee](https://to-go.dev/plugins/brain-cognee) (other): CaBrain togo plugin — mirror the memory organ into a Cognee knowledge graph (entity/graph enrichment). — install: `togo install togo-framework/brain-cognee` - [brain-tei](https://to-go.dev/plugins/brain-tei) (other): CaBrain togo plugin — TEI embedding + reranking backend (bge-m3 / bge-reranker-v2-m3) for hybrid recall. — install: `togo install togo-framework/brain-tei` - [cabrain](https://to-go.dev/plugins/cabrain) (other): CaBrain — a hardware-elastic memory organ for AI agents (togo project). The memory organ is the 'brain' plugin; providers ship as brain-* plugins. — install: `togo install togo-framework/cabrain` - [cabrain-cli](https://to-go.dev/plugins/cabrain-cli) (other): Connect any AI client (Claude Desktop/Code, Codex, Gemini, Cursor) to the CaBrain memory system — one binary that is both the MCP server and its installer. — install: `togo install togo-framework/cabrain-cli` - [catalog](https://to-go.dev/plugins/catalog) (other): togo — register/discover tables in an open catalog (Unity Catalog / Iceberg REST) — install: `togo install togo-framework/catalog` - [chat](https://to-go.dev/plugins/chat) (other): Floating chat widget + a responder registry. The base ships a DB keyword responder; a chat-ai driver swaps in real model answers via the same contract. — install: `togo install togo-framework/chat` - [chat-ai](https://to-go.dev/plugins/chat-ai) (other): Claude-backed chat responder driver: answers site-visitor questions with a real model instead of keyword matching. — install: `togo install togo-framework/chat-ai` - [claude-togo](https://to-go.dev/plugins/claude-togo) (other): Official ToGO plugin for Claude Code — scaffold & drive togo apps with AI (commands, agents, hooks + auto-connected MCP). — install: `togo install togo-framework/claude-togo` - [cms](https://to-go.dev/plugins/cms) (other): togo CMS — headless content types, entries, pages & menus with draft/publish — install: `togo install togo-framework/cms` - [cms-blog](https://to-go.dev/plugins/cms-blog) (other): BlogPost / Category / Tag with reading-time, views, featured and slug detail pages. — install: `togo install togo-framework/cms-blog` - [cms-notes](https://to-go.dev/plugins/cms-notes) (other): Knowledge base + task board + AES-256-GCM secret vault (PIN-gated, ciphertext never leaves the server), one-time/public share link — install: `togo install togo-framework/cms-notes` - [coder](https://to-go.dev/plugins/coder) (other): togo exec provider — run autopilot jobs in isolated Coder workspaces on your own infra — install: `togo install togo-framework/coder` - [command-palette](https://to-go.dev/plugins/command-palette) (other): A cmd-K Raycast-style overlay: client-side fuzzy ranking over cached resource lists + quick actions (theme, locale, CV, contact), recents, full keyboard nav, en — install: `togo install togo-framework/command-palette` - [compose](https://to-go.dev/plugins/compose) (other): Compose-by-prompt pipeline: a queued-post inbox + composer UI + dynamic insert. Owner briefs it in prose, an agent drafts and publishes, the brief closes with a — install: `togo install togo-framework/compose` - [compute](https://to-go.dev/plugins/compute) (other): togo compute capability — submit batch/stream jobs to a pluggable engine (local/beam/spark/flink/databricks) — install: `togo install togo-framework/compute` - [compute-beam](https://to-go.dev/plugins/compute-beam) (other): togo compute backend — run Apache Beam pipelines — install: `togo install togo-framework/compute-beam` - [compute-databricks](https://to-go.dev/plugins/compute-databricks) (other): togo compute backend — submit runs to Databricks Jobs — install: `togo install togo-framework/compute-databricks` - [compute-flink](https://to-go.dev/plugins/compute-flink) (other): togo compute backend — submit jobs to Apache Flink — install: `togo install togo-framework/compute-flink` - [compute-spark](https://to-go.dev/plugins/compute-spark) (other): togo compute backend — submit jobs to Apache Spark via spark-submit — install: `togo install togo-framework/compute-spark` - [contact](https://to-go.dev/plugins/contact) (other): ContactSubmission resource (spam/read flags, audit) + a contact form. — install: `togo install togo-framework/contact` - [contacts](https://to-go.dev/plugins/contacts) (other): togo contacts plugin — install: `togo install togo-framework/contacts` - [contacts-google](https://to-go.dev/plugins/contacts-google) (other): togo contacts-google plugin — install: `togo install togo-framework/contacts-google` - [content-mcp](https://to-go.dev/plugins/content-mcp) (other): A JSON-RPC Model Context Protocol server exposing site content to agents (read tools public; bearer-gated write tools create real posts in registered tables). — install: `togo install togo-framework/content-mcp` - [content-registry](https://to-go.dev/plugins/content-registry) (other): One declarative map of every content type (table, slug col, translatable fields, feed-kind, icon, section, searchable) that feed / board / seo / mcp / search / — install: `togo install togo-framework/content-registry` - [dashboard](https://to-go.dev/plugins/dashboard) (ui): togo dashboard + auth UI (depends on auth) — install: `togo install togo-framework/dashboard` - [data](https://to-go.dev/plugins/data) (other): togo data capability — uniform Query over a pluggable source (pg/bigquery/databricks/iceberg) — install: `togo install togo-framework/data` - [data-bigquery](https://to-go.dev/plugins/data-bigquery) (other): togo data backend — query Google BigQuery — install: `togo install togo-framework/data-bigquery` - [data-databricks](https://to-go.dev/plugins/data-databricks) (other): togo data backend — query Databricks SQL — install: `togo install togo-framework/data-databricks` - [data-iceberg](https://to-go.dev/plugins/data-iceberg) (other): togo data backend — query Apache Iceberg tables through DuckDB — install: `togo install togo-framework/data-iceberg` - [demo](https://to-go.dev/plugins/demo) (other): Live togo demo — a homepage + admin dashboard generated by togo (powers demo.to-go.dev) — install: `togo install togo-framework/demo` - [deploy](https://to-go.dev/plugins/deploy) (other): togo deploy subsystem — provider-agnostic Deployer contract (provision/deploy/destroy) for clouds, VPS, Docker, Kubernetes & Terraform — install: `togo install togo-framework/deploy` - [deploy-aws](https://to-go.dev/plugins/deploy-aws) (other): AWS (App Runner) deploy driver for togo — install: `togo install togo-framework/deploy-aws` - [deploy-azure](https://to-go.dev/plugins/deploy-azure) (other): Azure (Container Apps) deploy driver for togo — install: `togo install togo-framework/deploy-azure` - [deploy-centos](https://to-go.dev/plugins/deploy-centos) (other): togo deploy driver: deploy-centos — install: `togo install togo-framework/deploy-centos` - [deploy-debian](https://to-go.dev/plugins/deploy-debian) (other): togo deploy driver: deploy-debian — install: `togo install togo-framework/deploy-debian` - [deploy-digitalocean](https://to-go.dev/plugins/deploy-digitalocean) (other): DigitalOcean deploy driver for togo — install: `togo install togo-framework/deploy-digitalocean` - [deploy-docker](https://to-go.dev/plugins/deploy-docker) (other): togo deploy driver: deploy-docker — install: `togo install togo-framework/deploy-docker` - [deploy-gcp](https://to-go.dev/plugins/deploy-gcp) (other): Google Cloud (Cloud Run) deploy driver for togo — install: `togo install togo-framework/deploy-gcp` - [deploy-hetzner](https://to-go.dev/plugins/deploy-hetzner) (other): Hetzner Cloud deploy driver for togo — install: `togo install togo-framework/deploy-hetzner` - [deploy-kubernetes](https://to-go.dev/plugins/deploy-kubernetes) (other): togo deploy driver: deploy-kubernetes — install: `togo install togo-framework/deploy-kubernetes` - [deploy-ovh](https://to-go.dev/plugins/deploy-ovh) (other): OVHcloud (Public Cloud / OpenStack) deploy driver for togo — install: `togo install togo-framework/deploy-ovh` - [deploy-terraform](https://to-go.dev/plugins/deploy-terraform) (other): togo deploy driver: deploy-terraform — install: `togo install togo-framework/deploy-terraform` - [deploy-ubuntu](https://to-go.dev/plugins/deploy-ubuntu) (other): togo deploy driver: deploy-ubuntu — install: `togo install togo-framework/deploy-ubuntu` - [deploy-vultr](https://to-go.dev/plugins/deploy-vultr) (other): Vultr deploy driver for togo — install: `togo install togo-framework/deploy-vultr` - [dns](https://to-go.dev/plugins/dns) (other): togo DNS / reverse-proxy / API-gateway subsystem (base Provider contract) — install: `togo install togo-framework/dns` - [dns-caddy](https://to-go.dev/plugins/dns-caddy) (other): Caddy reverse-proxy driver for the togo dns subsystem — install: `togo install togo-framework/dns-caddy` - [dns-cloudflare](https://to-go.dev/plugins/dns-cloudflare) (other): Cloudflare DNS driver for the togo dns subsystem — install: `togo install togo-framework/dns-cloudflare` - [dns-kong](https://to-go.dev/plugins/dns-kong) (other): Kong API-gateway driver (Supabase-friendly) for the togo dns subsystem — install: `togo install togo-framework/dns-kong` - [dns-npm](https://to-go.dev/plugins/dns-npm) (other): Nginx Proxy Manager reverse-proxy driver for the togo dns subsystem — install: `togo install togo-framework/dns-npm` - [experience](https://to-go.dev/plugins/experience) (other): Experience timeline resource + a CV view. — install: `togo install togo-framework/experience` - [feed](https://to-go.dev/plugins/feed) (other): Resource-aggregating social-feed engine: turns N content resources into typed cards with curated round-robin ordering, infinite scroll and masonry. — install: `togo install togo-framework/feed` - [flags](https://to-go.dev/plugins/flags) (other): togo feature flags + A/B testing — rollouts, targeting, experiments — install: `togo install togo-framework/flags` - [gaming](https://to-go.dev/plugins/gaming) (other): GamingActivity resource: platform, rank, hours, gradient theming and looking-for-team, with slug detail pages. — install: `togo install togo-framework/gaming` - [geo](https://to-go.dev/plugins/geo) (other): togo geo — distances, bounding boxes, nearest & geofencing — install: `togo install togo-framework/geo` - [github-cards](https://to-go.dev/plugins/github-cards) (other): Cached GitHub proxy: normalized repo stars/forks/language/topics/license/og-image and README with relative links absolutized, stale-on-error fallback. Powers op — install: `togo install togo-framework/github-cards` - [import-export](https://to-go.dev/plugins/import-export) (other): togo import/export — CSV & Excel data import/export with mapping & validation — install: `togo install togo-framework/import-export` - [inline-cms](https://to-go.dev/plugins/inline-cms) (other): Turn any public site into its own CMS: schema-driven edit-in-place, admin bar, inline fields and pickers, reorder — no separate dashboard. — install: `togo install togo-framework/inline-cms` - [knowledge-base](https://to-go.dev/plugins/knowledge-base) (other): togo knowledge base — crawl, chunk, embed & hybrid-search content for RAG — install: `togo install togo-framework/knowledge-base` - [live](https://to-go.dev/plugins/live) (other): AI-agent bridge for togo — push a prompt (chat, table, or WhatsApp) and a live agent answers, streamed back over any channel. Agent-driven (MCP) or server-driven. — install: `togo install togo-framework/live` - [live-notify](https://to-go.dev/plugins/live-notify) (other): Bridge togo live agent replies to the notifications system — Slack, Discord, web-push, FCM, Pusher, mail — via one live.Channel. For togo-framework/live. — install: `togo install togo-framework/live-notify` - [live-whatsapp](https://to-go.dev/plugins/live-whatsapp) (other): WhatsApp Cloud API channel for togo live agents — inbound + outbound. A live.Channel driver for togo-framework/live. — install: `togo install togo-framework/live-whatsapp` - [location](https://to-go.dev/plugins/location) (other): Localization dataset for togo — countries, currencies, dial codes, timezones, languages + lookup API — install: `togo install togo-framework/location` - [log-datadog](https://to-go.dev/plugins/log-datadog) (other): Datadog log shipping for togo — forwards slog logs to Datadog Logs (HTTP intake) — install: `togo install togo-framework/log-datadog` - [log-logstash](https://to-go.dev/plugins/log-logstash) (other): Logstash log shipping for togo — streams JSON-line logs to a Logstash TCP input — install: `togo install togo-framework/log-logstash` - [log-sentry](https://to-go.dev/plugins/log-sentry) (other): Sentry error tracking for togo — captures kernel error events with stack traces — install: `togo install togo-framework/log-sentry` - [mail-inbound](https://to-go.dev/plugins/mail-inbound) (messaging): togo inbound email — parse & route incoming mail (SendGrid/Mailgun webhooks + RFC822) — install: `togo install togo-framework/mail-inbound` - [mail-sendgrid](https://to-go.dev/plugins/mail-sendgrid) (messaging): SendGrid driver for togo mail — install: `togo install togo-framework/mail-sendgrid` - [mcp-web](https://to-go.dev/plugins/mcp-web) (other): Public MCP server for togo — docs, plugins, and plugin submission for agents (mcp.to-go.dev). — install: `togo install togo-framework/mcp-web` - [media](https://to-go.dev/plugins/media) (other): togo media library — uploads, image conversions & thumbnails, attach media to models — install: `togo install togo-framework/media` - [model-behaviors](https://to-go.dev/plugins/model-behaviors) (other): togo model behaviors — soft-deletes, slugs, tags, sortable & tree mixins — install: `togo install togo-framework/model-behaviors` - [money](https://to-go.dev/plugins/money) (other): togo money — currency-safe money type: arithmetic, allocation, formatting & FX — install: `togo install togo-framework/money` - [notification-center](https://to-go.dev/plugins/notification-center) (other): togo notification center — in-app inbox, unread counts & live bell — install: `togo install togo-framework/notification-center` - [notifications-discord](https://to-go.dev/plugins/notifications-discord) (messaging): togo notifications-discord notifications channel — install: `togo install togo-framework/notifications-discord` - [notifications-fcm](https://to-go.dev/plugins/notifications-fcm) (messaging): Firebase Cloud Messaging (HTTP v1) push channel for togo notifications — install: `togo install togo-framework/notifications-fcm` - [notifications-pusher](https://to-go.dev/plugins/notifications-pusher) (messaging): Pusher Channels broadcast channel for togo notifications — install: `togo install togo-framework/notifications-pusher` - [notifications-slack](https://to-go.dev/plugins/notifications-slack) (messaging): togo notifications-slack notifications channel — install: `togo install togo-framework/notifications-slack` - [notifications-webpush](https://to-go.dev/plugins/notifications-webpush) (messaging): togo notifications-webpush notifications channel — install: `togo install togo-framework/notifications-webpush` - [oauth-server](https://to-go.dev/plugins/oauth-server) (other): togo OAuth2/OIDC server — be an identity provider: authorization_code+PKCE, client_credentials, introspection, JWKS — install: `togo install togo-framework/oauth-server` - [observability](https://to-go.dev/plugins/observability) (other): togo observability — request inspector, error tracking, logs, health & metrics — install: `togo install togo-framework/observability` - [ocr](https://to-go.dev/plugins/ocr) (other): togo OCR plugin — image→text via tesseract (default) or the ai vision driver; POST /api/ocr — install: `togo install togo-framework/ocr` - [omnigent](https://to-go.dev/plugins/omnigent) (other): togo impl provider — implement autopilot issues via the Omnigent multi-agent harness (secured behind Coder) — install: `togo install togo-framework/omnigent` - [ontology](https://to-go.dev/plugins/ontology) (other): togo (experimental) — permission-aware, authority-ranked context graph to ground agents (onto-rank) — install: `togo install togo-framework/ontology` - [os](https://to-go.dev/plugins/os) (other): OS-style desktop shell for togo — login/desktop/dock/windows + an app registry any plugin can join — install: `togo install togo-framework/os` - [os-example](https://to-go.dev/plugins/os-example) (other): Live togo OS desktop demo — a generated app on the os plugin's desktop shell (dock, windows, Launchpad, Spotlight) — install: `togo install togo-framework/os-example` - [page-sections](https://to-go.dev/plugins/page-sections) (other): Per-page controllable sections: admins drag-reorder and show/hide a page's blocks and save the arrangement as the public default. — install: `togo install togo-framework/page-sections` - [payment](https://to-go.dev/plugins/payment) (other): togo payment subsystem — a Provider contract (charge/refund/checkout/customer/webhook) with a driver registry; Stripe, Paymob, Fawry, Tap, Moyasar, PayTabs, PayFort, Lemon Squeezy ship as driver plugins. — install: `togo install togo-framework/payment` - [payment-fawry](https://to-go.dev/plugins/payment-fawry) (other): Fawry driver for togo payment — install: `togo install togo-framework/payment-fawry` - [payment-lemonsqueezy](https://to-go.dev/plugins/payment-lemonsqueezy) (other): LemonSqueezy driver for togo payment — install: `togo install togo-framework/payment-lemonsqueezy` - [payment-moyasar](https://to-go.dev/plugins/payment-moyasar) (other): Moyasar driver for togo payment — install: `togo install togo-framework/payment-moyasar` - [payment-payfort](https://to-go.dev/plugins/payment-payfort) (other): PayFort driver for togo payment — install: `togo install togo-framework/payment-payfort` - [payment-paymob](https://to-go.dev/plugins/payment-paymob) (other): Paymob driver for togo payment — install: `togo install togo-framework/payment-paymob` - [payment-paytabs](https://to-go.dev/plugins/payment-paytabs) (other): PayTabs driver for togo payment — install: `togo install togo-framework/payment-paytabs` - [payment-stripe](https://to-go.dev/plugins/payment-stripe) (other): Stripe driver for togo payment — install: `togo install togo-framework/payment-stripe` - [payment-tap](https://to-go.dev/plugins/payment-tap) (other): Tap driver for togo payment — install: `togo install togo-framework/payment-tap` - [pdf](https://to-go.dev/plugins/pdf) (other): togo HTML→PDF plugin — headless-Chromium driver, render API + POST /api/pdf — install: `togo install togo-framework/pdf` - [plugin-host](https://to-go.dev/plugins/plugin-host) (other): togo plugin host — DB-driven runtime plugin registry, capabilities & workflow step composition — install: `togo install togo-framework/plugin-host` - [portfolio](https://to-go.dev/plugins/portfolio) (other): Project resource + portfolio list & slug detail pages (with GitHub cards). — install: `togo install togo-framework/portfolio` - [providers](https://to-go.dev/plugins/providers) (other): Runtime, config-driven selection of capability backends for togo — swap impl/exec/compute/data/queue/storage backends over CLI, .env, or settings — install: `togo install togo-framework/providers` - [queue](https://to-go.dev/plugins/queue) (infra): togo queue provider plugin — install: `togo install togo-framework/queue` - [queue-dashboard](https://to-go.dev/plugins/queue-dashboard) (infra): togo queue dashboard — monitor jobs, retries, failures & throughput — install: `togo install togo-framework/queue-dashboard` - [queue-kafka](https://to-go.dev/plugins/queue-kafka) (infra): togo queue backend — togo.Queue over kafka — install: `togo install togo-framework/queue-kafka` - [queue-nats](https://to-go.dev/plugins/queue-nats) (infra): togo queue backend — togo.Queue over nats — install: `togo install togo-framework/queue-nats` - [queue-rabbitmq](https://to-go.dev/plugins/queue-rabbitmq) (infra): togo queue backend — togo.Queue over rabbitmq — install: `togo install togo-framework/queue-rabbitmq` - [rag-postgres](https://to-go.dev/plugins/rag-postgres) (other): PostgreSQL vector store for ai-rag — pgvector + pg_search BM25 hybrid retrieval — install: `togo install togo-framework/rag-postgres` - [ratelimit](https://to-go.dev/plugins/ratelimit) (other): togo rate limiting — sliding-window/token-bucket throttling middleware — install: `togo install togo-framework/ratelimit` - [realtime-grpc](https://to-go.dev/plugins/realtime-grpc) (infra): togo plugin: realtime-grpc — install: `togo install togo-framework/realtime-grpc` - [realtime-nats](https://to-go.dev/plugins/realtime-nats) (infra): togo plugin: realtime-nats — install: `togo install togo-framework/realtime-nats` - [richtext](https://to-go.dev/plugins/richtext) (other): togo rich text — sanitize, store & render rich/Markdown content (XSS-safe) — install: `togo install togo-framework/richtext` - [saas](https://to-go.dev/plugins/saas) (other): Multi-tenant SaaS for togo: domain/tenant-id resolution + shared-DB or DB-per-tenant isolation — install: `togo install togo-framework/saas` - [scheduler](https://to-go.dev/plugins/scheduler) (other): togo task scheduler — cron & recurring jobs over the queue — install: `togo install togo-framework/scheduler` - [search-algolia](https://to-go.dev/plugins/search-algolia) (data): Algolia driver for togo full-text search — install: `togo install togo-framework/search-algolia` - [search-meilisearch](https://to-go.dev/plugins/search-meilisearch) (data): Meilisearch driver for togo full-text search — install: `togo install togo-framework/search-meilisearch` - [search-typesense](https://to-go.dev/plugins/search-typesense) (data): Typesense driver for togo full-text search — install: `togo install togo-framework/search-typesense` - [seo-head](https://to-go.dev/plugins/seo-head) (other): Runtime manager: editable title/meta/OG/Twitter, Person & WebSite JSON-LD, canonical, hreflang alternates and the markdown-twin link for answer engines. — install: `togo install togo-framework/seo-head` - [services](https://to-go.dev/plugins/services) (other): Service resource with features & icons and slug detail pages. — install: `togo install togo-framework/services` - [settings](https://to-go.dev/plugins/settings) (other): Shared typed config store for togo — DB-backed, scoped, Go + REST API — install: `togo install togo-framework/settings` - [sharing](https://to-go.dev/plugins/sharing) (other): togo — zero-copy data sharing via OpenSharing / Delta Sharing — install: `togo install togo-framework/sharing` - [site-search](https://to-go.dev/plugins/site-search) (other): Bilingual Postgres full-text site search: to_tsvector('simple') + prefix tsquery for match-as-you-type + ILIKE fallback, ranked across registered content tables — install: `togo install togo-framework/site-search` - [skills](https://to-go.dev/plugins/skills) (other): Skill resource: proficiency-ranked grid by category. — install: `togo install togo-framework/skills` - [social](https://to-go.dev/plugins/social) (other): SocialLink resource for footer/nav profile links. — install: `togo install togo-framework/social` - [storage-gdrive](https://to-go.dev/plugins/storage-gdrive) (data): togo storage driver — install: `togo install togo-framework/storage-gdrive` - [storage-r2](https://to-go.dev/plugins/storage-r2) (data): togo storage driver — install: `togo install togo-framework/storage-r2` - [storage-s3](https://to-go.dev/plugins/storage-s3) (data): togo storage driver — install: `togo install togo-framework/storage-s3` - [subscriptions](https://to-go.dev/plugins/subscriptions) (other): Subscription management for togo — plans, trials, subscribe/cancel/change, over the payment plugin — install: `togo install togo-framework/subscriptions` - [testimonials](https://to-go.dev/plugins/testimonials) (other): Testimonial + rotating Quote resources. — install: `togo install togo-framework/testimonials` - [testing-playwright](https://to-go.dev/plugins/testing-playwright) (other): togo plugin: testing-playwright — install: `togo install togo-framework/testing-playwright` - [tools](https://to-go.dev/plugins/tools) (other): Tool/stack resource with favourites. — install: `togo install togo-framework/tools` - [translation](https://to-go.dev/plugins/translation) (other): DB-backed dynamic i18n for togo — edit translations at runtime, falls back to the static i18n catalog — install: `togo install togo-framework/translation` - [ui-admin](https://to-go.dev/plugins/ui-admin) (other): togo UI kit — admin shell: user/mail management, profile view, provider switcher — install: `togo install togo-framework/ui-admin` - [ui-auth](https://to-go.dev/plugins/ui-auth) (other): togo UI kit — auth flow components (LockScreen, AuthClient, PasswordInput, password reset/2FA flows) — install: `togo install togo-framework/ui-auth` - [ui-copilot](https://to-go.dev/plugins/ui-copilot) (other): togo UI kit — copilot chat dock + streaming, artifact renderers, intel severity chip — install: `togo install togo-framework/ui-copilot` - [ui-core](https://to-go.dev/plugins/ui-core) (other): togo UI kit — foundation package (shadcn primitives, theme, i18n, status chrome) — install: `togo install togo-framework/ui-core` - [ui-data-table](https://to-go.dev/plugins/ui-data-table) (other): togo UI kit — data table component (TanStack Table + CardGrid) — install: `togo install togo-framework/ui-data-table` - [ui-desktop](https://to-go.dev/plugins/ui-desktop) (other): togo UI kit — OS-like desktop shell (dock, windows, spotlight, launchpad, login screen) — install: `togo install togo-framework/ui-desktop` - [ui-entity](https://to-go.dev/plugins/ui-entity) (other): togo UI kit — generic entity network graph. Depends on @togo-framework/ui-core. — install: `togo install togo-framework/ui-entity` - [ui-errors](https://to-go.dev/plugins/ui-errors) (other): togo UI kit — Sentry-style error tracking: issues list + detail + page. Depends on @togo-framework/ui-core. — install: `togo install togo-framework/ui-errors` - [ui-feedback](https://to-go.dev/plugins/ui-feedback) (other): togo UI kit — feedback reporter surface + issue manager board/drawer — install: `togo install togo-framework/ui-feedback` - [ui-layout](https://to-go.dev/plugins/ui-layout) (other): togo UI kit — app shell/layout primitives (AppSidebar, AppLayout, AdminLayout, ViewToggle, RouteProgress) — install: `togo install togo-framework/ui-layout` - [ui-logs](https://to-go.dev/plugins/ui-logs) (other): togo UI kit — raw/live-tail log viewer — install: `togo install togo-framework/ui-logs` - [ui-map](https://to-go.dev/plugins/ui-map) (other): togo UI kit — Leaflet/OpenStreetMap map view + chrome — install: `togo install togo-framework/ui-map` - [ui-markdown](https://to-go.dev/plugins/ui-markdown) (other): togo UI kit — markdown renderer (GFM, syntax highlighting, mermaid) + editor — install: `togo install togo-framework/ui-markdown` - [ui-marketing](https://to-go.dev/plugins/ui-marketing) (other): togo UI kit — landing/docs/marketing page components + dynamic section board — install: `togo install togo-framework/ui-marketing` - [ui-plugin](https://to-go.dev/plugins/ui-plugin) (other): togo UI kit — plugin marketplace cards, detail pages, workflow editor — install: `togo install togo-framework/ui-plugin` - [webhooks](https://to-go.dev/plugins/webhooks) (other): togo outgoing webhooks — signed, retried event delivery to subscribers — install: `togo install togo-framework/webhooks` - [widget](https://to-go.dev/plugins/widget) (other): The widget contract + registry. Concrete widgets ship as widget-* driver plugins that self-register; an app installs only the ones it wants. — install: `togo install togo-framework/widget` - [widget-availability](https://to-go.dev/plugins/widget-availability) (other): 'Available for freelance' status with a contact CTA. — install: `togo install togo-framework/widget-availability` - [widget-blog](https://to-go.dev/plugins/widget-blog) (other): The latest blog posts. — install: `togo install togo-framework/widget-blog` - [widget-clock](https://to-go.dev/plugins/widget-clock) (other): A live ticking clock (date + time). — install: `togo install togo-framework/widget-clock` - [widget-contact](https://to-go.dev/plugins/widget-contact) (other): Email / phone / address. — install: `togo install togo-framework/widget-contact` - [widget-header](https://to-go.dev/plugins/widget-header) (other): Search launcher (cmd-K), theme toggle and locale switch. — install: `togo install togo-framework/widget-header` - [widget-notes](https://to-go.dev/plugins/widget-notes) (other): Pinned/recent sticky notes (admin-only) with an inline editor. — install: `togo install togo-framework/widget-notes` - [widget-now](https://to-go.dev/plugins/widget-now) (other): Current job + currently-playing game. — install: `togo install togo-framework/widget-now` - [widget-opensource](https://to-go.dev/plugins/widget-opensource) (other): Top open-source repos with live GitHub stats. — install: `togo install togo-framework/widget-opensource` - [widget-profile](https://to-go.dev/plugins/widget-profile) (other): Photo, localized name/role and a rotating quote. — install: `togo install togo-framework/widget-profile` - [widget-skills](https://to-go.dev/plugins/widget-skills) (other): Top skills as medal chips ranked by proficiency. — install: `togo install togo-framework/widget-skills` - [widget-socials](https://to-go.dev/plugins/widget-socials) (other): Social profile links. — install: `togo install togo-framework/widget-socials` - [widget-sponsor](https://to-go.dev/plugins/widget-sponsor) (other): Support CTA with GitHub Sponsors + Buy-me-a-coffee and perks. — install: `togo install togo-framework/widget-sponsor` - [widget-stats](https://to-go.dev/plugins/widget-stats) (other): A KPI row of headline stats. — install: `togo install togo-framework/widget-stats` - [widget-tools](https://to-go.dev/plugins/widget-tools) (other): The tools/stack in use, favourites starred. — install: `togo install togo-framework/widget-tools` - [workflow](https://to-go.dev/plugins/workflow) (other): togo workflow plugin — install: `togo install togo-framework/workflow` - [youtube](https://to-go.dev/plugins/youtube) (other): YouTubeVideo resource (views/likes/duration) — pairs with the compose queue for AI-drafted posts. — install: `togo install togo-framework/youtube` ## Source - GitHub org: https://github.com/togo-framework - npm CLI: https://www.npmjs.com/package/@togo-framework/cli - UI Kit: https://ui.to-go.dev (@togo-framework/ui) - Discord: https://discord.gg/Rv9Y7tcBtN