@popmelt.com/core 0.6.7 → 0.6.9
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 +3 -2
- package/dist/bridge-entry.mjs +46 -42
- package/dist/canvas.mjs +1 -1
- package/dist/cli.mjs +43 -39
- package/dist/index.mjs +22 -22
- package/dist/plugin-astro.mjs +1 -1
- package/dist/plugin-vite.mjs +1 -1
- package/dist/server-55K3KMLN.mjs +225 -0
- package/dist/server.d.mts +2 -1
- package/dist/server.mjs +45 -41
- package/package.json +1 -1
- package/dist/server-E44GIKD2.mjs +0 -221
package/README.md
CHANGED
|
@@ -191,7 +191,8 @@ await startPopmelt({
|
|
|
191
191
|
port: 1111, // bridge server port (default: 1111, auto-selects 1111–1119 if occupied)
|
|
192
192
|
projectRoot: '.', // working directory for your AI
|
|
193
193
|
claudePath: 'claude', // path to Claude CLI binary
|
|
194
|
-
|
|
194
|
+
copilotPath: 'copilot', // path to GitHub Copilot CLI binary
|
|
195
|
+
provider: 'claude', // 'claude' | 'codex' | 'copilot'
|
|
195
196
|
maxTurns: 40, // max turns per job
|
|
196
197
|
maxBudgetUsd: 1.0, // spending cap per job
|
|
197
198
|
timeoutMs: undefined, // optional job timeout
|
|
@@ -210,7 +211,7 @@ const { isEnabled } = usePopmelt();
|
|
|
210
211
|
|
|
211
212
|
- React 18+
|
|
212
213
|
- Node.js 18+ (server)
|
|
213
|
-
- Claude CLI or
|
|
214
|
+
- Claude CLI, Codex CLI, or GitHub Copilot CLI installed for AI integration
|
|
214
215
|
|
|
215
216
|
## License
|
|
216
217
|
|