Open-source Xano code, shared by the community. Push it to your workspace with the Xano CLI — or hand the repo URL to Claude Code and let it install for you — then make it yours.
🌐 xano.com · 📚 docs · 💬 community
Every repo falls into one of four categories. Filter by topic to browse.
| Type | What it is | Filter by |
|---|---|---|
| 🏗️ Template | A full or partial app — backend (often frontend too), meant to be forked as a starting point | xano-template |
| 🔌 Integration | Functions, endpoints, or workflows that connect Xano to an external service | xano-integration |
| 🧩 Module | A reusable unit that combines multiple pieces for a broader directive (audit logging, RBAC, retries) | xano-module |
| ⚡ Action | A single function (or tight set) that does one precise thing | xano-action |
Every repo also carries 1–2 domain topics (payments, notifications, ai …) and an optional specific topic (stripe, openai, slug). Stack filters in GitHub search to narrow down — e.g. topic:xano-integration topic:payments.
Full tag taxonomy and naming conventions in CONTRIBUTING.md.
Third-party API wrappers. Each repo ships XanoScript functions you can push straight to your workspace.
- integration-stripe-payments — payments, customers, subscriptions, checkout
- integration-paypal-payments — checkout orders and captures
- integration-square-payments — card payments and customers
- integration-plaid-banking — bank account linking
- integration-shopify-commerce — product catalog and orders
- integration-slack-messaging — messages, channels, file uploads
- integration-discord-messaging — channel notifications via bot or webhook
- integration-intercom-messaging — contacts and in-app messages
- integration-twilio-sms — SMS, WhatsApp, phone verification
- integration-resend-email — transactional email
- integration-mailchimp-email — subscribers and campaigns
- integration-salesforce-crm — leads and record queries
- integration-hubspot-crm — contacts and deals
- integration-zendesk-support — ticket management
- integration-gorgias-support — tickets, messages, customer sync
- integration-github-issues — issues and webhooks
- integration-gitlab-devops — issues, merge requests, webhooks
- integration-jira-issues — issue creation and workflow transitions
- integration-cursor-mcp — 1-click install deeplinks for a Xano-hosted MCP server in Cursor
- integration-cloudflare-edge — cache purging and DNS
- integration-datadog-monitoring — custom events and metrics
- integration-pagerduty-incidents — incident creation and resolution
- integration-launchdarkly-feature-flags — feature flag management
- integration-openai-ai — text completions and embeddings
- integration-gemini-ai — text, images, video, transcription, and document analysis with Gemini
- integration-xai-ai — chat completions with xAI's Grok models
- integration-exa-search — web search with content extraction and freshness controls
- integration-google-sheets — read, write, and append rows
Finished apps you can fork. Each ships a XanoScript backend you push to your workspace and a single-file HTML frontend that prompts for your Xano instance URL on first load.
| App | What it is |
|---|---|
| support-ticketing | Support / helpdesk ticketing with SLAs, priorities, categories, comments, and a dashboard |
| asset-tracking | IT asset inventory with assignments, maintenance logs, locations, and categories |
| purchase-approvals | Purchase requisitions with line items, vendors, and sequential multi-step approvals |
| client-intake | Client intake / CRM app for capturing and managing inbound leads |
Reusable building blocks — bigger than an action, smaller than an app. Each ships tables, helper functions, and a tight HTTP surface you can drop into any workspace.
| Module | What it is |
|---|---|
| audit-log | Append-only audit-event capture with a reusable record function and filtered query/stats APIs, so any XanoScript can log who did what to which resource |
| rbac | Role-based access control with roles, permissions, user assignments, and a single check function you can drop into any endpoint to gate access |
| notify-router | Multi-channel notification router that fans a single notify call out to email, SMS, Slack, and webhook channels based on per-user, per-topic preferences |
| webhook-inbox | Inbound webhook receiver with per-source HMAC verification, automatic idempotency on replays, and every request persisted for downstream processing |
| job-retry | Durable job queue with atomic claim, exponential-backoff retries, and a dead-letter tier you can inspect and requeue from |
Got an idea for another? Open an issue.
Coming soon. Want to contribute one? Open an issue with your idea.
Option A — Claude Code (with the Xano MCP enabled)
Install the repo at
<URL>into my Xano workspace.
Option B — Xano CLI
git clone <repo-url>
cd <repo>
xano workspace:push . -w <your-workspace-id>Full CLI docs → https://docs.xano.com/cli
We welcome templates, integrations, modules, and actions from the community. See CONTRIBUTING.md for tag taxonomy, naming conventions, and the quality bar.