| name | plane |
| description | Manage Plane.so projects and work items using the `plane` CLI. List projects, create/update/search issues, manage cycles and modules, add comments, and assign members. |
| metadata | {"moltbot":{"requires":{"bins":["plane"],"env":["PLANE_API_KEY","PLANE_WORKSPACE"]},"primaryEnv":"PLANE_API_KEY","emoji":"✈️","homepage":"https://github.com/JinkoLLC/plane-skill","install":[{"id":"github","kind":"download","url":"https://raw.githubusercontent.com/JinkoLLC/plane-skill/main/scripts/plane","targetDir":"~/.local/bin/","bins":["plane"],"label":"Download plane CLI from GitHub"}]}} |
Plane Skill
Interact with Plane.so project management via the plane CLI.
Installation
Download the CLI script and make it executable:
curl -o ~/.local/bin/plane https://raw.githubusercontent.com/JinkoLLC/plane-skill/main/scripts/plane
chmod +x ~/.local/bin/plane
Make sure ~/.local/bin is in your PATH.
Setup
export PLANE_API_KEY="your-api-key"
export PLANE_WORKSPACE="your-workspace-slug"
Get your API key from: Plane → Profile Settings → Personal Access Tokens
The workspace slug is the URL path segment (e.g., for https://app.plane.so/my-team/ the slug is my-team).
Commands
Current User
plane me
Workspace Members
plane members
Projects
plane projects list
plane projects get PROJECT_ID
plane projects create --name "My Project" --identifier "PROJ"
Work Items (Issues)
plane issues list -p PROJECT_ID
plane issues list -p PROJECT_ID --priority high --assignee USER_ID
plane issues get -p PROJECT_ID ISSUE_ID
plane issues create -p PROJECT_ID --name "Fix login bug" --priority high
plane issues create -p PROJECT_ID --name "Feature" --assignee USER_ID --label LABEL_ID
plane issues update -p PROJECT_ID ISSUE_ID --state STATE_ID --priority medium
plane issues assign -p PROJECT_ID ISSUE_ID USER_ID_1 USER_ID_2
plane issues delete -p PROJECT_ID ISSUE_ID
plane issues search "login bug"
Comments
plane comments list -p PROJECT_ID -i ISSUE_ID
plane comments list -p PROJECT_ID -i ISSUE_ID --all
plane comments add -p PROJECT_ID -i ISSUE_ID "Looks good, merging now"
Cycles (Sprints)
plane cycles list -p PROJECT_ID
plane cycles get -p PROJECT_ID CYCLE_ID
plane cycles create -p PROJECT_ID --name "Sprint 1" --start 2026-01-27 --end 2026-02-10
Modules
plane modules list -p PROJECT_ID
plane modules get -p PROJECT_ID MODULE_ID
plane modules create -p PROJECT_ID --name "Auth Module" --description "Authentication features"
States & Labels
plane states -p PROJECT_ID
plane labels -p PROJECT_ID
Output Formats
Default output is a formatted table. Add -f json for raw JSON:
plane projects list -f json
plane issues list -p PROJECT_ID -f json
Typical Workflow
plane projects list — find your project ID
plane states -p PROJECT_ID — see available states
plane members — find member IDs for assignment
plane issues create -p PROJECT_ID --name "Task" --priority high --assignee USER_ID
plane comments add -p PROJECT_ID -i ISSUE_ID "Started working on this"