plane
Manage Plane.so projects and work items using the `plane`.
Installation
npx clawhub@latest install planeView the full skill documentation and source below.
Documentation
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
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 the slug is my-team).
## Commands
### Current User
__CODE_BLOCK_2__
### Workspace Members
__CODE_BLOCK_3__
### Projects
__CODE_BLOCK_4__
### Work Items (Issues)
__CODE_BLOCK_5__
### Comments
__CODE_BLOCK_6__
### Cycles (Sprints)
__CODE_BLOCK_7__
### Modules
__CODE_BLOCK_8__
### States & Labels
__CODE_BLOCK_9__
## Output Formats
Default output is a formatted table. Add -f json for raw JSON:
__CODE_BLOCK_10__
## Typical Workflow
1. plane projects list — find your project ID
2. plane states -p PROJECT_ID — see available states
3. plane members — find member IDs for assignment
4. plane issues create -p PROJECT_ID --name "Task" --priority high --assignee USER_ID
5. plane comments add -p PROJECT_ID -i ISSUE_ID "Started working on this"`