@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 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
- provider: 'claude', // 'claude' | 'codex'
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 Codex CLI installed for AI integration
214
+ - Claude CLI, Codex CLI, or GitHub Copilot CLI installed for AI integration
214
215
 
215
216
  ## License
216
217