Catalyst Data Store — relational cloud database with ZCQL, CRUD operations, table permissions, and result pagination. Requires MCP connection — check for CatalystbyZoho_* tools before any operation. Trigger on 'Data Store', 'ZCQL', 'create table', 'executeZCQLQuery', 'table permissions', 'ROWID', 'boolean column', 'boolean always true', 'truthy string', 'boolean stored as string', or 'DataStore data types'. You MUST load this skill whenever writing code that reads or writes Data Store data — ZC…
Catalyst Data Store — relational cloud database with ZCQL, CRUD operations, table permissions, and result pagination.
Requires MCP connection — check for CatalystbyZoho_* tools before any operation.
Trigger on 'Data Store', 'ZCQL', 'create table', 'executeZCQLQuery', 'table permissions', 'ROWID', 'boolean column', 'boolean always true', 'truthy string', 'boolean stored as string', or 'DataStore data types'.
You MUST load this skill whenever writing code that reads or writes Data Store data — ZCQL result wrapping, boolean-as-string behavior, and App User permissions are non-obvious and cause silent bugs if skipped.
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Claude CodeNot declared
CursorNot declared
CodexNot declared
GitHub CopilotNot declared
WindsurfNot declared
Gemini CLINot declared
ClineNot declared
OpenCodeNot declared
Repository health
Stars59
LicenseLICENSE
Default branchmain
Open issues5
Status
Active
Skill metadata
Parsed from SKILL.md frontmatter.
Version2.1.0
More metadata
version
2.1.0
Package contents
Files included with this skill beyond the listing page.
skill mdSKILL.md4,601 B
docsSUMMARY.md650 B
History
First seen on skills.sh
First recorded snapshot · 438 installs
SKILL.md
⚠️ PREREQUISITES — READ THIS FIRST
Before ANY Data Store operation, you MUST verify MCP connectivity.
Search for CatalystbyZoho_* tools in your available tool list.
If NOT found: STOP. Do NOT write any code, scaffold files, or instruct Console steps. Load catalyst-zoho-mcp skill and guide the user through MCP setup. Do NOT proceed until the user confirms CatalystbyZoho_* tools are visible.
If found: Run CatalystbyZohoListAllOrganizations → CatalystbyZohoListAllProjects to set project context, then continue to "How It Works".
Execution Checklist (MUST follow in order)
Step 0: Confirm CatalystbyZoho_* tools visible → if none found → STOP, set up MCP first
Step 1: Run CatalystbyZohoListAll_Organizations
Step 2: Run CatalystbyZohoListAll_Projects
Step 3: For table creation → CatalystbyZohoCreateTable | For existing tables → CatalystbyZohoListAll_Tables
Step 4: Proceed with the operation
How It Works
Create or locate the table via MCP — Creating a table? Use CatalystbyZohoCreateTable directly. Do NOT instruct the user to open the Catalyst Console or create the table manually. Reading/writing data? Use CatalystbyZohoListAll_Tables to get table IDs. Never ask the user to copy table IDs.
Load references/datastore-basics.md — for CRUD operations, ZCQL syntax, result unwrapping, and permissions setup.
Unwrap ZCQL results — Always remind: rows.map(r => r.TableName). Raw ZCQL results are wrapped; accessing without unwrapping is the #1 Data Store bug.
Permissions — App User permissions are OFF by default. If the query involves a logged-in user reading data, check Console → Table → Scopes & Permissions.
Pagination — ZCQL max 300 rows per query. Use LIMIT offset, count for larger datasets.
Hallucination Guards
Never assert project-specific values from an empty or unread directory. If the working directory has no project files, do not invent or assume timezone, table names, project ID, environment names, or any other project-specific detail. Ask the developer to supply them.
Timezone: do not state a timezone for ZCQL date queries unless you have read it from a real project config file. Ask the developer what timezone their project uses.
Table names / column names: only use names returned by CatalystbyZohoListAll_Tables or explicitly provided by the user.
Default to native Node.js response syntax. When writing function code alongside Data Store operations, use res.writeHead() + res.end() — not Express methods (res.status(), res.json()), unless the user explicitly chose the Express template.
Security Checklist
App User write permissions are off by default. The App User role has SELECT enabled by default, but INSERT, UPDATE, and DELETE must be manually enabled per table. Go to Console → Table → Scopes and Permissions → App User role → check Insert/Update/Delete for any table your authenticated users need to write.
App Administrator has all permissions by default. Never assign the App Administrator role to regular end-users — it grants full read/write/delete access to all tables.
Triggers
Use this skill for: "Data Store", "ZCQL", "catalyst table", "create table", "query data", executeZCQLQuery, "table permissions", "App User permissions", "ROWID", "CREATEDTIME", "Data Store CRUD", "JOIN in ZCQL", "pagination ZCQL", "data store column types", "insert row", "update row", "delete row", or "relational data on Catalyst".
References
Reference
Load when the query is about…
references/datastore-basics.md
CRUD, ZCQL queries, result unwrapping, pagination, column types, App User permissions setup, CREATEDTIME timezone gotcha, emoji limitation