poe-code 3.0.219 → 3.0.221

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 (56) hide show
  1. package/README.md +8 -0
  2. package/dist/cli/commands/harness.js +107 -15
  3. package/dist/cli/commands/harness.js.map +1 -1
  4. package/dist/cli/commands/models.js +1 -1
  5. package/dist/index.js +17021 -15752
  6. package/dist/index.js.map +4 -4
  7. package/dist/providers/claude-code.js +1032 -698
  8. package/dist/providers/claude-code.js.map +4 -4
  9. package/dist/providers/codex.js +1032 -698
  10. package/dist/providers/codex.js.map +4 -4
  11. package/dist/providers/goose.js +3027 -2693
  12. package/dist/providers/goose.js.map +4 -4
  13. package/dist/providers/kimi.js +1032 -698
  14. package/dist/providers/kimi.js.map +4 -4
  15. package/dist/providers/opencode.js +1027 -693
  16. package/dist/providers/opencode.js.map +4 -4
  17. package/dist/providers/poe-agent.js +21329 -20925
  18. package/dist/providers/poe-agent.js.map +4 -4
  19. package/package.json +4 -2
  20. package/packages/config-mutations/dist/execution/apply-mutation.js +3 -3
  21. package/packages/config-mutations/dist/mutations/template-mutation.d.ts +3 -3
  22. package/packages/config-mutations/dist/template/render.d.ts +0 -1
  23. package/packages/config-mutations/dist/template/render.js +2 -22
  24. package/packages/design-system/dist/acp/components.js +15 -13
  25. package/packages/design-system/dist/components/color.d.ts +31 -0
  26. package/packages/design-system/dist/components/color.js +101 -0
  27. package/packages/design-system/dist/components/index.d.ts +4 -0
  28. package/packages/design-system/dist/components/index.js +2 -0
  29. package/packages/design-system/dist/components/logger.js +2 -2
  30. package/packages/design-system/dist/components/symbols.js +3 -3
  31. package/packages/design-system/dist/components/table.js +191 -40
  32. package/packages/design-system/dist/components/template.d.ts +6 -0
  33. package/packages/design-system/dist/components/template.js +271 -0
  34. package/packages/design-system/dist/components/text.js +3 -3
  35. package/packages/design-system/dist/dashboard/buffer.js +12 -12
  36. package/packages/design-system/dist/index.d.ts +4 -0
  37. package/packages/design-system/dist/index.js +2 -0
  38. package/packages/design-system/dist/internal/color-support.d.ts +9 -0
  39. package/packages/design-system/dist/internal/color-support.js +12 -0
  40. package/packages/design-system/dist/prompts/index.d.ts +1 -1
  41. package/packages/design-system/dist/prompts/index.js +5 -4
  42. package/packages/design-system/dist/prompts/primitives/cancel.js +2 -2
  43. package/packages/design-system/dist/prompts/primitives/intro.js +2 -2
  44. package/packages/design-system/dist/prompts/primitives/log.js +4 -4
  45. package/packages/design-system/dist/prompts/primitives/note.js +5 -5
  46. package/packages/design-system/dist/prompts/primitives/outro.js +2 -2
  47. package/packages/design-system/dist/prompts/primitives/spinner.js +3 -3
  48. package/packages/design-system/dist/static/menu.js +5 -5
  49. package/packages/design-system/dist/static/spinner.js +8 -8
  50. package/packages/design-system/dist/tokens/colors.js +29 -29
  51. package/packages/design-system/dist/tokens/typography.js +6 -6
  52. package/packages/memory/dist/index.js +6329 -5995
  53. package/packages/memory/dist/index.js.map +4 -4
  54. package/packages/superintendent/dist/commands/superintendent-group.js +2 -2
  55. package/packages/superintendent/dist/templates/SKILL_superintendent.md +1 -1
  56. package/scripts/postinstall-sync-skills.mjs +31 -0
@@ -1,34 +1,34 @@
1
- import chalk from "chalk";
1
+ import { color } from "../components/color.js";
2
2
  export const brand = "#a200ff";
3
3
  export const dark = {
4
- header: (text) => chalk.magentaBright.bold(text),
5
- divider: (text) => chalk.dim(text),
6
- prompt: (text) => chalk.cyan(text),
7
- number: (text) => chalk.cyanBright(text),
8
- intro: (text) => chalk.bgMagenta.white(` Poe - ${text} `),
9
- resolvedSymbol: chalk.magenta("◇"),
10
- errorSymbol: chalk.red("■"),
11
- accent: (text) => chalk.cyan(text),
12
- muted: (text) => chalk.dim(text),
13
- success: (text) => chalk.green(text),
14
- warning: (text) => chalk.yellow(text),
15
- error: (text) => chalk.red(text),
16
- info: (text) => chalk.magenta(text),
17
- badge: (text) => chalk.bgYellow.black(` ${text} `)
4
+ header: (text) => color.magentaBright.bold(text),
5
+ divider: (text) => color.dim(text),
6
+ prompt: (text) => color.cyan(text),
7
+ number: (text) => color.cyanBright(text),
8
+ intro: (text) => color.bgMagenta.white(` Poe - ${text} `),
9
+ resolvedSymbol: color.magenta("◇"),
10
+ errorSymbol: color.red("■"),
11
+ accent: (text) => color.cyan(text),
12
+ muted: (text) => color.dim(text),
13
+ success: (text) => color.green(text),
14
+ warning: (text) => color.yellow(text),
15
+ error: (text) => color.red(text),
16
+ info: (text) => color.magenta(text),
17
+ badge: (text) => color.bgYellow.black(` ${text} `)
18
18
  };
19
19
  export const light = {
20
- header: (text) => chalk.hex("#a200ff").bold(text),
21
- divider: (text) => chalk.hex("#666666")(text),
22
- prompt: (text) => chalk.hex("#006699").bold(text),
23
- number: (text) => chalk.hex("#0077cc").bold(text),
24
- intro: (text) => chalk.bgHex("#a200ff").white(` Poe - ${text} `),
25
- resolvedSymbol: chalk.hex("#a200ff")("◇"),
26
- errorSymbol: chalk.hex("#cc0000")("■"),
27
- accent: (text) => chalk.hex("#006699").bold(text),
28
- muted: (text) => chalk.hex("#666666")(text),
29
- success: (text) => chalk.hex("#008800")(text),
30
- warning: (text) => chalk.hex("#cc6600")(text),
31
- error: (text) => chalk.hex("#cc0000")(text),
32
- info: (text) => chalk.hex("#a200ff")(text),
33
- badge: (text) => chalk.bgHex("#cc6600").white(` ${text} `)
20
+ header: (text) => color.hex("#a200ff").bold(text),
21
+ divider: (text) => color.hex("#666666")(text),
22
+ prompt: (text) => color.hex("#006699").bold(text),
23
+ number: (text) => color.hex("#0077cc").bold(text),
24
+ intro: (text) => color.bgHex("#a200ff").white(` Poe - ${text} `),
25
+ resolvedSymbol: color.hex("#a200ff")("◇"),
26
+ errorSymbol: color.hex("#cc0000")("■"),
27
+ accent: (text) => color.hex("#006699").bold(text),
28
+ muted: (text) => color.hex("#666666")(text),
29
+ success: (text) => color.hex("#008800")(text),
30
+ warning: (text) => color.hex("#cc6600")(text),
31
+ error: (text) => color.hex("#cc0000")(text),
32
+ info: (text) => color.hex("#a200ff")(text),
33
+ badge: (text) => color.bgHex("#cc6600").white(` ${text} `)
34
34
  };
@@ -1,8 +1,8 @@
1
- import chalk from "chalk";
1
+ import { color } from "../components/color.js";
2
2
  export const typography = {
3
- bold: (text) => chalk.bold(text),
4
- dim: (text) => chalk.dim(text),
5
- italic: (text) => chalk.italic(text),
6
- underline: (text) => chalk.underline(text),
7
- strikethrough: (text) => chalk.strikethrough(text)
3
+ bold: (text) => color.bold(text),
4
+ dim: (text) => color.dim(text),
5
+ italic: (text) => color.italic(text),
6
+ underline: (text) => color.underline(text),
7
+ strikethrough: (text) => color.strikethrough(text)
8
8
  };