Skip to content

Skills & IDE Plugins

Chronary publishes a set of Agent Skills and IDE plugins that teach AI coding assistants — Claude Code, Cursor, VS Code Copilot, OpenAI Codex, and Windsurf — how to use the Chronary API correctly. They contain reference material only, no executable code.

chronary-api

Core REST API — data model, all endpoints, authentication, error handling, ID prefixes.

chronary-toolkit

@chronary/toolkit — 23 tools with adapters for Vercel AI SDK, OpenAI, LangChain, Mastra, and MCP.

chronary-mcp

@chronary/mcp — MCP server setup snippets for Claude Desktop, Cursor, VS Code, Claude Code, and Windsurf.

chronary-cli

chronary CLI — command reference, scripting patterns, automation recipes.

Plus three reference documents: TypeScript SDK method signatures, end-to-end code examples, and all 12 webhook event payload schemas.

Inside Claude Code:

/plugin marketplace add Chronary/chronary-skills
/plugin install chronary@chronary

That installs the chronary plugin with all four skills, three slash commands (/check-availability, /manage-calendar, /schedule-event), and the MCP server configuration.

The Chronary MCP server is published to npm as @chronary/mcp. The skill pack includes per-editor configuration for it, but the minimal usage is:

Terminal window
export CHRONARY_API_KEY=chr_sk_...
npx -y @chronary/mcp

For Claude Desktop, Cursor, VS Code, Claude Code, and Windsurf JSON config snippets, see the MCP setup guide or the chronary-mcp skill in the pack.

Skills don’t run code in your editor. They sit in your skills directory and load when the AI assistant decides the conversation is about Chronary. After installing, you should see citations to SKILL.md files when your assistant answers questions like:

  • “Create a Chronary calendar named ‘Work’ in America/New_York.”
  • “What webhook events does Chronary emit?”
  • “Show me the curl command to list events for a calendar.”
  • “How do I check availability across multiple agents at once?”

If you don’t see the citation, the skill isn’t loaded — re-check the install path for your editor.