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 +2 -1
- package/dist/browser-profile.js +4 -1
- package/package.json +1 -1
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
|
-
<
|
|
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.)
|
package/dist/browser-profile.js
CHANGED
|
@@ -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