Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .cursor-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
},
"metadata": {
"description": "Cursor plugins for deploying, debugging, and monitoring applications on Render",
"version": "0.1.0",
"pluginRoot": "plugins"
"version": "0.1.0"
},
"plugins": [
{
Expand Down
8 changes: 7 additions & 1 deletion plugins/render/.cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,11 @@
},
"license": "MIT",
"keywords": ["render", "deploy", "cloud", "blueprint", "mcp", "monitoring", "debugging"],
"logo": "assets/logo.svg"
"logo": "assets/logo.svg",
"skills": "skills",
"rules": "rules",
"agents": "agents",
"commands": "commands",
"hooks": "hooks/hooks.json",
"mcpServers": ".mcp.json"
}
File renamed without changes.
2 changes: 1 addition & 1 deletion plugins/render/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Cursor plugin for deploying, debugging, and monitoring applications on [Render](
- `skills/`: Deploy, debug, and monitor skills (synced from [render-oss/skills](https://github.com/render-oss/skills))
- `agents/`: Render deployment assistant
- `commands/`: Deploy to Render and check service status
- `mcp.json`: Render MCP server configuration
- `.mcp.json`: Render MCP server configuration
- `hooks/`: Validates render.yaml after edits

## Skills sync
Expand Down
2 changes: 1 addition & 1 deletion scripts/validate-template.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ async function main() {
addWarning(`${entry.name}: no hooks/hooks.json file found (only needed when using hooks).`);
}

const mcpPath = path.join(pluginDir, "mcp.json");
const mcpPath = path.join(pluginDir, ".mcp.json");
if (!(await pathExists(mcpPath))) {
addWarning(`${entry.name}: no mcp.json file found (only needed when using MCP servers).`);
}
Expand Down