@cloudgrid-io/skills
v0.14.0
Published
Multi-agent skills for CloudGrid: login, claim, init, plug, logs, share, feedback, brain. Install in Claude Code, Codex, or Cursor.
Maintainers
Readme
CloudGrid Skills
Multi-agent skills for CloudGrid. Install them in Claude Code, Codex, or Cursor,
and your agent can build, ship, and run things on CloudGrid through the
cloudgrid CLI.
Why CloudGrid
Claude Code and Codex removed the wall around writing code. CloudGrid removes the wall around shipping it. A directory or a URL becomes a live, addressable thing in about 30 seconds. These skills are how your agent crosses that second wall on your behalf: scaffold, deploy, tail logs, share, read feedback. Everything here is free.
Install in 3 steps
Install the CLI:
npm install -g @cloudgrid-io/cliLog in:
cloudgrid loginAdd the agent-core. In Claude Code (recommended):
/plugin marketplace add cloudgrid-io/skills /plugin install cloudgrid@cloudgrid-skillsOne install wires up everything: the skills, the SessionStart orientation hook, and the CloudGrid MCP server (
grid_start,grid_fetch, and the CLI-wrapping tools). The MCP auto-starts when the plugin is enabled — no separateclaude mcp addneeded.The skills show under
/pluginand/skillsascloudgrid:plug,cloudgrid:login, … — or just say what you want ("share this HTML page as a link") and the right one triggers.Or install with the
gh skillextension:gh skill install cloudgrid-io/skillsOther agents (Cursor, Cline, Gemini CLI):
npx skills add cloudgrid-io/skills. They install asplug,login, … — the CloudGrid brand comes from the plugin namespace, which those agents don't have.Claude Desktop, claude.ai, ChatGPT, and every route in one place: USAGE.md.
Share something in one step, no login
/cloudgrid:plug index.htmlcloudgrid:plug publishes a single HTML page (or deploys a full app) and hands
back a public URL. For a single page: no account, no CLI — the link lasts 7 days,
and you can sign in later to keep it.
Skills
| Skill | Invoke | What it does |
|---|---|---|
| login | /cloudgrid:login | Sign in to CloudGrid, with or without the CLI. |
| claim | /cloudgrid:claim | Claim an anonymous drop into your account after signing in. |
| init | /cloudgrid:init | Scaffold a new app or agent. |
| plug | /cloudgrid:plug | Share a single HTML page (login optional) or deploy a directory/URL. Get a public URL. |
| logs | /cloudgrid:logs | Tail logs for an entity. |
| share | /cloudgrid:share | Make an entity shareable and print its URL. |
| feedback | /cloudgrid:feedback | Read the feedback feed. |
| brain | /cloudgrid:brain | Refresh an entity's Grid Brain metadata. |
The canonical chain
init -> plug -> logs -> share -> feedbackThat is the full "I built a thing and shipped it" loop. COOKBOOK.md walks through it end to end.
MCP server
The Claude Code plugin above already bundles the MCP server — installing
cloudgrid@cloudgrid-skills starts it automatically. For every other client, the
MCP server is published separately as
@cloudgrid-io/mcp. It exposes the same
actions as MCP tools, for agents that speak the Model Context Protocol.
Install it with npx -y @cloudgrid-io/mcp, or point a remote-capable client at
https://mcp.cloudgrid.io/mcp. See USAGE.md for per-client setup.
License
Apache 2.0. See LICENSE.
