-
@@ -123,7 +127,8 @@
}
@keyframes idle-bob {
- 0%, 100% {
+ 0%,
+ 100% {
transform: translateY(0);
}
50% {
@@ -132,7 +137,8 @@
}
@keyframes thinking-sway {
- 0%, 100% {
+ 0%,
+ 100% {
transform: rotate(-2deg);
}
50% {
@@ -141,7 +147,8 @@
}
@keyframes typing-bounce {
- 0%, 100% {
+ 0%,
+ 100% {
transform: translateY(0) scale(1);
}
50% {
@@ -150,7 +157,8 @@
}
@keyframes searching-look {
- 0%, 100% {
+ 0%,
+ 100% {
transform: translateX(0);
}
25% {
@@ -162,7 +170,8 @@
}
@keyframes celebrate {
- 0%, 100% {
+ 0%,
+ 100% {
transform: scale(1) rotate(0deg);
}
25% {
@@ -177,13 +186,21 @@
}
@keyframes shake {
- 0%, 100% {
+ 0%,
+ 100% {
transform: translateX(0);
}
- 10%, 30%, 50%, 70%, 90% {
+ 10%,
+ 30%,
+ 50%,
+ 70%,
+ 90% {
transform: translateX(-5px);
}
- 20%, 40%, 60%, 80% {
+ 20%,
+ 40%,
+ 60%,
+ 80% {
transform: translateX(5px);
}
}
diff --git a/src/lib/components/PermissionModal.svelte b/src/lib/components/PermissionModal.svelte
index d2d8621..12a41e3 100644
--- a/src/lib/components/PermissionModal.svelte
+++ b/src/lib/components/PermissionModal.svelte
@@ -37,7 +37,10 @@
claudeStore.grantTool(approvedTool);
const newGrantedTools = [...grantedToolsList, approvedTool];
- claudeStore.addLine("system", `Permission granted for: ${approvedTool}. Reconnecting with context...`);
+ claudeStore.addLine(
+ "system",
+ `Permission granted for: ${approvedTool}. Reconnecting with context...`
+ );
claudeStore.clearPermission();
// Stop current session and reconnect with new permissions
@@ -97,8 +100,12 @@ Please continue where we left off and retry that action now that you have permis
{#if isVisible && permission}
-
-
+
+
🔐
@@ -117,10 +124,14 @@ Please continue where we left off and retry that action now that you have permis
Tool
-
+
{permission.tool}
{#if isToolAlreadyGranted(permission.tool)}
- Already Granted
+ Already Granted
{/if}
@@ -135,7 +146,10 @@ Please continue where we left off and retry that action now that you have permis
{#if Object.keys(permission.input).length > 0}
Details
-
{formatInput(permission.input)}
+
{formatInput(
+ permission.input
+ )}
{/if}
diff --git a/src/lib/components/StatusBar.svelte b/src/lib/components/StatusBar.svelte
index eeed173..1a9d6ac 100644
--- a/src/lib/components/StatusBar.svelte
+++ b/src/lib/components/StatusBar.svelte
@@ -101,7 +101,9 @@
}
-
+
@@ -111,7 +113,8 @@
{#if connectionStatus === "connected"}
{#if workingDirectory}
- cwd: {workingDirectory}
+ cwd:
+ {workingDirectory}
{/if}
{:else}
@@ -143,7 +146,9 @@
title="Join our Discord"
>
{#if appVersion}
diff --git a/src/lib/components/Terminal.svelte b/src/lib/components/Terminal.svelte
index 0ce2575..e739a44 100644
--- a/src/lib/components/Terminal.svelte
+++ b/src/lib/components/Terminal.svelte
@@ -1,6 +1,6 @@