Skip to content

Commit 04e1b27

Browse files
marcusclaude
andcommitted
feat: add Pi/OpenClaw adapter to docs site, release v0.71.0 (td-f25d16)
Add Pi AI agent to supported agents across the website homepage, conversations plugin docs, and intro page. Update td to v0.33.0. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2d8bd77 commit 04e1b27

6 files changed

Lines changed: 43 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
All notable changes to sidecar are documented here.
44

5+
## [v0.71.0] - 2026-02-09
6+
7+
### Features
8+
9+
- **Pi Adapter**: View Pi AI agent sessions (OpenClaw) in the conversations plugin, with session classification (interactive, cron, system), source channel detection, and CWD-based project matching
10+
11+
### Documentation
12+
13+
- Add Pi to supported agents on website homepage, conversations plugin docs, and intro page
14+
15+
### Dependencies
16+
17+
- Update td to v0.33.0
18+
519
## [v0.70.0] - 2026-02-08
620

721
### Features

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
github.com/charmbracelet/x/ansi v0.11.3
1515
github.com/charmbracelet/x/cellbuf v0.0.14
1616
github.com/fsnotify/fsnotify v1.9.0
17-
github.com/marcus/td v0.32.0
17+
github.com/marcus/td v0.33.0
1818
github.com/mattn/go-runewidth v0.0.19
1919
github.com/mattn/go-sqlite3 v1.14.33
2020
golang.org/x/term v0.39.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ github.com/lucasb-eyer/go-colorful v1.3.0 h1:2/yBRLdWBZKrf7gB40FoiKfAWYQ0lqNcbuQ
8383
github.com/lucasb-eyer/go-colorful v1.3.0/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=
8484
github.com/makeworld-the-better-one/dither/v2 v2.4.0 h1:Az/dYXiTcwcRSe59Hzw4RI1rSnAZns+1msaCXetrMFE=
8585
github.com/makeworld-the-better-one/dither/v2 v2.4.0/go.mod h1:VBtN8DXO7SNtyGmLiGA7IsFeKrBkQPze1/iAeM95arc=
86-
github.com/marcus/td v0.32.0 h1:YrwfLAfXrSRPTSotvw3zNBf/5xLf0URES57qXzVcIIw=
87-
github.com/marcus/td v0.32.0/go.mod h1:3YL0Rd5cpQ1U4AAsTv8XkD8j5mXwnauEAe2EQQD+vx0=
86+
github.com/marcus/td v0.33.0 h1:Gz9xVIrJ3Bfqeu93TusyBhVZXJzdQW1vNDhHYwhKvVg=
87+
github.com/marcus/td v0.33.0/go.mod h1:3YL0Rd5cpQ1U4AAsTv8XkD8j5mXwnauEAe2EQQD+vx0=
8888
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
8989
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
9090
github.com/mattn/go-localereader v0.0.1 h1:ygSAOl7ZXTx4RdPYinUpg6W99U8jWvWi9Ye2JC/oIi4=

website/docs/conversations-plugin.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ The Conversations plugin automatically detects and displays sessions from:
2222
| Gemini CLI || Google's CLI coding agent |
2323
| Kiro | κ | Amazon's AI coding assistant |
2424
| OpenCode || Open-source coding agent |
25+
| Pi | 🐾 | Pi AI agent (OpenClaw) |
2526
| Warp | » | Warp terminal AI |
2627

2728
Sessions from all detected agents appear in a unified list, with icons indicating the source.

website/docs/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Create isolated branches, launch agents with custom prompts, and watch their pro
138138

139139
**Browse session history from all your AI agents with search and token tracking.**
140140

141-
Unified view of sessions across Claude Code, Cursor, Gemini CLI, OpenCode, Codex, and Warp. Search by message content, expand to see full conversations, and track token usage per session. Useful for reviewing what your agents accomplished or resuming previous work.
141+
Unified view of sessions across Claude Code, Cursor, Gemini CLI, OpenCode, Codex, Pi, and Warp. Search by message content, expand to see full conversations, and track token usage per session. Useful for reviewing what your agents accomplished or resuming previous work.
142142

143143
![Conversations](/img/sidecar-conversations.png)
144144

website/src/pages/index.js

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,10 @@ function ConversationsPane() {
290290
<span className="sc-bullet sc-bulletGreen" />
291291
<span>docs-refactor <span className="sc-lineBlue" style={{ fontSize: 9 }}>Kiro</span></span>
292292
</div>
293+
<div className="sc-item">
294+
<span className="sc-bullet sc-bulletPink" />
295+
<span>deploy-fix <span className="sc-lineGreen" style={{ fontSize: 9 }}>Pi</span></span>
296+
</div>
293297
</div>
294298
</div>
295299
<div className="sc-paneMain">
@@ -1016,7 +1020,7 @@ export default function Home() {
10161020
isHighlighted={activeTab === 'conversations'}
10171021
onClick={() => handleCardClick('conversations')}
10181022
>
1019-
All your agents in one timeline—Claude, Cursor, Gemini, Amp, Kiro, and more. Search across sessions, pick up where any agent left off.
1023+
All your agents in one timeline—Claude, Cursor, Gemini, Amp, Kiro, Pi, and more. Search across sessions, pick up where any agent left off.
10201024
</FeatureCard>
10211025

10221026
<FeatureCard
@@ -1096,7 +1100,7 @@ export default function Home() {
10961100
MockupComponent={ConversationsMockup}
10971101
features={[
10981102
'Chronological view across all coding agents',
1099-
'Claude, Cursor, Gemini, Codex, Amp, Kiro, Opencode, and Warp in one list',
1103+
'Claude, Cursor, Gemini, Codex, Amp, Kiro, Pi, Opencode, and Warp in one list',
11001104
'Search across all adapters at once',
11011105
'Filter by agent, date, or content',
11021106
'Expand messages and view tool calls',
@@ -1163,7 +1167,7 @@ export default function Home() {
11631167
icon="layers"
11641168
title="Multi-Agent Support"
11651169
color="orange"
1166-
description="Works with Claude Code, Codex, Gemini CLI, Opencode, Cursor, Amp Code, Kiro, and Warp."
1170+
description="Works with Claude Code, Codex, Gemini CLI, Opencode, Cursor, Amp Code, Kiro, Pi, and Warp."
11671171
/>
11681172
<FeatureListItem
11691173
icon="git-branch"
@@ -1334,6 +1338,23 @@ export default function Home() {
13341338
</div>
13351339
</div>
13361340

1341+
<div className="sc-agentCard">
1342+
<div className="sc-agentLogo">
1343+
<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
1344+
<rect width="32" height="32" rx="6" fill="#2D1B69" />
1345+
<circle cx="12" cy="14" r="2.5" fill="#A78BFA" />
1346+
<circle cx="20" cy="14" r="2.5" fill="#A78BFA" />
1347+
<path d="M10 20c0 0 2 3 6 3s6-3 6-3" stroke="#A78BFA" strokeWidth="2" strokeLinecap="round" />
1348+
<circle cx="12" cy="14" r="1" fill="white" />
1349+
<circle cx="20" cy="14" r="1" fill="white" />
1350+
</svg>
1351+
</div>
1352+
<div className="sc-agentInfo">
1353+
<h3 className="sc-agentName">Pi</h3>
1354+
<p className="sc-agentDesc">Pi AI agent (OpenClaw)</p>
1355+
</div>
1356+
</div>
1357+
13371358
<div className="sc-agentCard">
13381359
<div className="sc-agentLogo">
13391360
<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">

0 commit comments

Comments
 (0)