From 728dc86d4902dd6b086439fc52889fc754322e49 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Sun, 25 Jan 2026 20:46:22 +0100 Subject: [PATCH] fix(coding-agent): correct theme schema URL path --- packages/coding-agent/docs/themes.md | 4 ++-- packages/coding-agent/src/modes/interactive/theme/dark.json | 2 +- packages/coding-agent/src/modes/interactive/theme/light.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/coding-agent/docs/themes.md b/packages/coding-agent/docs/themes.md index 6414fce4..5d4d7964 100644 --- a/packages/coding-agent/docs/themes.md +++ b/packages/coding-agent/docs/themes.md @@ -52,7 +52,7 @@ vim ~/.pi/agent/themes/my-theme.json ```json { - "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/theme-schema.json", + "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json", "name": "my-theme", "vars": { "primary": "#00aaff", @@ -122,7 +122,7 @@ vim ~/.pi/agent/themes/my-theme.json ```json { - "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/theme-schema.json", + "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json", "name": "my-theme", "vars": { "blue": "#0066cc", diff --git a/packages/coding-agent/src/modes/interactive/theme/dark.json b/packages/coding-agent/src/modes/interactive/theme/dark.json index cc909781..0ca2af51 100644 --- a/packages/coding-agent/src/modes/interactive/theme/dark.json +++ b/packages/coding-agent/src/modes/interactive/theme/dark.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/theme-schema.json", + "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json", "name": "dark", "vars": { "cyan": "#00d7ff", diff --git a/packages/coding-agent/src/modes/interactive/theme/light.json b/packages/coding-agent/src/modes/interactive/theme/light.json index 6d791f74..58ab93e9 100644 --- a/packages/coding-agent/src/modes/interactive/theme/light.json +++ b/packages/coding-agent/src/modes/interactive/theme/light.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/theme-schema.json", + "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json", "name": "light", "vars": { "teal": "#5a8080",