plugins marketplace
← All plugins

devkit

v0.13.0

Local-dev coordination skills for devkit: file locks, ports, dev servers, issue lifecycle

CodexClaude Code1 skill1 MCP serverstdio

by Lev VelykoivanenkoGPL-3.0-or-later2updated 2 days ago

Source

git clone https://github.com/AbysmalBiscuit/devkit

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

devkit/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/using-devkit/SKILL.md
└── .mcp.json

Skills1

using-devkitskills/using-devkit/SKILL.md

Use when multiple agents or sessions share one local git checkout and edit files concurrently (coordinating who edits what without clobbering), or when running local dev servers, allocating ports, running canned project tasks (builds, profiling flows — `devrun task`), or managing issue worktrees with the devkit CLI suite — binaries `lockm`, `portm`, `devrun`, `issue`, `devkit`, `devkitd`.

MCP servers1

devkitstdio
command
devkit-mcp

Manifests2

.codex-plugin/plugin.json
{
  "name": "devkit",
  "version": "0.13.0",
  "description": "Local-dev coordination skills for devkit: file locks, ports, dev servers, issue lifecycle",
  "author": {
    "name": "Lev Velykoivanenko"
  },
  "homepage": "https://github.com/AbysmalBiscuit/devkit",
  "repository": "https://github.com/AbysmalBiscuit/devkit",
  "license": "GPL-3.0-or-later",
  "keywords": [
    "devkit",
    "file-locks",
    "ports",
    "dev-servers",
    "worktrees"
  ],
  "skills": "./skills/",
  "hooks": "./hooks/hooks-codex.json",
  "mcpServers": "./.mcp.json",
  "interface": {
    "displayName": "devkit",
    "shortDescription": "Local-dev coordination: file locks, ports, dev servers, issue lifecycle",
    "category": "Coding",
    "capabilities": [
      "Read",
      "Write"
    ]
  }
}
.claude-plugin/plugin.json
{
  "name": "devkit",
  "description": "Local-dev coordination skills for devkit: file locks, ports, dev servers, issue lifecycle",
  "version": "0.13.0",
  "author": {
    "name": "Lev Velykoivanenko"
  },
  "homepage": "https://github.com/AbysmalBiscuit/devkit",
  "repository": "https://github.com/AbysmalBiscuit/devkit",
  "license": "GPL-3.0-or-later",
  "keywords": [
    "devkit",
    "file-locks",
    "ports",
    "dev-servers",
    "worktrees"
  ],
  "mcpServers": "./.mcp.json"
}