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
2 changes: 1 addition & 1 deletion apps/marketing/src/content/docs/commands/code-review.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Plannotator supports multiple AI providers. Providers are auto-detected based on

- **Claude** requires the `claude` CLI ([Claude Code](https://docs.anthropic.com/en/docs/claude-code))
- **Codex** requires the `codex` CLI ([OpenAI Codex](https://github.com/openai/codex))
- **Pi** requires the `pi` CLI ([Pi](https://github.com/mariozechner/pi-coding-agent))
- **Pi** requires the `pi` CLI ([Pi](https://github.com/earendil-works/pi))
- **OpenCode** requires the `opencode` CLI ([OpenCode](https://opencode.ai))

All providers can be available simultaneously. Plannotator does not manage API keys, so you must be authenticated with each CLI independently (`claude` uses `~/.claude/` credentials, `codex` uses `OPENAI_API_KEY`, `pi` and `opencode` use their own local configuration).
Expand Down
2 changes: 1 addition & 1 deletion apps/pi-extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,4 +226,4 @@ State persists across session restarts via Pi's `appendEntry` API.

## Requirements

- [Pi](https://github.com/mariozechner/pi) >= 0.53.0
- [Pi](https://github.com/earendil-works/pi) >= 0.74.0
2 changes: 1 addition & 1 deletion apps/pi-extension/assistant-message.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { ExtensionContext } from "@mariozechner/pi-coding-agent";
import type { ExtensionContext } from "@earendil-works/pi-coding-agent";

type AssistantTextBlock = { type?: string; text?: string };

Expand Down
2 changes: 1 addition & 1 deletion apps/pi-extension/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { existsSync, readFileSync } from "node:fs";
import { dirname, join } from "node:path";
import { fileURLToPath } from "node:url";
import { homedir } from "node:os";
import type { ThinkingLevel } from "@mariozechner/pi-agent-core";
import type { ThinkingLevel } from "@earendil-works/pi-agent-core";

export type PhaseName = "planning" | "executing" | "reviewing";
export type RuntimePhase = PhaseName | "idle";
Expand Down
2 changes: 1 addition & 1 deletion apps/pi-extension/current-pi-session.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { ExtensionAPI, ExtensionContext } from "@mariozechner/pi-coding-agent";
import type { ExtensionAPI, ExtensionContext } from "@earendil-works/pi-coding-agent";

type SendUserMessageContent = Parameters<ExtensionAPI["sendUserMessage"]>[0];
type SendUserMessageOptions = Parameters<ExtensionAPI["sendUserMessage"]>[1];
Expand Down
8 changes: 4 additions & 4 deletions apps/pi-extension/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@

import { existsSync, readFileSync, statSync } from "node:fs";
import { basename, resolve } from "node:path";
import type { ThinkingLevel } from "@mariozechner/pi-agent-core";
import { Type } from "@mariozechner/pi-ai";
import type { ThinkingLevel } from "@earendil-works/pi-agent-core";
import { Type } from "@earendil-works/pi-ai";
import type {
ExtensionAPI,
ExtensionContext,
} from "@mariozechner/pi-coding-agent";
import { Key } from "@mariozechner/pi-tui";
} from "@earendil-works/pi-coding-agent";
import { Key } from "@earendil-works/pi-tui";
import { buildPromptVariables, formatTodoList, loadPlannotatorConfig, renderTemplate, resolvePhaseProfile } from "./config.js";
import {
type ChecklistItem,
Expand Down
10 changes: 5 additions & 5 deletions apps/pi-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@
"@joplin/turndown-plugin-gfm": "^1.0.64"
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": ">=0.53.0"
"@earendil-works/pi-coding-agent": ">=0.74.0"
},
"devDependencies": {
"@mariozechner/pi-coding-agent": ">=0.53.0",
"@mariozechner/pi-agent-core": ">=0.53.0",
"@mariozechner/pi-ai": ">=0.53.0",
"@mariozechner/pi-tui": ">=0.53.0"
"@earendil-works/pi-coding-agent": ">=0.74.0",
"@earendil-works/pi-agent-core": ">=0.74.0",
"@earendil-works/pi-ai": ">=0.74.0",
"@earendil-works/pi-tui": ">=0.74.0"
}
}
2 changes: 1 addition & 1 deletion apps/pi-extension/plannotator-browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { tmpdir } from "node:os";
import { spawnSync } from "node:child_process";
import { createWorktreePool, type WorktreePool } from "./generated/worktree-pool.js";
import { fileURLToPath } from "node:url";
import type { ExtensionContext } from "@mariozechner/pi-coding-agent";
import type { ExtensionContext } from "@earendil-works/pi-coding-agent";
import {
prepareLocalReviewDiff,
reviewRuntime,
Expand Down
2 changes: 1 addition & 1 deletion apps/pi-extension/plannotator-events.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
import { homedir } from "node:os";
import { dirname, join } from "node:path";
import type { ExtensionAPI, ExtensionContext } from "@mariozechner/pi-coding-agent";
import type { ExtensionAPI, ExtensionContext } from "@earendil-works/pi-coding-agent";
import type { DiffType, VcsSelection } from "./server.js";
import {
getLastAssistantMessageText,
Expand Down
260 changes: 139 additions & 121 deletions bun.lock

Large diffs are not rendered by default.

Loading