First Chat

Send your first message and learn the basics of BraceKit.

Your First Chat

Now that BraceKit is installed, letโ€™s send your first message and explore the interface.

Opening the Sidebar

Click the BraceKit icon in your Chrome toolbar. The sidebar will slide open from the right side of your browser window.

sidebar layout

Sending Your First Message

  1. Select a provider: Click the provider button in the toolbar (e.g., โ€œOpenAI โ–พโ€)
  2. Choose a model: Select from available models
  3. Type your message: Click the input area and type
  4. Send: Press Enter or click the Send button

The AI response will stream in real-time, token by token.

Example Conversation

You: What is async/await in JavaScript?

BraceKit: Async/await is syntactic sugar over JavaScript Promises
that lets you write asynchronous code in a synchronous style...

The `async` keyword marks a function as asynchronous, and `await`
pauses execution until a Promise resolves.

```javascript
async function fetchData() {
  const response = await fetch('/api/data');
  const data = await response.json();
  return data;
}
```

Using Page Context

BraceKit can read the content of your current webpage:

  1. Navigate to any article or documentation page
  2. Open the sidebar
  3. Click the globe icon (๐ŸŒ) in the toolbar
  4. The page content is now attached to your message
  5. Ask questions about the page
You: Summarize the key points of this article

BraceKit: Based on the article you're viewing, here are the key points:

1. The article discusses...
2. It emphasizes...
3. The conclusion suggests...

Working with Selected Text

Select any text on a webpage to ask questions about it:

  1. Highlight text on any webpage
  2. Open the sidebar
  3. The selected text appears as an attachment
  4. Ask your question

You can also right-click selected text and choose โ€œSend to BraceKitโ€ from the context menu.

The Toolbar

The input toolbar contains quick actions:

IconActionDescription
๐ŸŒPage ContextAttach current page content
๐Ÿ“ŽAttach FileAdd images, text files, or PDFs
๐Ÿ’ปSystem PromptEdit the system prompt
๐Ÿง Reasoning ModeEnable extended thinking (Claude)
โš™๏ธSettingsOpen settings panel

Slash Commands

Type / in the input area for quick commands:

CommandDescription
/compactSummarize and compress the conversation
/renameAuto-generate a conversation title

Message Actions

Hover over any message to see available actions:

User Messages

  • Edit: Modify your message and resubmit
  • Quote: Select text to quote in a new message

Assistant Messages

  • Copy: Copy the entire response
  • Branch: Create a new conversation from this point
  • Regenerate: Get a new response

Next Steps

Now that youโ€™ve sent your first message, explore these features: