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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ Taskplane turns your coding project into an AI-managed task board. You define ta

## Install

Taskplane is a [pi package](https://github.com/badlogic/pi-mono). You need [Node.js](https://nodejs.org/) ≥ 20 and [pi](https://github.com/badlogic/pi-mono) installed first.
Taskplane is a [pi package](https://github.com/badlogic/pi-mono). You need [Node.js](https://nodejs.org/) ≥ 22 and [pi](https://github.com/badlogic/pi-mono) installed first.

### Prerequisites

| Dependency | Required | Notes |
|-----------|----------|-------|
| [Node.js](https://nodejs.org/) ≥ 20 | Yes | Runtime |
| [Node.js](https://nodejs.org/) ≥ 22 | Yes | Runtime |
| [pi](https://github.com/badlogic/pi-mono) | Yes | Agent framework |
| [Git](https://git-scm.com/) | Yes | Version control, worktrees |
| **tmux** | **Strongly recommended** | Required for `/orch` parallel execution |
Expand Down
4 changes: 2 additions & 2 deletions bin/taskplane.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1249,10 +1249,10 @@ function cmdDoctor() {
const checks = [
{ label: "pi installed", check: () => commandExists("pi"), detail: () => getVersion("pi") },
{
label: "Node.js >= 20.0.0",
label: "Node.js >= 22.0.0",
check: () => {
const v = process.versions.node;
return parseInt(v.split(".")[0]) >= 20;
return parseInt(v.split(".")[0]) >= 22;
},
detail: () => `v${process.versions.node}`,
},
Expand Down
2 changes: 1 addition & 1 deletion docs/how-to/troubleshoot-common-issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ pi --version
node --version
```

Taskplane requires Node 20+ and compatible pi runtime.
Taskplane requires Node 22+ and compatible pi runtime.

---

Expand Down
2 changes: 1 addition & 1 deletion docs/maintainers/development-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This guide is for contributors working on Taskplane itself.

## Prerequisites

- Node.js 20+
- Node.js 22+
- Git
- pi
- Optional: `just` for convenience commands
Expand Down
2 changes: 1 addition & 1 deletion docs/maintainers/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Best practice for Taskplane is to keep them aligned:

- npm publish access for `taskplane`
- clean git working tree
- Node.js 20+
- Node.js 22+

---

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/install-from-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Use this path when developing Taskplane itself or testing local changes before p

## Prerequisites

- Node.js 20+
- Node.js 22+
- Git
- pi

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This tutorial gets Taskplane running in a project and verifies that `/task` and

## Prerequisites

- Node.js **20+**
- Node.js **22+**
- [pi](https://github.com/badlogic/pi-mono)
- Git
- **tmux** (strongly recommended — required for `/orch` parallel execution)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"type": "module",
"engines": {
"node": ">=20.0.0"
"node": ">=22.0.0"
},
"files": [
"bin/",
Expand Down