catalyst-nosql

Automates NoSQL database insertions, updates, deletions, and queries in Catalyst applications using NoSQLItem builder and nosql API.

32|7|Updated May 15, 2026
One-click install
npx skills add https://github.com/catalystbyzoho/agent-skills --skill catalyst-nosql
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: catalyst-nosql
Source: https://github.com/catalystbyzoho/agent-skills/tree/main/skills/catalyst-nosql
Command: npx skills add https://github.com/catalystbyzoho/agent-skills --skill catalyst-nosql

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill resolves the complexity of managing NoSQL databases in Catalyst applications, allowing developers to perform critical operations like insertions, updates, deletions, and queries without writing manual SQL-like queries.

Core Features & Use Cases

  • NoSQL Data Operations: Supports operations like insertItems, fetchItem, updateItems, deleteItems, and queryTable.
  • Flexible Schema Handling: Enables the storage of unstructured or semi-structured JSON-formatted items.
  • Schema Decision Guide: Assists in choosing between NoSQL and Data Store for the right data management strategy.
  • Use Case: Ideal for applications that require high write throughput, flexible schema storage, and partition key-based querying, such as storing user profiles or other document-oriented data.

Quick Start

Use the catalyst-nosql skill to insert a new item into your NoSQL table with the partition key 'userId' and corresponding attributes.

Frequently Asked Questions about catalyst-nosql

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I insert JSON items into a NoSQL database in Catalyst?

To insert JSON items into a NoSQL database in Catalyst, use the NoSQLItem builder and the nosql API to automate insertItems operations without writing manual queries. This streamlines storing unstructured or semi-structured data using partition keys.

When should I use NoSQL over Data Store for my Catalyst application?

Choose NoSQL over Data Store in your Catalyst application when handling use cases that require flexible data schemas, high write throughput, and partition key-based access patterns for document-oriented data like user profiles or JSON storage.

Can I update and delete items in Catalyst NoSQL without writing manual queries?

Yes, you can update and delete items in Catalyst NoSQL without manual queries by using the NoSQLItem builder to automate updateItems and deleteItems operations directly through the Catalyst nosql API for flexible schema handling.

What is a partition key and why is it needed for Catalyst NoSQL operations?

A partition key is a required attribute used to distribute and locate JSON items efficiently within your NoSQL database. It enables partition key-based access patterns for high write throughput and queryTable operations in Catalyst.

Does Catalyst NoSQL support flexible schema storage for semi-structured data?

Yes, Catalyst NoSQL supports flexible schema storage for semi-structured data, allowing you to store unstructured or semi-structured JSON-formatted items easily using the NoSQLItem builder for high write throughput operations.