@ikie-dev/cli 9.8.4 → 9.8.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikie-dev/cli",
3
- "version": "9.8.4",
3
+ "version": "9.8.6",
4
4
  "description": "ikie \u2014 a coding agent CLI powered by ikie AI",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -30,6 +30,7 @@
30
30
  "test:e2e:tui:trace": "pnpm run build:binary && node scripts/run-tui-e2e.js --trace",
31
31
  "test:e2e:tui:trace:replay": "node scripts/run-tui-e2e.js replay",
32
32
  "test:e2e:acp": "pnpm run build:binary && vitest run --config tests/e2e/acp/vitest.config.ts",
33
+ "prepublishOnly": "node scripts/prepublish-npm.js",
33
34
  "postinstall": "node scripts/patch-pi-ai-oauth.js",
34
35
  "prepare": "husky",
35
36
  "verify": "pnpm run check && pnpm run build:binary && pnpm run test && pnpm run test:smoke"
@@ -41,8 +42,10 @@
41
42
  "dependencies": {
42
43
  "@agentclientprotocol/sdk": "0.19.2",
43
44
  "@clack/prompts": "^1.3.0",
45
+ "@earendil-works/pi-ai": "0.78.1",
44
46
  "@earendil-works/pi-coding-agent": "0.78.1",
45
47
  "@earendil-works/pi-tui": "0.78.1",
48
+ "@mixmark-io/domino": "^2.2.0",
46
49
  "@modelcontextprotocol/ext-apps": "^1.7.1",
47
50
  "@modelcontextprotocol/sdk": "^1.29.0",
48
51
  "@shikijs/cli": "^4.0.2",
@@ -58,9 +61,11 @@
58
61
  "shiki": "^4.0.2",
59
62
  "ssh2": "^1.17.0",
60
63
  "tar": "^7.5.15",
64
+ "turndown": "^7.2.4",
61
65
  "undici": "^8.2.0",
62
66
  "uuid": "^14.0.0",
63
67
  "wcwidth": "^1.0.1",
68
+ "ws": "^8.20.1",
64
69
  "yaml": "^2.8.4",
65
70
  "zod": "^4.4.3"
66
71
  },
@@ -80,9 +85,7 @@
80
85
  },
81
86
  "devDependencies": {
82
87
  "@biomejs/biome": "^1.9.4",
83
- "@earendil-works/pi-ai": "0.78.1",
84
88
  "@microsoft/tui-test": "0.0.4",
85
- "@mixmark-io/domino": "^2.2.0",
86
89
  "@types/micromatch": "^4.0.10",
87
90
  "@types/node": "^22.19.18",
88
91
  "@types/shell-quote": "^1.7.5",
@@ -94,10 +97,8 @@
94
97
  "playwright": "^1.59.1",
95
98
  "supports-color": "^10.2.2",
96
99
  "tsx": "^4.21.0",
97
- "turndown": "^7.2.4",
98
100
  "typescript": "^5.9.3",
99
- "vitest": "^3.2.4",
100
- "ws": "^8.20.1"
101
+ "vitest": "^3.2.4"
101
102
  },
102
103
  "engines": {
103
104
  "node": ">=22.0.0"
@@ -0,0 +1,60 @@
1
+ // Prepare the package for npm publication so it can run when installed globally.
2
+ //
3
+ // The published tarball needs:
4
+ // - theme/dark.json, theme/light.json, theme/theme-schema.json
5
+ // - package.json at the package root
6
+ //
7
+ // so that src/auxiliary-files/resolver.ts can find a valid PI_PACKAGE_DIR inside
8
+ // the installed package (e.g. ~/.bun/install/global/node_modules/@ikie-dev/cli/).
9
+
10
+ import { cpSync, existsSync, mkdirSync, readdirSync, readFileSync, writeFileSync } from "node:fs"
11
+ import { dirname, join } from "node:path"
12
+ import { fileURLToPath } from "node:url"
13
+
14
+ const projectRoot = dirname(dirname(fileURLToPath(import.meta.url)))
15
+
16
+ // Ensure upstream + custom themes are staged into src/modes/interactive/theme.
17
+ const copyResources = join(projectRoot, "scripts", "copy-resources.js")
18
+ if (existsSync(copyResources)) {
19
+ await import(copyResources)
20
+ }
21
+
22
+ const srcThemeDir = join(projectRoot, "src", "modes", "interactive", "theme")
23
+ const destThemeDir = join(projectRoot, "theme")
24
+
25
+ if (!existsSync(srcThemeDir)) {
26
+ console.error(`Theme source directory not found: ${srcThemeDir}`)
27
+ console.error("Run `node scripts/copy-resources.js --dev` first.")
28
+ process.exit(1)
29
+ }
30
+
31
+ mkdirSync(destThemeDir, { recursive: true })
32
+
33
+ const requiredThemeFiles = ["dark.json", "light.json", "theme-schema.json"]
34
+ for (const file of requiredThemeFiles) {
35
+ const src = join(srcThemeDir, file)
36
+ const dest = join(destThemeDir, file)
37
+ if (!existsSync(src)) {
38
+ console.error(`Required theme file missing: ${src}`)
39
+ process.exit(1)
40
+ }
41
+ cpSync(src, dest)
42
+ }
43
+
44
+ // Also copy ikie custom themes so the published package has the full set.
45
+ const customThemesSrc = join(projectRoot, "themes")
46
+ if (existsSync(customThemesSrc)) {
47
+ for (const file of readdirSync(customThemesSrc)) {
48
+ if (file.endsWith(".json")) {
49
+ cpSync(join(customThemesSrc, file), join(destThemeDir, file))
50
+ }
51
+ }
52
+ }
53
+
54
+ // Ensure package.json exists at the package root (it always should).
55
+ if (!existsSync(join(projectRoot, "package.json"))) {
56
+ console.error("package.json not found at project root")
57
+ process.exit(1)
58
+ }
59
+
60
+ console.log(`Published theme dir ready: ${destThemeDir}`)
package/src/entry.ts CHANGED
@@ -8,7 +8,8 @@
8
8
 
9
9
  import { existsSync } from "node:fs"
10
10
  import { homedir } from "node:os"
11
- import { resolve } from "node:path"
11
+ import { dirname, resolve } from "node:path"
12
+ import { fileURLToPath } from "node:url"
12
13
  import { resolveAuxiliaryFilesDir } from "./auxiliary-files/resolver.js"
13
14
  import { validateAuxiliaryFiles } from "./auxiliary-files/validator.js"
14
15
  import { installPasteInterceptor } from "./paste-interceptor.js"
@@ -24,7 +25,17 @@ if (isProxyMode(rawArgv)) {
24
25
  }
25
26
 
26
27
  const preSet = !!process.env.PI_PACKAGE_DIR
27
- const auxiliaryDir = resolveAuxiliaryFilesDir(process.env, homedir(), process.execPath)
28
+ let auxiliaryDir = resolveAuxiliaryFilesDir(process.env, homedir(), process.execPath)
29
+
30
+ // When installed globally (npm/bun), the package directory itself contains
31
+ // theme/ and package.json. Prefer that over ~/.local/share/ikie.
32
+ if (!preSet) {
33
+ const packageDir = resolve(dirname(fileURLToPath(import.meta.url)), "..")
34
+ if (existsSync(resolve(packageDir, "theme", "dark.json"))) {
35
+ auxiliaryDir = packageDir
36
+ }
37
+ }
38
+
28
39
  if (!preSet) {
29
40
  try {
30
41
  validateAuxiliaryFiles(auxiliaryDir)
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "catppuccin-macchiato",
3
+ "vars": {
4
+ "bg-primary": "#24273a",
5
+ "bg-secondary": "#363a4f",
6
+ "bg-tertiary": "#494d64",
7
+ "fg-primary": "#cad3f5",
8
+ "fg-secondary": "#b8c0e0",
9
+ "accent-blue": "#8aadf4",
10
+ "accent-sky": "#91d7e3",
11
+ "accent-teal": "#8bd5ca",
12
+ "accent-green": "#a6da95",
13
+ "accent-yellow": "#eed49f",
14
+ "accent-peach": "#f5a97f",
15
+ "accent-red": "#ed8796",
16
+ "accent-mauve": "#c6a0f6",
17
+ "accent-pink": "#f5bde6",
18
+ "muted-grey": "#939ab7",
19
+ "muted-dark": "#363a4f"
20
+ },
21
+ "colors": {
22
+ "text": "fg-primary",
23
+ "textBg": "bg-primary",
24
+ "accent": "accent-mauve",
25
+ "success": "accent-green",
26
+ "error": "accent-red",
27
+ "warning": "accent-yellow",
28
+ "dim": "muted-grey",
29
+ "muted": "muted-grey",
30
+ "border": "muted-dark",
31
+ "borderAccent": "accent-blue",
32
+ "borderMuted": "muted-grey",
33
+ "selectedBg": "bg-tertiary",
34
+ "userMessageBg": "bg-tertiary",
35
+ "userMessageText": "fg-primary",
36
+ "customMessageBg": "bg-secondary",
37
+ "customMessageText": "fg-primary",
38
+ "customMessageLabel": "accent-mauve",
39
+ "toolPendingBg": "bg-tertiary",
40
+ "toolSuccessBg": "bg-tertiary",
41
+ "toolErrorBg": "bg-primary",
42
+ "toolTitle": "fg-primary",
43
+ "toolOutput": "fg-primary",
44
+ "mdHeading": "accent-mauve",
45
+ "mdLink": "accent-blue",
46
+ "mdLinkUrl": "accent-sky",
47
+ "mdCode": "accent-green",
48
+ "mdCodeBlock": "fg-primary",
49
+ "mdCodeBlockBorder": "muted-dark",
50
+ "mdQuote": "accent-yellow",
51
+ "mdQuoteBorder": "muted-grey",
52
+ "mdHr": "muted-grey",
53
+ "mdListBullet": "accent-blue",
54
+ "toolDiffAdded": "accent-green",
55
+ "toolDiffRemoved": "accent-red",
56
+ "toolDiffContext": "muted-grey",
57
+ "syntaxComment": "muted-grey",
58
+ "syntaxKeyword": "accent-mauve",
59
+ "syntaxFunction": "accent-blue",
60
+ "syntaxVariable": "accent-red",
61
+ "syntaxString": "accent-green",
62
+ "syntaxNumber": "accent-peach",
63
+ "syntaxType": "accent-yellow",
64
+ "syntaxOperator": "accent-sky",
65
+ "syntaxPunctuation": "fg-secondary",
66
+ "thinkingOff": "muted-dark",
67
+ "thinkingMinimal": "muted-grey",
68
+ "thinkingLow": "accent-mauve",
69
+ "thinkingMedium": "accent-blue",
70
+ "thinkingHigh": "accent-teal",
71
+ "thinkingXhigh": "accent-yellow",
72
+ "thinkingText": "fg-primary",
73
+ "bashMode": "accent-green",
74
+ "oscFg": "fg-primary",
75
+ "oscBg": "bg-primary"
76
+ },
77
+ "export": {
78
+ "pageBg": "#24273a",
79
+ "cardBg": "#2a2d40",
80
+ "infoBg": "#363a4f"
81
+ }
82
+ }
@@ -0,0 +1,87 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
+ "name": "dark",
4
+ "vars": {
5
+ "cyan": "#00d7ff",
6
+ "blue": "#5f87ff",
7
+ "green": "#b5bd68",
8
+ "red": "#cc6666",
9
+ "yellow": "#ffff00",
10
+ "gray": "#808080",
11
+ "dimGray": "#666666",
12
+ "darkGray": "#505050",
13
+ "accent": "#8abeb7",
14
+ "bg-primary": "#1e1e24",
15
+ "bg-secondary": "#282832",
16
+ "bg-tertiary": "#343541",
17
+ "selectedBg": "#3a3a4a",
18
+ "userMsgBg": "#343541",
19
+ "customMsgBg": "#2d2838"
20
+ },
21
+ "colors": {
22
+ "accent": "accent",
23
+ "border": "blue",
24
+ "borderAccent": "cyan",
25
+ "borderMuted": "darkGray",
26
+ "success": "green",
27
+ "error": "red",
28
+ "warning": "yellow",
29
+ "muted": "gray",
30
+ "dim": "dimGray",
31
+ "text": "gray",
32
+ "thinkingText": "gray",
33
+
34
+ "selectedBg": "selectedBg",
35
+ "userMessageBg": "userMsgBg",
36
+ "userMessageText": "gray",
37
+ "customMessageBg": "customMsgBg",
38
+ "customMessageText": "gray",
39
+ "customMessageLabel": "#9575cd",
40
+ "toolPendingBg": "bg-tertiary",
41
+ "toolSuccessBg": "bg-secondary",
42
+ "toolErrorBg": "bg-primary",
43
+ "toolTitle": "cyan",
44
+ "toolOutput": "gray",
45
+
46
+ "mdHeading": "#f0c674",
47
+ "mdLink": "#81a2be",
48
+ "mdLinkUrl": "dimGray",
49
+ "mdCode": "accent",
50
+ "mdCodeBlock": "green",
51
+ "mdCodeBlockBorder": "gray",
52
+ "mdQuote": "gray",
53
+ "mdQuoteBorder": "gray",
54
+ "mdHr": "gray",
55
+ "mdListBullet": "accent",
56
+
57
+ "toolDiffAdded": "green",
58
+ "toolDiffRemoved": "red",
59
+ "toolDiffContext": "gray",
60
+
61
+ "syntaxComment": "#6A9955",
62
+ "syntaxKeyword": "#569CD6",
63
+ "syntaxFunction": "#DCDCAA",
64
+ "syntaxVariable": "#9CDCFE",
65
+ "syntaxString": "#CE9178",
66
+ "syntaxNumber": "#B5CEA8",
67
+ "syntaxType": "#4EC9B0",
68
+ "syntaxOperator": "#D4D4D4",
69
+ "syntaxPunctuation": "#D4D4D4",
70
+
71
+ "thinkingOff": "darkGray",
72
+ "thinkingMinimal": "#6e6e6e",
73
+ "thinkingLow": "#5f87af",
74
+ "thinkingMedium": "#81a2be",
75
+ "thinkingHigh": "#b294bb",
76
+ "thinkingXhigh": "#d183e8",
77
+
78
+ "bashMode": "green",
79
+ "oscFg": "#D4D4D4",
80
+ "oscBg": "#1E1E1E"
81
+ },
82
+ "export": {
83
+ "pageBg": "#18181e",
84
+ "cardBg": "#1e1e24",
85
+ "infoBg": "#3c3728"
86
+ }
87
+ }
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "dracula",
3
+ "vars": {
4
+ "bg-primary": "#282a36",
5
+ "bg-secondary": "#44475a",
6
+ "bg-tertiary": "#4c4f6a",
7
+ "fg-primary": "#f8f8f2",
8
+ "accent-purple": "#bd93f9",
9
+ "accent-pink": "#ff79c6",
10
+ "accent-cyan": "#8be9fd",
11
+ "accent-green": "#50fa7b",
12
+ "accent-red": "#ff5555",
13
+ "accent-orange": "#ffb86c",
14
+ "accent-yellow": "#f1fa8c",
15
+ "muted-comment": "#6272a4",
16
+ "muted-dark": "#44475a"
17
+ },
18
+ "colors": {
19
+ "text": "fg-primary",
20
+ "textBg": "bg-primary",
21
+ "accent": "accent-pink",
22
+ "success": "accent-green",
23
+ "error": "accent-red",
24
+ "warning": "accent-orange",
25
+ "dim": "muted-comment",
26
+ "muted": "muted-comment",
27
+ "border": "muted-dark",
28
+ "borderAccent": "accent-pink",
29
+ "borderMuted": "muted-comment",
30
+ "selectedBg": "bg-secondary",
31
+ "userMessageBg": "bg-secondary",
32
+ "userMessageText": "fg-primary",
33
+ "customMessageBg": "bg-tertiary",
34
+ "customMessageText": "fg-primary",
35
+ "customMessageLabel": "accent-pink",
36
+ "toolPendingBg": "bg-secondary",
37
+ "toolSuccessBg": "bg-tertiary",
38
+ "toolErrorBg": "bg-primary",
39
+ "toolTitle": "fg-primary",
40
+ "toolOutput": "fg-primary",
41
+ "mdHeading": "accent-pink",
42
+ "mdLink": "accent-purple",
43
+ "mdLinkUrl": "accent-cyan",
44
+ "mdCode": "accent-pink",
45
+ "mdCodeBlock": "fg-primary",
46
+ "mdCodeBlockBorder": "muted-dark",
47
+ "mdQuote": "fg-primary",
48
+ "mdQuoteBorder": "muted-comment",
49
+ "mdHr": "muted-comment",
50
+ "mdListBullet": "accent-pink",
51
+ "toolDiffAdded": "accent-green",
52
+ "toolDiffRemoved": "accent-red",
53
+ "toolDiffContext": "muted-comment",
54
+ "syntaxComment": "#6272a4",
55
+ "syntaxKeyword": "#ff79c6",
56
+ "syntaxFunction": "#50fa7b",
57
+ "syntaxVariable": "#8be9fd",
58
+ "syntaxString": "#f1fa8c",
59
+ "syntaxNumber": "#bd93f9",
60
+ "syntaxType": "#bd93f9",
61
+ "syntaxOperator": "#6272a4",
62
+ "syntaxPunctuation": "#6272a4",
63
+ "thinkingOff": "muted-dark",
64
+ "thinkingMinimal": "muted-comment",
65
+ "thinkingLow": "accent-pink",
66
+ "thinkingMedium": "accent-purple",
67
+ "thinkingHigh": "accent-cyan",
68
+ "thinkingXhigh": "accent-yellow",
69
+ "thinkingText": "fg-primary",
70
+ "bashMode": "accent-green",
71
+ "oscFg": "fg-primary",
72
+ "oscBg": "bg-primary"
73
+ },
74
+ "export": {
75
+ "pageBg": "#282a36",
76
+ "cardBg": "#2e3042",
77
+ "infoBg": "#44475a"
78
+ }
79
+ }
@@ -0,0 +1,80 @@
1
+ {
2
+ "name": "github-dark",
3
+ "vars": {
4
+ "bg-primary": "#0d1117",
5
+ "bg-secondary": "#161b22",
6
+ "bg-tertiary": "#21262d",
7
+ "fg-primary": "#e6edf3",
8
+ "fg-secondary": "#c9d1d9",
9
+ "accent-blue": "#58a6ff",
10
+ "accent-cyan": "#39c5cf",
11
+ "accent-green": "#3fb950",
12
+ "accent-red": "#f85149",
13
+ "accent-yellow": "#e3b341",
14
+ "accent-orange": "#d29922",
15
+ "accent-purple": "#d2a6ff",
16
+ "muted-grey": "#8b949e",
17
+ "muted-dark": "#21262d"
18
+ },
19
+ "colors": {
20
+ "text": "fg-primary",
21
+ "textBg": "bg-primary",
22
+ "accent": "accent-blue",
23
+ "success": "accent-green",
24
+ "error": "accent-red",
25
+ "warning": "accent-yellow",
26
+ "dim": "muted-grey",
27
+ "muted": "muted-grey",
28
+ "border": "muted-dark",
29
+ "borderAccent": "accent-blue",
30
+ "borderMuted": "muted-grey",
31
+ "selectedBg": "bg-secondary",
32
+ "userMessageBg": "bg-secondary",
33
+ "userMessageText": "fg-primary",
34
+ "customMessageBg": "bg-tertiary",
35
+ "customMessageText": "fg-primary",
36
+ "customMessageLabel": "accent-blue",
37
+ "toolPendingBg": "bg-secondary",
38
+ "toolSuccessBg": "bg-tertiary",
39
+ "toolErrorBg": "bg-primary",
40
+ "toolTitle": "fg-primary",
41
+ "toolOutput": "fg-primary",
42
+ "mdHeading": "accent-blue",
43
+ "mdLink": "accent-blue",
44
+ "mdLinkUrl": "accent-cyan",
45
+ "mdCode": "accent-red",
46
+ "mdCodeBlock": "fg-primary",
47
+ "mdCodeBlockBorder": "muted-dark",
48
+ "mdQuote": "fg-secondary",
49
+ "mdQuoteBorder": "muted-grey",
50
+ "mdHr": "muted-grey",
51
+ "mdListBullet": "accent-blue",
52
+ "toolDiffAdded": "accent-green",
53
+ "toolDiffRemoved": "accent-red",
54
+ "toolDiffContext": "muted-grey",
55
+ "syntaxComment": "#8b949e",
56
+ "syntaxKeyword": "#ff7b72",
57
+ "syntaxFunction": "#d2a6ff",
58
+ "syntaxVariable": "#d29922",
59
+ "syntaxString": "#39c5cf",
60
+ "syntaxNumber": "#79c0ff",
61
+ "syntaxType": "#e3b341",
62
+ "syntaxOperator": "#ff7b72",
63
+ "syntaxPunctuation": "#c9d1d9",
64
+ "thinkingOff": "muted-dark",
65
+ "thinkingMinimal": "muted-grey",
66
+ "thinkingLow": "accent-blue",
67
+ "thinkingMedium": "accent-cyan",
68
+ "thinkingHigh": "accent-purple",
69
+ "thinkingXhigh": "accent-yellow",
70
+ "thinkingText": "fg-primary",
71
+ "bashMode": "accent-blue",
72
+ "oscFg": "fg-primary",
73
+ "oscBg": "bg-primary"
74
+ },
75
+ "export": {
76
+ "pageBg": "#0d1117",
77
+ "cardBg": "#161b22",
78
+ "infoBg": "#21262d"
79
+ }
80
+ }
@@ -0,0 +1,80 @@
1
+ {
2
+ "name": "github-light",
3
+ "vars": {
4
+ "bg-primary": "#ffffff",
5
+ "bg-secondary": "#f6f8fa",
6
+ "bg-tertiary": "#eaeef2",
7
+ "fg-primary": "#24292f",
8
+ "fg-secondary": "#57606a",
9
+ "accent-blue": "#0969da",
10
+ "accent-teal": "#1b7c83",
11
+ "accent-green": "#1a7f37",
12
+ "accent-red": "#cf222e",
13
+ "accent-orange": "#bc4c00",
14
+ "accent-yellow": "#9a6700",
15
+ "accent-purple": "#8250df",
16
+ "muted-grey": "#57606a",
17
+ "muted-light": "#d0d7de"
18
+ },
19
+ "colors": {
20
+ "text": "fg-primary",
21
+ "textBg": "bg-primary",
22
+ "accent": "accent-blue",
23
+ "success": "accent-green",
24
+ "error": "accent-red",
25
+ "warning": "accent-yellow",
26
+ "dim": "muted-grey",
27
+ "muted": "muted-grey",
28
+ "border": "muted-light",
29
+ "borderAccent": "accent-blue",
30
+ "borderMuted": "muted-light",
31
+ "selectedBg": "bg-secondary",
32
+ "userMessageBg": "bg-secondary",
33
+ "userMessageText": "fg-primary",
34
+ "customMessageBg": "bg-tertiary",
35
+ "customMessageText": "fg-primary",
36
+ "customMessageLabel": "accent-blue",
37
+ "toolPendingBg": "bg-secondary",
38
+ "toolSuccessBg": "bg-secondary",
39
+ "toolErrorBg": "bg-primary",
40
+ "toolTitle": "fg-primary",
41
+ "toolOutput": "fg-primary",
42
+ "mdHeading": "accent-blue",
43
+ "mdLink": "accent-blue",
44
+ "mdLinkUrl": "accent-teal",
45
+ "mdCode": "#bf3989",
46
+ "mdCodeBlock": "fg-primary",
47
+ "mdCodeBlockBorder": "muted-light",
48
+ "mdQuote": "fg-secondary",
49
+ "mdQuoteBorder": "muted-light",
50
+ "mdHr": "muted-light",
51
+ "mdListBullet": "accent-blue",
52
+ "toolDiffAdded": "accent-green",
53
+ "toolDiffRemoved": "accent-red",
54
+ "toolDiffContext": "muted-grey",
55
+ "syntaxComment": "#57606a",
56
+ "syntaxKeyword": "#cf222e",
57
+ "syntaxFunction": "#8250df",
58
+ "syntaxVariable": "#bc4c00",
59
+ "syntaxString": "#0969da",
60
+ "syntaxNumber": "#0550ae",
61
+ "syntaxType": "#bc4c00",
62
+ "syntaxOperator": "#cf222e",
63
+ "syntaxPunctuation": "#24292f",
64
+ "thinkingOff": "muted-light",
65
+ "thinkingMinimal": "muted-grey",
66
+ "thinkingLow": "accent-blue",
67
+ "thinkingMedium": "accent-teal",
68
+ "thinkingHigh": "accent-purple",
69
+ "thinkingXhigh": "accent-orange",
70
+ "thinkingText": "fg-primary",
71
+ "bashMode": "accent-blue",
72
+ "oscFg": "fg-primary",
73
+ "oscBg": "bg-primary"
74
+ },
75
+ "export": {
76
+ "pageBg": "#ffffff",
77
+ "cardBg": "#f6f8fa",
78
+ "infoBg": "#eaeef2"
79
+ }
80
+ }
@@ -0,0 +1,92 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
+ "name": "ikie-light",
4
+ "vars": {
5
+ "aqua-600": "#0096C7",
6
+ "aqua-500": "#0077B6",
7
+ "teal-600": "#1A936F",
8
+ "teal-bg": "#E8F8F5",
9
+ "cyan-600": "#00B4D8",
10
+ "purple-600": "#7C6FCC",
11
+ "grey-100": "#F0F7FC",
12
+ "grey-200": "#DCE8F0",
13
+ "grey-300": "#B8CCD8",
14
+ "grey-500": "#6B8BA8",
15
+ "grey-600": "#3A5068",
16
+ "grey-700": "#1A2733",
17
+ "amber-600": "#C98A3E",
18
+ "red-600": "#BE5046",
19
+ "red-bg": "#FDF0F0",
20
+ "green-600": "#5C8A50",
21
+ "green-comment": "#4A7C59",
22
+ "blue-600": "#2B5F9E",
23
+ "white": "#FFFFFF",
24
+ "off-white": "#F5FAFE",
25
+ "tool-pending-bg": "#EEF5FC",
26
+ "tool-success-bg": "#EEF8F4",
27
+ "tool-error-bg": "#FDF0F0",
28
+ "user-msg-bg": "#F0F7FC",
29
+ "custom-msg-bg": "#F3F0FB",
30
+ "selected-bg": "#DCE8F5"
31
+ },
32
+ "colors": {
33
+ "accent": "aqua-500",
34
+ "border": "grey-300",
35
+ "borderAccent": "cyan-600",
36
+ "borderMuted": "grey-300",
37
+ "success": "teal-600",
38
+ "error": "red-600",
39
+ "warning": "amber-600",
40
+ "muted": "grey-500",
41
+ "dim": "grey-500",
42
+ "text": "grey-700",
43
+ "thinkingText": "grey-600",
44
+ "selectedBg": "selected-bg",
45
+ "userMessageBg": "user-msg-bg",
46
+ "userMessageText": "grey-700",
47
+ "customMessageBg": "custom-msg-bg",
48
+ "customMessageText": "grey-700",
49
+ "customMessageLabel": "purple-600",
50
+ "toolPendingBg": "tool-pending-bg",
51
+ "toolSuccessBg": "tool-success-bg",
52
+ "toolErrorBg": "tool-error-bg",
53
+ "toolTitle": "grey-700",
54
+ "toolOutput": "grey-600",
55
+ "mdHeading": "aqua-500",
56
+ "mdLink": "purple-600",
57
+ "mdLinkUrl": "grey-500",
58
+ "mdCode": "teal-600",
59
+ "mdCodeBlock": "green-600",
60
+ "mdCodeBlockBorder": "grey-300",
61
+ "mdQuote": "grey-600",
62
+ "mdQuoteBorder": "grey-300",
63
+ "mdHr": "grey-300",
64
+ "mdListBullet": "aqua-500",
65
+ "toolDiffAdded": "teal-600",
66
+ "toolDiffRemoved": "red-600",
67
+ "toolDiffContext": "grey-500",
68
+ "syntaxComment": "#4A7C59",
69
+ "syntaxKeyword": "#56B6C2",
70
+ "syntaxFunction": "#795E26",
71
+ "syntaxVariable": "#001080",
72
+ "syntaxString": "#A31515",
73
+ "syntaxNumber": "#098658",
74
+ "syntaxType": "#267F99",
75
+ "syntaxOperator": "#444444",
76
+ "syntaxPunctuation": "#444444",
77
+ "thinkingOff": "grey-300",
78
+ "thinkingMinimal": "grey-500",
79
+ "thinkingLow": "blue-600",
80
+ "thinkingMedium": "teal-600",
81
+ "thinkingHigh": "#875f87",
82
+ "thinkingXhigh": "#8b008b",
83
+ "bashMode": "teal-600",
84
+ "oscFg": "#1A2733",
85
+ "oscBg": "#F5FAFE"
86
+ },
87
+ "export": {
88
+ "pageBg": "#F5FAFE",
89
+ "cardBg": "#FFFFFF",
90
+ "infoBg": "#FFF8E6"
91
+ }
92
+ }