A Claude Code plugin for developing, deploying, and managing Codehooks.io serverless backends.
This plugin teaches Claude Code how to work with the Codehooks platform. It provides:
- Auto-detection — Claude activates Codehooks mode when it detects a
config.jsonwithnameandspacefields - CLI integration — Claude uses
coho prompt,coho deploy,coho doctor, and other CLI commands to develop and manage backends - Ready-to-use templates — Example files for common patterns (webhooks, cron jobs, queues, workflows)
npm install -g codehooks
coho loginAdd the marketplace and install the plugin:
/plugin marketplace add RestDB/codehooks-claude-plugin
/plugin install codehooks@codehooks
Or for local development/testing:
claude --plugin-dir ./codehooks-claude-pluginOpen a directory with a Codehooks config.json — Claude will automatically activate the backend skill when you ask it to work on backend tasks.
Run the /codehooks:backend command to activate Codehooks mode manually. This is useful for starting new projects or when auto-detection hasn't kicked in.
.claude-plugin/plugin.json Plugin manifest
commands/backend.md /codehooks:backend user command
skills/codehooks-backend/SKILL.md Agent skill (auto-detected)
examples/
webhook-handler.js Stripe webhook with signature verification
daily-job.js Cron-scheduled background job
queue-worker.js Async queue processing
workflow-automation.js Multi-step workflow with state
MIT