You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .cursor-plugin/plugin.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
{
2
2
"name": "docker-developer-tools",
3
3
"displayName": "Docker Developer Tools",
4
-
"version": "0.6.0",
5
-
"description": "A Cursor plugin for Docker and container workflows - 13 skills, 7 rules, and 55 MCP tools for building, debugging, optimizing, and managing Docker containers, images, networks, and volumes. Includes a companion MCP server (docker-mcp) for live Docker CLI integration.",
4
+
"version": "0.7.0",
5
+
"description": "A Cursor plugin for Docker and container workflows - 14 skills, 8 rules, and 68 MCP tools for building, debugging, optimizing, and managing Docker containers, images, networks, and volumes. Includes a companion MCP server (docker-mcp) for live Docker CLI integration.",
Copy file name to clipboardExpand all lines: CLAUDE.md
+43-5Lines changed: 43 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,11 @@ Project documentation for Claude Code and AI assistants working on this reposito
4
4
5
5
## Project Overview
6
6
7
-
Docker Developer Tools is a Cursor IDE plugin that integrates Docker and container workflows into Cursor's AI chat. It includes 13 skills, 7 rules, and a companion MCP server with 55 tools for live Docker CLI integration.
7
+
Docker Developer Tools is a Cursor IDE plugin that integrates Docker and container workflows into Cursor's AI chat. It includes 14 skills, 8 rules, and a companion MCP server with 68 tools for live Docker CLI integration.
8
8
9
9
This is a monorepo - the Cursor plugin (skills and rules) and the companion MCP server live in the same repository. Docker's API is local (Docker Engine socket / CLI), so one repo is simpler for users to install and maintain.
10
10
11
-
**Version:** 0.6.0
11
+
**Version:** 0.7.0
12
12
**License:** CC-BY-NC-ND-4.0
13
13
**Author:** TMHSDigital
14
14
@@ -35,7 +35,7 @@ Docker-Developer-Tools/
35
35
tests/ # Python structure tests
36
36
```
37
37
38
-
## Skills (13)
38
+
## Skills (14)
39
39
40
40
| Skill | Description |
41
41
|-------|-------------|
@@ -52,8 +52,9 @@ Docker-Developer-Tools/
52
52
|`docker-development-env`| Development environments with Docker |
53
53
|`docker-resource-management`| Resource limits and monitoring |
54
54
|`docker-advanced-workflows`| Multi-stage pipelines, sidecar patterns, healthchecks, signal handling |
The MCP server talks to Docker via CLI exec (`docker` commands) rather than the Docker Engine REST API. It uses stdio transport and requires `docker` to be available on PATH.
71
73
@@ -164,6 +166,29 @@ The MCP server talks to Docker via CLI exec (`docker` commands) rather than the
164
166
|`docker_update`| Update container resource config live |
165
167
|`docker_wait`| Block until container stops, return exit code |
166
168
169
+
### Buildx (8)
170
+
171
+
| Tool | Description |
172
+
|------|-------------|
173
+
|`docker_buildxBuild`| Multi-platform builds with cache export and provenance |
174
+
|`docker_buildxLs`| List builder instances |
175
+
|`docker_buildxCreate`| Create a new builder instance |
176
+
|`docker_buildxRm`| Remove a builder instance |
177
+
|`docker_buildxInspect`| Inspect a builder instance |
178
+
|`docker_buildxUse`| Set the default builder instance |
179
+
|`docker_buildxImagetools`| Inspect or create manifest lists via buildx |
180
+
|`docker_builderPrune`| Remove build cache |
181
+
182
+
### Manifest (5)
183
+
184
+
| Tool | Description |
185
+
|------|-------------|
186
+
|`docker_manifestCreate`| Create a local manifest list for multi-arch images |
187
+
|`docker_manifestInspect`| Display an image manifest or manifest list |
188
+
|`docker_manifestAnnotate`| Add platform info to a manifest list entry |
189
+
|`docker_manifestPush`| Push a manifest list to a registry |
190
+
|`docker_manifestRm`| Remove local manifest lists |
191
+
167
192
## Development Workflow
168
193
169
194
### Plugin development (symlink)
@@ -288,3 +313,16 @@ Full checklist with copy-paste commands: [CONTRIBUTING.md - Release Checklist](C
0 commit comments