poe-code 3.0.116-beta.1 → 3.0.117

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.
Files changed (54) hide show
  1. package/README.md +23 -13
  2. package/dist/cli/command-not-found.js +1 -3
  3. package/dist/cli/command-not-found.js.map +1 -1
  4. package/dist/cli/commands/auth.js +25 -34
  5. package/dist/cli/commands/auth.js.map +1 -1
  6. package/dist/cli/commands/experiment.d.ts +3 -0
  7. package/dist/cli/commands/experiment.js +567 -0
  8. package/dist/cli/commands/experiment.js.map +1 -0
  9. package/dist/cli/commands/generate.js.map +1 -1
  10. package/dist/cli/commands/models.js +1 -1
  11. package/dist/cli/commands/models.js.map +1 -1
  12. package/dist/cli/commands/pipeline.js +6 -4
  13. package/dist/cli/commands/pipeline.js.map +1 -1
  14. package/dist/cli/commands/ralph.js +12 -6
  15. package/dist/cli/commands/ralph.js.map +1 -1
  16. package/dist/cli/commands/usage.d.ts +24 -0
  17. package/dist/cli/commands/usage.js +26 -4
  18. package/dist/cli/commands/usage.js.map +1 -1
  19. package/dist/cli/commands/version.js +1 -1
  20. package/dist/cli/commands/version.js.map +1 -1
  21. package/dist/cli/error-logger.js +3 -1
  22. package/dist/cli/error-logger.js.map +1 -1
  23. package/dist/cli/oauth-login.js +4 -2
  24. package/dist/cli/oauth-login.js.map +1 -1
  25. package/dist/cli/program.js +26 -11
  26. package/dist/cli/program.js.map +1 -1
  27. package/dist/cli/service-registry.js +3 -2
  28. package/dist/cli/service-registry.js.map +1 -1
  29. package/dist/index.d.ts +2 -0
  30. package/dist/index.js +11560 -30168
  31. package/dist/index.js.map +4 -4
  32. package/dist/providers/claude-code.js +24 -24
  33. package/dist/providers/claude-code.js.map +1 -1
  34. package/dist/providers/codex.js +28 -28
  35. package/dist/providers/codex.js.map +2 -2
  36. package/dist/providers/kimi.js +24 -24
  37. package/dist/providers/kimi.js.map +1 -1
  38. package/dist/providers/opencode.js +28 -28
  39. package/dist/providers/opencode.js.map +2 -2
  40. package/dist/providers/poe-agent.js +10 -2
  41. package/dist/providers/poe-agent.js.map +2 -2
  42. package/dist/sdk/experiment.d.ts +10 -0
  43. package/dist/sdk/experiment.js +59 -0
  44. package/dist/sdk/experiment.js.map +1 -0
  45. package/dist/sdk/pipeline.js +1 -1
  46. package/dist/sdk/pipeline.js.map +1 -1
  47. package/dist/sdk/spawn-core.js +3 -2
  48. package/dist/sdk/spawn-core.js.map +1 -1
  49. package/dist/tools/label-generator.js +1 -1
  50. package/dist/utils/command-checks.d.ts +1 -1
  51. package/dist/utils/command-checks.js +1 -1
  52. package/dist/utils/execution-context.js +5 -5
  53. package/dist/utils/execution-context.js.map +1 -1
  54. package/package.json +45 -41
@@ -457,36 +457,36 @@ import { spawn as spawnChildProcess2 } from "node:child_process";
457
457
  // packages/design-system/src/tokens/colors.ts
458
458
  import chalk from "chalk";
459
459
  var dark = {
460
- header: (text3) => chalk.magentaBright.bold(text3),
461
- divider: (text3) => chalk.dim(text3),
462
- prompt: (text3) => chalk.cyan(text3),
463
- number: (text3) => chalk.cyanBright(text3),
464
- intro: (text3) => chalk.bgMagenta.white(` Poe - ${text3} `),
460
+ header: (text4) => chalk.magentaBright.bold(text4),
461
+ divider: (text4) => chalk.dim(text4),
462
+ prompt: (text4) => chalk.cyan(text4),
463
+ number: (text4) => chalk.cyanBright(text4),
464
+ intro: (text4) => chalk.bgMagenta.white(` Poe - ${text4} `),
465
465
  resolvedSymbol: chalk.magenta("\u25C7"),
466
466
  errorSymbol: chalk.red("\u25A0"),
467
- accent: (text3) => chalk.cyan(text3),
468
- muted: (text3) => chalk.dim(text3),
469
- success: (text3) => chalk.green(text3),
470
- warning: (text3) => chalk.yellow(text3),
471
- error: (text3) => chalk.red(text3),
472
- info: (text3) => chalk.magenta(text3),
473
- badge: (text3) => chalk.bgYellow.black(` ${text3} `)
467
+ accent: (text4) => chalk.cyan(text4),
468
+ muted: (text4) => chalk.dim(text4),
469
+ success: (text4) => chalk.green(text4),
470
+ warning: (text4) => chalk.yellow(text4),
471
+ error: (text4) => chalk.red(text4),
472
+ info: (text4) => chalk.magenta(text4),
473
+ badge: (text4) => chalk.bgYellow.black(` ${text4} `)
474
474
  };
475
475
  var light = {
476
- header: (text3) => chalk.hex("#a200ff").bold(text3),
477
- divider: (text3) => chalk.hex("#666666")(text3),
478
- prompt: (text3) => chalk.hex("#006699").bold(text3),
479
- number: (text3) => chalk.hex("#0077cc").bold(text3),
480
- intro: (text3) => chalk.bgHex("#a200ff").white(` Poe - ${text3} `),
476
+ header: (text4) => chalk.hex("#a200ff").bold(text4),
477
+ divider: (text4) => chalk.hex("#666666")(text4),
478
+ prompt: (text4) => chalk.hex("#006699").bold(text4),
479
+ number: (text4) => chalk.hex("#0077cc").bold(text4),
480
+ intro: (text4) => chalk.bgHex("#a200ff").white(` Poe - ${text4} `),
481
481
  resolvedSymbol: chalk.hex("#a200ff")("\u25C7"),
482
482
  errorSymbol: chalk.hex("#cc0000")("\u25A0"),
483
- accent: (text3) => chalk.hex("#006699").bold(text3),
484
- muted: (text3) => chalk.hex("#666666")(text3),
485
- success: (text3) => chalk.hex("#008800")(text3),
486
- warning: (text3) => chalk.hex("#cc6600")(text3),
487
- error: (text3) => chalk.hex("#cc0000")(text3),
488
- info: (text3) => chalk.hex("#a200ff")(text3),
489
- badge: (text3) => chalk.bgHex("#cc6600").white(` ${text3} `)
483
+ accent: (text4) => chalk.hex("#006699").bold(text4),
484
+ muted: (text4) => chalk.hex("#666666")(text4),
485
+ success: (text4) => chalk.hex("#008800")(text4),
486
+ warning: (text4) => chalk.hex("#cc6600")(text4),
487
+ error: (text4) => chalk.hex("#cc0000")(text4),
488
+ info: (text4) => chalk.hex("#a200ff")(text4),
489
+ badge: (text4) => chalk.bgHex("#cc6600").white(` ${text4} `)
490
490
  };
491
491
 
492
492
  // packages/design-system/src/tokens/typography.ts