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.
- package/README.md +23 -13
- package/dist/cli/command-not-found.js +1 -3
- package/dist/cli/command-not-found.js.map +1 -1
- package/dist/cli/commands/auth.js +25 -34
- package/dist/cli/commands/auth.js.map +1 -1
- package/dist/cli/commands/experiment.d.ts +3 -0
- package/dist/cli/commands/experiment.js +567 -0
- package/dist/cli/commands/experiment.js.map +1 -0
- package/dist/cli/commands/generate.js.map +1 -1
- package/dist/cli/commands/models.js +1 -1
- package/dist/cli/commands/models.js.map +1 -1
- package/dist/cli/commands/pipeline.js +6 -4
- package/dist/cli/commands/pipeline.js.map +1 -1
- package/dist/cli/commands/ralph.js +12 -6
- package/dist/cli/commands/ralph.js.map +1 -1
- package/dist/cli/commands/usage.d.ts +24 -0
- package/dist/cli/commands/usage.js +26 -4
- package/dist/cli/commands/usage.js.map +1 -1
- package/dist/cli/commands/version.js +1 -1
- package/dist/cli/commands/version.js.map +1 -1
- package/dist/cli/error-logger.js +3 -1
- package/dist/cli/error-logger.js.map +1 -1
- package/dist/cli/oauth-login.js +4 -2
- package/dist/cli/oauth-login.js.map +1 -1
- package/dist/cli/program.js +26 -11
- package/dist/cli/program.js.map +1 -1
- package/dist/cli/service-registry.js +3 -2
- package/dist/cli/service-registry.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +11560 -30168
- package/dist/index.js.map +4 -4
- package/dist/providers/claude-code.js +24 -24
- package/dist/providers/claude-code.js.map +1 -1
- package/dist/providers/codex.js +28 -28
- package/dist/providers/codex.js.map +2 -2
- package/dist/providers/kimi.js +24 -24
- package/dist/providers/kimi.js.map +1 -1
- package/dist/providers/opencode.js +28 -28
- package/dist/providers/opencode.js.map +2 -2
- package/dist/providers/poe-agent.js +10 -2
- package/dist/providers/poe-agent.js.map +2 -2
- package/dist/sdk/experiment.d.ts +10 -0
- package/dist/sdk/experiment.js +59 -0
- package/dist/sdk/experiment.js.map +1 -0
- package/dist/sdk/pipeline.js +1 -1
- package/dist/sdk/pipeline.js.map +1 -1
- package/dist/sdk/spawn-core.js +3 -2
- package/dist/sdk/spawn-core.js.map +1 -1
- package/dist/tools/label-generator.js +1 -1
- package/dist/utils/command-checks.d.ts +1 -1
- package/dist/utils/command-checks.js +1 -1
- package/dist/utils/execution-context.js +5 -5
- package/dist/utils/execution-context.js.map +1 -1
- package/package.json +45 -41
|
@@ -492,36 +492,36 @@ import { spawn as spawnChildProcess2 } from "node:child_process";
|
|
|
492
492
|
// packages/design-system/src/tokens/colors.ts
|
|
493
493
|
import chalk from "chalk";
|
|
494
494
|
var dark = {
|
|
495
|
-
header: (
|
|
496
|
-
divider: (
|
|
497
|
-
prompt: (
|
|
498
|
-
number: (
|
|
499
|
-
intro: (
|
|
495
|
+
header: (text4) => chalk.magentaBright.bold(text4),
|
|
496
|
+
divider: (text4) => chalk.dim(text4),
|
|
497
|
+
prompt: (text4) => chalk.cyan(text4),
|
|
498
|
+
number: (text4) => chalk.cyanBright(text4),
|
|
499
|
+
intro: (text4) => chalk.bgMagenta.white(` Poe - ${text4} `),
|
|
500
500
|
resolvedSymbol: chalk.magenta("\u25C7"),
|
|
501
501
|
errorSymbol: chalk.red("\u25A0"),
|
|
502
|
-
accent: (
|
|
503
|
-
muted: (
|
|
504
|
-
success: (
|
|
505
|
-
warning: (
|
|
506
|
-
error: (
|
|
507
|
-
info: (
|
|
508
|
-
badge: (
|
|
502
|
+
accent: (text4) => chalk.cyan(text4),
|
|
503
|
+
muted: (text4) => chalk.dim(text4),
|
|
504
|
+
success: (text4) => chalk.green(text4),
|
|
505
|
+
warning: (text4) => chalk.yellow(text4),
|
|
506
|
+
error: (text4) => chalk.red(text4),
|
|
507
|
+
info: (text4) => chalk.magenta(text4),
|
|
508
|
+
badge: (text4) => chalk.bgYellow.black(` ${text4} `)
|
|
509
509
|
};
|
|
510
510
|
var light = {
|
|
511
|
-
header: (
|
|
512
|
-
divider: (
|
|
513
|
-
prompt: (
|
|
514
|
-
number: (
|
|
515
|
-
intro: (
|
|
511
|
+
header: (text4) => chalk.hex("#a200ff").bold(text4),
|
|
512
|
+
divider: (text4) => chalk.hex("#666666")(text4),
|
|
513
|
+
prompt: (text4) => chalk.hex("#006699").bold(text4),
|
|
514
|
+
number: (text4) => chalk.hex("#0077cc").bold(text4),
|
|
515
|
+
intro: (text4) => chalk.bgHex("#a200ff").white(` Poe - ${text4} `),
|
|
516
516
|
resolvedSymbol: chalk.hex("#a200ff")("\u25C7"),
|
|
517
517
|
errorSymbol: chalk.hex("#cc0000")("\u25A0"),
|
|
518
|
-
accent: (
|
|
519
|
-
muted: (
|
|
520
|
-
success: (
|
|
521
|
-
warning: (
|
|
522
|
-
error: (
|
|
523
|
-
info: (
|
|
524
|
-
badge: (
|
|
518
|
+
accent: (text4) => chalk.hex("#006699").bold(text4),
|
|
519
|
+
muted: (text4) => chalk.hex("#666666")(text4),
|
|
520
|
+
success: (text4) => chalk.hex("#008800")(text4),
|
|
521
|
+
warning: (text4) => chalk.hex("#cc6600")(text4),
|
|
522
|
+
error: (text4) => chalk.hex("#cc0000")(text4),
|
|
523
|
+
info: (text4) => chalk.hex("#a200ff")(text4),
|
|
524
|
+
badge: (text4) => chalk.bgHex("#cc6600").white(` ${text4} `)
|
|
525
525
|
};
|
|
526
526
|
|
|
527
527
|
// packages/design-system/src/tokens/typography.ts
|
|
@@ -1888,12 +1888,12 @@ var OPEN_CODE_INSTALL_DEFINITION = {
|
|
|
1888
1888
|
),
|
|
1889
1889
|
steps: [
|
|
1890
1890
|
{
|
|
1891
|
-
id: "install-opencode-cli-
|
|
1892
|
-
command: "
|
|
1893
|
-
args: ["install", "
|
|
1891
|
+
id: "install-opencode-cli-npm",
|
|
1892
|
+
command: "npm",
|
|
1893
|
+
args: ["install", "-g", "opencode-ai"]
|
|
1894
1894
|
}
|
|
1895
1895
|
],
|
|
1896
|
-
successMessage: "Installed OpenCode CLI via
|
|
1896
|
+
successMessage: "Installed OpenCode CLI via npm."
|
|
1897
1897
|
};
|
|
1898
1898
|
function getModelArgs(model) {
|
|
1899
1899
|
return ["--model", providerModel(model)];
|