This commit is contained in:
MythEclipse
2026-06-06 00:42:10 +07:00
parent 5c480cea59
commit 0dbd2b22c7
9 changed files with 8 additions and 17 deletions
-1
View File
@@ -1 +0,0 @@
1
View File
-1
View File
@@ -1 +0,0 @@
{"type":"tool_failure","tool":"Read","error":"File does not exist. Note: your current working directory is /mnt/code/Booster-role.","id":"tool_failure-1780680948157-w915py","timestamp":"2026-06-05T17:35:48.157Z","resolved":false}
-13
View File
@@ -1,13 +0,0 @@
[17:34:23] PROMPT: fix bug "Bun v1.3.4 (Linux x64 baseline)
{"guildId":"1206212469148749834","level":"info","message":"Registering guild commands","timestamp":
[17:34:32] PROMPT: fix bug "Bun v1.3.4 (Linux x64 baseline)
{"guildId":"1206212469148749834","level":"info","message":"Registering guild commands","timestamp":
[17:34:46] TASK+: unknown
[17:34:46] TASK+: unknown
[17:34:46] TASK+: unknown
[17:34:57] AGENT START:
[17:35:04] AGENT SPAWN: coder-workflow:codebase-qa-agent
[17:35:47] FAIL [Read]: File does not exist. Note: your current working directory is /mnt/code/Booster-role.
[17:38:37] TASK done:
[17:38:39] PROMPT: Write a 1-line conventional commit message summarizing these staged changes. Output ONLY the raw commit message, no markdown.
diff --git a/.
-1
View File
@@ -1 +0,0 @@
0
Binary file not shown.
+3 -1
View File
@@ -1,3 +1,5 @@
node_modules/
.env
data/
data/
.codegraph/
.claude/
+1
View File
@@ -8,6 +8,7 @@ export const boosterRoles = pgTable(
roleId: text("role_id").notNull(),
name: text("name").notNull(),
color: text("color"),
color2: text("color2"),
icon: text("icon"),
createdAt: bigint("created_at", { mode: "number" }).notNull(),
updatedAt: bigint("updated_at", { mode: "number" }).notNull()
+4
View File
@@ -75,6 +75,10 @@ export function normalizeHexColor(color: string): `#${string}` {
return normalizedColor as `#${string}`;
}
export function normalizeOptionalHexColor(color: string | null): `#${string}` | null {
return color ? normalizeHexColor(color) : null;
}
function normalizeName(name: string): string {
return name.trim().toLowerCase();
}