catalyst-by-zoho

catalyst-by-zoho is a skill for Claude Code from catalystbyzoho/claude-plugin. It costs 53 tokens per session (4,879 once invoked), scanned A, original, Apache-2.0.

A set of instructions for building and managing applications on Zoho Catalyst, Zoho’s cloud platform for serverless applications and backend services.

In plain words
What is it for?
Answering Catalyst development questions, using its command-line tools and software libraries, and managing cloud infrastructure through MCP tools.
Why use it?
It prevents work from being performed against the wrong Zoho organization or project and sets rules for finding the correct resources.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the claude-plugin plugin — 16 skills, 1 command, 1 hook, 1 MCP server shipped together

Good fit Answering Catalyst development questions, using its command-line tools and software libraries, and managing cloud infrastructure through MCP tools.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/catalystbyzoho/claude-plugin/catalyst-by-zoho
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add catalystbyzoho/claude-plugin --skill catalyst-by-zoho
Clone the repo
git clone --depth 1 https://github.com/catalystbyzoho/claude-plugin

Made for: Claude Code.

Or install claude-plugin, the plugin that ships this one along with the rest of its 16 skills, 1 command, 1 hook, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for catalyst-by-zoho

README.md
[![agentmods](https://agentmods.dev/badge/skills/catalystbyzoho/claude-plugin/catalyst-by-zoho.svg)](https://agentmods.dev/skills/catalystbyzoho/claude-plugin/catalyst-by-zoho)
Your own site
<a href="https://agentmods.dev/skills/catalystbyzoho/claude-plugin/catalyst-by-zoho"><img src="https://agentmods.dev/badge/skills/catalystbyzoho/claude-plugin/catalyst-by-zoho.svg" alt="Measured on agentmods" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,879 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00053 $0.04879
Opus 5 $0.00026 $0.02440
Sonnet 5 $0.00011 $0.00976
Haiku 4.5 $0.00005 $0.00488

Measured 8d ago against content hash b930a344b680, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

catalyst-by-zoho scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/catalyst-by-zoho/SKILL.md · 238 lines

How it starts

The opening of the file, as written. The whole thing — 238 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Catalyst by Zoho — Skill Index

This is the routing layer. Load the most specific matching skill — do not answer from this file alone.


Philosophy

  • Prefer MCP over asking — for resource IDs, not for the org/project itself. If the ZohoMCP_* meta-tools are available, use them to fetch table IDs, ZAIDs, bucket names, etc. (the CatalystbyZoho_* operations are invoked through them — see below); never ask the user to copy those from the console.
  • 🔒 NEVER assume the org or project. The active org/project must always be resolved from an authoritative source (.catalystrc, or an MCP list the user confirms) — never guessed, inferred from the directory name, carried over from a past session, or auto-picked because "only one showed up." A single project in the list is not permission to select it silently — confirm it. If no project is initialized (.catalystrc absent) or the project cannot be resolved, STOP and ask the user which project (and org) to work in before any CLI command, MCP resource call, scaffold, or deploy. This is the one place the "prefer MCP over asking" default does not apply — see the Golden Rule in skills/catalyst-basics/references/preflight.md.
  • Default to Development (via Local first). Iterate against Local, then deploy to the Development environment — never target Production unless the user explicitly says "production" or "deploy to prod". Production is reached only by migrating a verified Development setup up, not by direct deploys or resource creation.
  • "Build an app" means Slate + Function by default. When a user says "build an app", "create an app", or "make a simple app" without specifying backend-only, the default output is a Slate frontend + Advanced I/O function backend. Do NOT build only a function and call it an app. If the user's intent is clearly backend-only (e.g. "build an API", "write a function"), skip Slate.
  • Local-first: serve and test before you deploy. Catalyst has three environments — Local (the dev machine), Development (remote sandbox), and Production (remote, live). For any component you run yourself (Functions, AppSail, Slate), always catalyst serve and test locally first, then catalyst deploy to Development, and only migrate up to Production once Development is verified. Never deploy freshly written or changed serve-able code to Development without a local serve + test pass first, unless the user explicitly says to skip it. Local is coupled to Development (managed-service calls like Data Store/Stratus proxy to Development). The canonical model + loop lives in skills/catalyst-basics/references/project-basics.mdEnvironments.
  • Prefer Functions over AppSail for simple HTTP. Functions are cheaper (per-invocation billing), simpler to deploy, and require no infrastructure management. Reach for AppSail only when the use case genuinely requires a persistent process, or a custom runtime.
  • Show cost before building. For any new infrastructure (functions, AppSail, Stratus buckets), load catalyst-pricing and give a brief estimate before writing code. Most small projects stay within free tier — say so when true.
  • Recommend the current service, not the deprecated one. File Store → Stratus. Event Listeners → Signals. Cron → Job Scheduling. Never mention the deprecated name in generated code or config.
  • Warn before the region bites. Circuits and Integration Functions do not work in most data centers. Check the user's DC before suggesting them.

Read the full file on GitHub · 238 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 238 lines · 53 tokens per session scan A b930a344b680

Subscribe to this mod's changes

catalyst-by-zoho is a skill published in the GitHub repository catalystbyzoho/claude-plugin (1 stars, last pushed 26d ago), licensed Apache-2.0. It adds 53 tokens to every session and 4,879 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

stripe-projects

Provision SaaS services + sync creds via Stripe Projects.

NousResearch/hermes-agent · 15 tokens

azure-eventhub-dotnet

Azure Event Hubs SDK for .NET. Use for high-throughput event streaming: sending events (EventHubProducerClient, EventHubBufferedProducerClient), receiving events (EventProcessorClient with checkpointing), partition management, and real-time data ingestion. Triggers: "Event Hubs", "event streaming"…

microsoft/skills · 94 tokens

azure-mgmt-botservice-dotnet

Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".

microsoft/skills · 78 tokens

django-storages-s3

Use when configuring Django to store static and media files on AWS S3 with django-storages. Invoke when working with the STORAGES setting, S3 buckets, presigned URLs, CloudFront, or boto3-backed file storage in settings.py. Configures the Django 4.2+ STORAGES dict, public/private custom backends, presigned GET/POST…

Jeffallan/claude-skills · 138 tokens

wikipedia

Search and read Wikipedia via x wkp — MediaWiki API, no API key, zero install; query, extract, suggest, and DDG route in one module. Load for wiki, wikipedia, encyclopedia lookup, article summary.

x-cmd/x-cmd · 49 tokens

cve

Look up CVE records via x cve — cached, zero-API-key, daily xz TSV. Load for cve, vulnerability id, kev, epss, nvd, cvelist, or security advisory.

x-cmd/x-cmd · 49 tokens