all: fix formatting
diff --git a/webui/src/web-components/mobile-chat-input.ts b/webui/src/web-components/mobile-chat-input.ts
index 76c2531..94abdbc 100644
--- a/webui/src/web-components/mobile-chat-input.ts
+++ b/webui/src/web-components/mobile-chat-input.ts
@@ -153,13 +153,15 @@
     // Check if the clipboard contains files
     if (e.clipboardData && e.clipboardData.files.length > 0) {
       const file = e.clipboardData.files[0];
-      
+
       // Handle the file upload
       e.preventDefault(); // Prevent default paste behavior
-      
+
       // Get the current cursor position
       const textarea = this.textareaRef.value;
-      const cursorPos = textarea ? textarea.selectionStart : this.inputValue.length;
+      const cursorPos = textarea
+        ? textarea.selectionStart
+        : this.inputValue.length;
       await this.uploadFile(file, cursorPos);
     }
   };
@@ -241,7 +243,9 @@
   private sendMessage = () => {
     // Prevent sending if there are uploads in progress
     if (this.uploadsInProgress > 0) {
-      console.log(`Message send prevented: ${this.uploadsInProgress} uploads in progress`);
+      console.log(
+        `Message send prevented: ${this.uploadsInProgress} uploads in progress`,
+      );
       return;
     }
 
@@ -267,10 +271,10 @@
   updated(changedProperties: Map<string, any>) {
     super.updated(changedProperties);
     this.adjustTextareaHeight();
-    
+
     // Add paste event listener when component updates
     if (this.textareaRef.value && !this.textareaRef.value.onpaste) {
-      this.textareaRef.value.addEventListener('paste', this.handlePaste);
+      this.textareaRef.value.addEventListener("paste", this.handlePaste);
     }
   }
 
@@ -278,12 +282,15 @@
     super.disconnectedCallback();
     // Clean up paste event listener
     if (this.textareaRef.value) {
-      this.textareaRef.value.removeEventListener('paste', this.handlePaste);
+      this.textareaRef.value.removeEventListener("paste", this.handlePaste);
     }
   }
 
   render() {
-    const canSend = this.inputValue.trim().length > 0 && !this.disabled && this.uploadsInProgress === 0;
+    const canSend =
+      this.inputValue.trim().length > 0 &&
+      !this.disabled &&
+      this.uploadsInProgress === 0;
 
     return html`
       <div class="input-container">
@@ -297,28 +304,30 @@
             ?disabled=${this.disabled || this.uploadsInProgress > 0}
             rows="1"
           ></textarea>
-          
+
           ${this.showUploadProgress
             ? html`
                 <div class="upload-progress">
-                  Uploading ${this.uploadsInProgress} file${this.uploadsInProgress > 1 ? 's' : ''}...
+                  Uploading ${this.uploadsInProgress}
+                  file${this.uploadsInProgress > 1 ? "s" : ""}...
                 </div>
               `
-            : ''}
+            : ""}
         </div>
 
         <button
           class="send-button"
           @click=${this.sendMessage}
           ?disabled=${!canSend}
-          title=${this.uploadsInProgress > 0 ? 'Please wait for upload to complete' : 'Send message'}
+          title=${this.uploadsInProgress > 0
+            ? "Please wait for upload to complete"
+            : "Send message"}
         >
           ${this.uploadsInProgress > 0
             ? html`<span style="font-size: 12px;">⏳</span>`
             : html`<svg class="send-icon" viewBox="0 0 24 24">
-                      <path d="M2,21L23,12L2,3V10L17,12L2,14V21Z" />
-                    </svg>`
-          }
+                <path d="M2,21L23,12L2,3V10L17,12L2,14V21Z" />
+              </svg>`}
         </button>
       </div>
     `;
diff --git a/webui/src/web-components/mobile-chat.ts b/webui/src/web-components/mobile-chat.ts
index 57ad449..e559d6a 100644
--- a/webui/src/web-components/mobile-chat.ts
+++ b/webui/src/web-components/mobile-chat.ts
@@ -70,8 +70,6 @@
       border-bottom-left-radius: 6px;
     }
 
-
-
     .thinking-message {
       align-self: flex-start;
       align-items: flex-start;
@@ -106,12 +104,20 @@
       animation: thinking 1.4s ease-in-out infinite both;
     }
 
-    .thinking-dot:nth-child(1) { animation-delay: -0.32s; }
-    .thinking-dot:nth-child(2) { animation-delay: -0.16s; }
-    .thinking-dot:nth-child(3) { animation-delay: 0; }
+    .thinking-dot:nth-child(1) {
+      animation-delay: -0.32s;
+    }
+    .thinking-dot:nth-child(2) {
+      animation-delay: -0.16s;
+    }
+    .thinking-dot:nth-child(3) {
+      animation-delay: 0;
+    }
 
     @keyframes thinking {
-      0%, 80%, 100% {
+      0%,
+      80%,
+      100% {
         transform: scale(0.8);
         opacity: 0.5;
       }
@@ -161,18 +167,26 @@
       font-weight: bold;
     }
 
-    .markdown-content h1 { font-size: 1.2em; }
-    .markdown-content h2 { font-size: 1.15em; }
-    .markdown-content h3 { font-size: 1.1em; }
+    .markdown-content h1 {
+      font-size: 1.2em;
+    }
+    .markdown-content h2 {
+      font-size: 1.15em;
+    }
+    .markdown-content h3 {
+      font-size: 1.1em;
+    }
     .markdown-content h4,
     .markdown-content h5,
-    .markdown-content h6 { font-size: 1.05em; }
+    .markdown-content h6 {
+      font-size: 1.05em;
+    }
 
     .markdown-content code {
       background-color: rgba(0, 0, 0, 0.08);
       padding: 2px 4px;
       border-radius: 3px;
-      font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
+      font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
       font-size: 0.9em;
     }
 
@@ -225,7 +239,10 @@
 
   updated(changedProperties: Map<string, any>) {
     super.updated(changedProperties);
-    if (changedProperties.has('messages') || changedProperties.has('isThinking')) {
+    if (
+      changedProperties.has("messages") ||
+      changedProperties.has("isThinking")
+    ) {
       this.scrollToBottom();
     }
   }
@@ -234,40 +251,52 @@
     // Use requestAnimationFrame to ensure DOM is updated
     requestAnimationFrame(() => {
       if (this.scrollContainer.value) {
-        this.scrollContainer.value.scrollTop = this.scrollContainer.value.scrollHeight;
+        this.scrollContainer.value.scrollTop =
+          this.scrollContainer.value.scrollHeight;
       }
     });
   }
 
   private formatTime(timestamp: string): string {
     const date = new Date(timestamp);
-    return date.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' });
+    return date.toLocaleTimeString([], { hour: "2-digit", minute: "2-digit" });
   }
 
   private getMessageRole(message: AgentMessage): string {
-    if (message.type === 'user') {
-      return 'user';
+    if (message.type === "user") {
+      return "user";
     }
-    return 'assistant';
+    return "assistant";
   }
 
   private getMessageText(message: AgentMessage): string {
-    return message.content || '';
+    return message.content || "";
   }
 
   private shouldShowMessage(message: AgentMessage): boolean {
     // Show user, agent, and error messages with content
-    return (message.type === 'user' || message.type === 'agent' || message.type === 'error') && 
-           message.content && message.content.trim().length > 0;
+    return (
+      (message.type === "user" ||
+        message.type === "agent" ||
+        message.type === "error") &&
+      message.content &&
+      message.content.trim().length > 0
+    );
   }
 
   private renderMarkdown(markdownContent: string): string {
     try {
       // Create a custom renderer for mobile-optimized rendering
       const renderer = new Renderer();
-      
+
       // Override code renderer to simplify for mobile
-      renderer.code = function ({ text, lang }: { text: string; lang?: string }): string {
+      renderer.code = function ({
+        text,
+        lang,
+      }: {
+        text: string;
+        lang?: string;
+      }): string {
         const langClass = lang ? ` class="language-${lang}"` : "";
         return `<pre><code${langClass}>${text}</code></pre>`;
       };
@@ -284,8 +313,27 @@
       const htmlOutput = marked.parse(markdownContent, markedOptions) as string;
       return DOMPurify.sanitize(htmlOutput, {
         ALLOWED_TAGS: [
-          "p", "br", "strong", "em", "b", "i", "u", "s", "code", "pre",
-          "h1", "h2", "h3", "h4", "h5", "h6", "ul", "ol", "li", "blockquote", "a"
+          "p",
+          "br",
+          "strong",
+          "em",
+          "b",
+          "i",
+          "u",
+          "s",
+          "code",
+          "pre",
+          "h1",
+          "h2",
+          "h3",
+          "h4",
+          "h5",
+          "h6",
+          "ul",
+          "ol",
+          "li",
+          "blockquote",
+          "a",
         ],
         ALLOWED_ATTR: ["href", "title", "target", "rel", "class"],
         KEEP_CONTENT: true,
@@ -298,43 +346,47 @@
   }
 
   render() {
-    const displayMessages = this.messages.filter(msg => this.shouldShowMessage(msg));
-    
+    const displayMessages = this.messages.filter((msg) =>
+      this.shouldShowMessage(msg),
+    );
+
     return html`
       <div class="chat-container" ${ref(this.scrollContainer)}>
-        ${displayMessages.length === 0 ? html`
-          <div class="empty-state">
-            Start a conversation with Sketch...
-          </div>
-        ` : displayMessages.map(message => {
-          const role = this.getMessageRole(message);
-          const text = this.getMessageText(message);
-          const timestamp = message.timestamp;
-          
-          return html`
-            <div class="message ${role}">
-              <div class="message-bubble">
-                ${role === 'assistant' 
-                  ? html`<div class="markdown-content">${unsafeHTML(this.renderMarkdown(text))}</div>`
-                  : text
-                }
+        ${displayMessages.length === 0
+          ? html`
+              <div class="empty-state">Start a conversation with Sketch...</div>
+            `
+          : displayMessages.map((message) => {
+              const role = this.getMessageRole(message);
+              const text = this.getMessageText(message);
+              const timestamp = message.timestamp;
+
+              return html`
+                <div class="message ${role}">
+                  <div class="message-bubble">
+                    ${role === "assistant"
+                      ? html`<div class="markdown-content">
+                          ${unsafeHTML(this.renderMarkdown(text))}
+                        </div>`
+                      : text}
+                  </div>
+                </div>
+              `;
+            })}
+        ${this.isThinking
+          ? html`
+              <div class="thinking-message">
+                <div class="thinking-bubble">
+                  <span class="thinking-text">Sketch is thinking</span>
+                  <div class="thinking-dots">
+                    <div class="thinking-dot"></div>
+                    <div class="thinking-dot"></div>
+                    <div class="thinking-dot"></div>
+                  </div>
+                </div>
               </div>
-            </div>
-          `;
-        })}
-        
-        ${this.isThinking ? html`
-          <div class="thinking-message">
-            <div class="thinking-bubble">
-              <span class="thinking-text">Sketch is thinking</span>
-              <div class="thinking-dots">
-                <div class="thinking-dot"></div>
-                <div class="thinking-dot"></div>
-                <div class="thinking-dot"></div>
-              </div>
-            </div>
-          </div>
-        ` : ''}
+            `
+          : ""}
       </div>
     `;
   }