Agent Skills
Install seenode Agent Skills manually in Cursor, Claude Code, and other coding agents until marketplace plugins are available.
Agent Skills teach coding agents how to deploy and operate apps on seenode using the hosted MCP. They ship in the open-source seenode Agent Plugin as skills/*/SKILL.md folders.
Marketplace listings for Cursor, Claude Code, and other clients are still rolling out. Until those are live, install the skills (or the full plugin) from GitHub.
Note (MCP required)
Skills call the seenode MCP tools. Connect MCP first (see Model Context Protocol (MCP)), then install skills so the agent knows the recommended workflows.
Available skills
| Skill | What it does |
|---|---|
deploy | End-to-end deploy: database → inspect repo → create app → link DB → wait |
troubleshoot | Failed deploys and apps that will not start |
applications | Discover and manage web, worker, and private apps |
environment | Env vars and secrets (prefer DB link over pasting passwords) |
databases | Create, update, rotate, and link managed MySQL / PostgreSQL |
storage | Persistent application volumes |
domains | Custom domains and DNS verification |
projects | Team context, limits, and project grouping |
billing | Credits, usage, portal, and top-ups |
Each skill folder contains a SKILL.md file (and optional references/). Folder name must match the skill name in frontmatter.
Install skills manually
Clone the plugin once, then copy skills into your client’s skills directory (or install the full plugin where supported).
git clone https://github.com/seenode/seenode-agent-plugin.gitcd seenode-agent-pluginSkills only (global)
Copy every skill into your user skills directory so they apply across projects:
mkdir -p ~/.cursor/skillscp -R skills/* ~/.cursor/skills/Skills only (this project)
mkdir -p .cursor/skillscp -R /path/to/seenode-agent-plugin/skills/* .cursor/skills/Reload Cursor (Developer: Reload Window). In Agent chat you can invoke a skill with / and the skill name (for example /deploy).
Full plugin (skills + MCP config)
Until the Cursor marketplace listing is live, install the plugin locally:
mkdir -p ~/.cursor/plugins/localln -s "$(pwd)" ~/.cursor/plugins/local/seenodeIf a symlink is ignored, copy instead:
rm -f ~/.cursor/plugins/local/seenodecp -R "$(pwd)" ~/.cursor/plugins/local/seenodeReload Cursor, then complete seenode OAuth when the MCP connects. See also Cursor plugin docs in the repo.
Full plugin (recommended)
From a clone of the repository:
claude plugin marketplace add /absolute/path/to/seenode-agent-pluginclaude plugin install seenode@seenodeOr load the plugin for a single session:
claude --plugin-dir /absolute/path/to/seenode-agent-pluginComplete OAuth when Claude prompts for the seenode MCP server.
Skills only
Claude also discovers skills under ~/.claude/skills/ and .claude/skills/:
mkdir -p ~/.claude/skillscp -R skills/* ~/.claude/skills/You still need MCP connected separately (see MCP).
Codex-compatible clients can load skills from ~/.codex/skills/ or .codex/skills/:
mkdir -p ~/.codex/skillscp -R skills/* ~/.codex/skills/The plugin’s .codex-plugin/ adapter also points at ./skills/ when you load the full plugin directory. Connect MCP with OAuth at https://mcp.seenode.com/mcp. Marketplace / ChatGPT app listing is separate and not required for local skill use.
After install
- Confirm MCP is connected and OAuth completed.
- Smoke-test with a read-only prompt, for example “What is my current seenode team?”
- Try a skill-backed flow, for example “Deploy this repository to seenode as a web app” (uses deploy).
Updating skills
Pull the latest plugin and re-copy (or re-sync your local plugin install):
cd /path/to/seenode-agent-plugingit pullcp -R skills/* ~/.cursor/skills/Use the same target directory you chose at install time (~/.cursor/skills, .cursor/skills, ~/.claude/skills, and so on).
Related
Model Context Protocol (MCP)
Connect Cursor, Claude Code, and other agents to the hosted seenode MCP.seenode Agent Plugin
Source for skills, manifests, and client adapters on GitHub.