> nocodb
Build database applications with NocoDB, the open-source Airtable alternative. Use when a user asks to create spreadsheet views of databases, build forms, configure automations, use the NocoDB API, or self-host NocoDB.
curl "https://skillshub.wtf/TerminalSkills/skills/nocodb?format=md"NocoDB — Open-Source Airtable Alternative
Overview
You are an expert in NocoDB, the open-source platform that turns any database into a smart spreadsheet interface with REST API. You help teams set up NocoDB on existing PostgreSQL/MySQL databases, build views (grid, kanban, gallery, form), create automations, and use the auto-generated API for integrations.
Instructions
Deployment
# Docker (connects to existing database)
docker run -d --name nocodb \
-p 8080:8080 \
-e NC_DB="pg://host:5432?u=user&p=pass&d=mydb" \
nocodb/nocodb:latest
# Docker Compose with built-in SQLite
docker compose up -d
# UI at http://localhost:8080
# Connect to existing database:
# NocoDB reads your existing tables and creates spreadsheet views.
# No data migration needed — it's a UI layer on your database.
Views
## View Types
### Grid View (spreadsheet)
- Sort, filter, group, hide columns
- Inline editing with validation
- Expand row for detail view
- Import/export CSV
### Kanban View
- Drag-and-drop cards between columns
- Group by any single-select or status field
- Stack by: status, priority, assignee, category
### Gallery View
- Card layout with cover image
- Ideal for: product catalogs, team directory, portfolio
### Form View
- Auto-generated forms from table schema
- Share via public URL (no NocoDB account needed)
- Conditional field visibility
- Custom submit message and redirect
### Calendar View
- Events from date fields
- Drag to reschedule
- Day/week/month views
Auto-Generated REST API
# NocoDB auto-generates REST APIs for every table
# List records
curl -X GET "http://localhost:8080/api/v1/db/data/noco/project/table" \
-H "xc-auth: YOUR_AUTH_TOKEN"
# Create record
curl -X POST "http://localhost:8080/api/v1/db/data/noco/project/table" \
-H "xc-auth: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-d '{"Name": "New Item", "Status": "Active", "Priority": "High"}'
# Filter and sort
curl -X GET "http://localhost:8080/api/v1/db/data/noco/project/table?where=(Status,eq,Active)&sort=-CreatedAt&limit=20"
Automations
## Webhooks and Automations
### Webhook triggers:
- After record insert
- After record update
- After record delete
- After bulk insert
### Use cases:
- New row → Send Slack notification
- Status changed to "Done" → Send email via SendGrid
- New form submission → Create Jira ticket
- Record deleted → Log to audit table
Examples
Example 1: User asks to set up nocodb
User: "Help me set up nocodb for my project"
The agent should:
- Check system requirements and prerequisites
- Install or configure nocodb
- Set up initial project structure
- Verify the setup works correctly
Example 2: User asks to build a feature with nocodb
User: "Create a dashboard using nocodb"
The agent should:
- Scaffold the component or configuration
- Connect to the appropriate data source
- Implement the requested feature
- Test and validate the output
Guidelines
- Layer on existing DB — Don't migrate data; point NocoDB at your existing PostgreSQL/MySQL and get instant spreadsheet views
- Form views for data collection — Share public form URLs for intake (support tickets, feedback, applications); data goes straight to your DB
- API for integrations — Use the auto-generated REST API to connect NocoDB data to your application code
- Kanban for workflows — Use kanban view for any status-based process (support tickets, hiring pipeline, content calendar)
- Roles for access control — Set viewer/editor/creator roles per table; share specific views without exposing the full database
- Webhooks for automation — Trigger external workflows on data changes; no polling needed
- Self-host for compliance — NocoDB runs on your infrastructure; data never leaves your network
- Lookup and rollup fields — Use linked records, lookups, and rollups for relational data without writing SQL joins
> related_skills --same-repo
> zustand
You are an expert in Zustand, the small, fast, and scalable state management library for React. You help developers manage global state without boilerplate using Zustand's hook-based stores, selectors for performance, middleware (persist, devtools, immer), computed values, and async actions — replacing Redux complexity with a simple, un-opinionated API in under 1KB.
> zod
You are an expert in Zod, the TypeScript-first schema declaration and validation library. You help developers define schemas that validate data at runtime AND infer TypeScript types at compile time — eliminating the need to write types and validators separately. Used for API input validation, form validation, environment variables, config files, and any data boundary.
> xero-accounting
Integrate with the Xero accounting API to sync invoices, expenses, bank transactions, and contacts — and generate financial reports like P&L and balance sheet. Use when: connecting apps to Xero, automating bookkeeping workflows, syncing accounting data, or pulling financial reports programmatically.
> windsurf-rules
Configure Windsurf AI coding assistant with .windsurfrules and workspace rules. Use when: customizing Windsurf for a project, setting AI coding standards, creating team-shared Windsurf configurations, or tuning Cascade AI behavior.