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.
- package/README.md +8 -0
- package/dist/cli/commands/harness.js +107 -15
- package/dist/cli/commands/harness.js.map +1 -1
- package/dist/cli/commands/models.js +1 -1
- package/dist/index.js +17021 -15752
- package/dist/index.js.map +4 -4
- package/dist/providers/claude-code.js +1032 -698
- package/dist/providers/claude-code.js.map +4 -4
- package/dist/providers/codex.js +1032 -698
- package/dist/providers/codex.js.map +4 -4
- package/dist/providers/goose.js +3027 -2693
- package/dist/providers/goose.js.map +4 -4
- package/dist/providers/kimi.js +1032 -698
- package/dist/providers/kimi.js.map +4 -4
- package/dist/providers/opencode.js +1027 -693
- package/dist/providers/opencode.js.map +4 -4
- package/dist/providers/poe-agent.js +21329 -20925
- package/dist/providers/poe-agent.js.map +4 -4
- package/package.json +4 -2
- package/packages/config-mutations/dist/execution/apply-mutation.js +3 -3
- package/packages/config-mutations/dist/mutations/template-mutation.d.ts +3 -3
- package/packages/config-mutations/dist/template/render.d.ts +0 -1
- package/packages/config-mutations/dist/template/render.js +2 -22
- package/packages/design-system/dist/acp/components.js +15 -13
- package/packages/design-system/dist/components/color.d.ts +31 -0
- package/packages/design-system/dist/components/color.js +101 -0
- package/packages/design-system/dist/components/index.d.ts +4 -0
- package/packages/design-system/dist/components/index.js +2 -0
- package/packages/design-system/dist/components/logger.js +2 -2
- package/packages/design-system/dist/components/symbols.js +3 -3
- package/packages/design-system/dist/components/table.js +191 -40
- package/packages/design-system/dist/components/template.d.ts +6 -0
- package/packages/design-system/dist/components/template.js +271 -0
- package/packages/design-system/dist/components/text.js +3 -3
- package/packages/design-system/dist/dashboard/buffer.js +12 -12
- package/packages/design-system/dist/index.d.ts +4 -0
- package/packages/design-system/dist/index.js +2 -0
- package/packages/design-system/dist/internal/color-support.d.ts +9 -0
- package/packages/design-system/dist/internal/color-support.js +12 -0
- package/packages/design-system/dist/prompts/index.d.ts +1 -1
- package/packages/design-system/dist/prompts/index.js +5 -4
- package/packages/design-system/dist/prompts/primitives/cancel.js +2 -2
- package/packages/design-system/dist/prompts/primitives/intro.js +2 -2
- package/packages/design-system/dist/prompts/primitives/log.js +4 -4
- package/packages/design-system/dist/prompts/primitives/note.js +5 -5
- package/packages/design-system/dist/prompts/primitives/outro.js +2 -2
- package/packages/design-system/dist/prompts/primitives/spinner.js +3 -3
- package/packages/design-system/dist/static/menu.js +5 -5
- package/packages/design-system/dist/static/spinner.js +8 -8
- package/packages/design-system/dist/tokens/colors.js +29 -29
- package/packages/design-system/dist/tokens/typography.js +6 -6
- package/packages/memory/dist/index.js +6329 -5995
- package/packages/memory/dist/index.js.map +4 -4
- package/packages/superintendent/dist/commands/superintendent-group.js +2 -2
- package/packages/superintendent/dist/templates/SKILL_superintendent.md +1 -1
- package/scripts/postinstall-sync-skills.mjs +31 -0
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { color } from "../components/color.js";
|
|
2
2
|
export const brand = "#a200ff";
|
|
3
3
|
export const dark = {
|
|
4
|
-
header: (text) =>
|
|
5
|
-
divider: (text) =>
|
|
6
|
-
prompt: (text) =>
|
|
7
|
-
number: (text) =>
|
|
8
|
-
intro: (text) =>
|
|
9
|
-
resolvedSymbol:
|
|
10
|
-
errorSymbol:
|
|
11
|
-
accent: (text) =>
|
|
12
|
-
muted: (text) =>
|
|
13
|
-
success: (text) =>
|
|
14
|
-
warning: (text) =>
|
|
15
|
-
error: (text) =>
|
|
16
|
-
info: (text) =>
|
|
17
|
-
badge: (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) =>
|
|
21
|
-
divider: (text) =>
|
|
22
|
-
prompt: (text) =>
|
|
23
|
-
number: (text) =>
|
|
24
|
-
intro: (text) =>
|
|
25
|
-
resolvedSymbol:
|
|
26
|
-
errorSymbol:
|
|
27
|
-
accent: (text) =>
|
|
28
|
-
muted: (text) =>
|
|
29
|
-
success: (text) =>
|
|
30
|
-
warning: (text) =>
|
|
31
|
-
error: (text) =>
|
|
32
|
-
info: (text) =>
|
|
33
|
-
badge: (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
|
|
1
|
+
import { color } from "../components/color.js";
|
|
2
2
|
export const typography = {
|
|
3
|
-
bold: (text) =>
|
|
4
|
-
dim: (text) =>
|
|
5
|
-
italic: (text) =>
|
|
6
|
-
underline: (text) =>
|
|
7
|
-
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
|
};
|