catalystbyzoho/agent-skills

catalyst-nosql

Catalyst NoSQL — key-value table store with typed items built via NoSQLItem builder.

Trending #4065 Hot #6100 First seen Jun 21, 2026

Installation

$ npx skills add catalystbyzoho/agent-skills --skill catalyst-nosql

Summary

  • Catalyst NoSQL — key-value table store with typed items built via NoSQLItem builder.
  • Partition key required.
  • Trigger on 'NoSQL', 'nosql.table', 'insertItems', 'fetchItem', 'updateItems', 'deleteItems', 'queryTable', 'NoSQLItem', 'document storage', 'flexible schema', or 'Catalyst document database'.
  • Do NOT use when you need SQL joins, ZCQL queries, or a fixed relational schema — use catalyst-datastore instead.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from catalystbyzoho/agent-skills · top by installs.

npx skills add catalystbyzoho/agent-skills

Browse all from catalystbyzoho/agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 59
License LICENSE
Default branch main
Open issues 5
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 md SKILL.md 2,043 B
  • docs SUMMARY.md 436 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 427 installs

SKILL.md

How It Works

  1. NoSQL vs Data Store — If the user is undecided, apply this matrix:
Catalyst Data Store Catalyst NoSQL
Schema Fixed, defined upfront Flexible, per-item (no uniform structure required)
Query ZCQL (SQL-like joins and filters) Partition key + optional sort key
Data type Structured, relational rows Unstructured/semi-structured, JSON-format
Priority ACID compliance, complex queries High scalability, high write throughput

Rule: If the user says "ZCQL", "join", "relational", or "fixed schema" — stop and load catalyst-datastore instead.

  1. Load references/nosql-basics.md — for SDK operations (insertItems, fetchItem, updateItems, deleteItems, queryTable) and the NoSQLItem builder.
  2. Answer — Provide the SDK method call with the correct table name, partition-key attribute, and NoSQLItem construction.

Triggers

Use this skill for: "NoSQL", "document storage", nosql.table, insertItems, fetchItem, updateItems, deleteItems, queryTable, NoSQLItem, "NoSQL vs Data Store", "flexible schema", "Catalyst document database", "schemaless data on Catalyst", or "nested objects in Catalyst".

References

Reference Load when the query is about…
references/nosql-basics.md SDK operations (insertItems, fetchItem, updateItems, deleteItems, queryTable), NoSQLItem builder, partition-key model, NoSQL vs Data Store decision table