pikiclaw 0.2.67 → 0.2.68

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -22,7 +22,7 @@ npx pikiclaw@latest
22
22
 
23
23
  > Real task: ask pikiclaw to gather and summarize today's AI news — the agent reads, writes, and sends results back through Telegram, all from your phone.
24
24
 
25
- <video src="docs/promo-demo.mp4" width="700" controls muted></video>
25
+ <img src="docs/promo-demo.gif" alt="Demo" width="700">
26
26
 
27
27
  > Basic operations: send a message, watch the agent stream, receive files back.
28
28
 
@@ -222,6 +222,7 @@ Relevant environment variables:
222
222
 
223
223
  ## Roadmap
224
224
 
225
+ - **ACP (Agent Client Protocol) adoption** — unified driver for any ACP-compatible agent, replacing per-agent CLI output parsing. See [ACP Migration Plan](docs/acp-migration.md)
225
226
  - Expand session-scoped MCP bridge into a more complete top-level tool layer
226
227
  - Improve GUI automation, especially browser + desktop tool coordination
227
228
  - More IM channels (WhatsApp, etc.)
@@ -121,14 +121,17 @@ export function ensureManagedBrowserProfileDir() {
121
121
  return profileDir;
122
122
  }
123
123
  export function getManagedBrowserMcpArgs(profileDir = getManagedBrowserProfileDir(), options = {}) {
124
+ const outputDir = path.dirname(profileDir);
124
125
  if (options.cdpEndpoint) {
125
- return ['--cdp-endpoint', options.cdpEndpoint];
126
+ return ['--cdp-endpoint', options.cdpEndpoint, '--output-dir', outputDir];
126
127
  }
127
128
  return [
128
129
  ...PLAYWRIGHT_MCP_BROWSER_ARGS,
129
130
  ...(options.headless ? ['--headless'] : []),
130
131
  '--user-data-dir',
131
132
  profileDir,
133
+ '--output-dir',
134
+ outputDir,
132
135
  ];
133
136
  }
134
137
  export function resolveManagedBrowserMcpCliPath() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikiclaw",
3
- "version": "0.2.67",
3
+ "version": "0.2.68",
4
4
  "description": "Put the world's smartest AI agents in your pocket. Command local Claude & Gemini via IM. | 让最好用的 IM 变成你电脑上的顶级 Agent 控制台",
5
5
  "type": "module",
6
6
  "bin": {