TypeDocumentation Index
Fetch the complete documentation index at: https://docs.firebender.com/llms.txt
Use this file to discover all available pages before exploring further.
@ and select Docs to attach documentation pages as context. The AI reads the full page content so it can answer questions using up-to-date official docs.
How it works
- Type
@in the chat input - Click Docs to open the documentation browser
- Search or browse by category, then select a doc
- The doc appears as a chip in your prompt. When you send the message, its content is fetched and included as context.
Curated Android docs
Firebender ships with 38 curated Android documentation pages covering:- Jetpack Compose: UI, layouts, state, navigation, animation, modifiers, theming
- Architecture: ViewModel, Room, Hilt, WorkManager, DataStore, Navigation
- Core: Activity lifecycle, Fragments, Coroutines, Flows
- Android SDK: Permissions, Services, Broadcast Receivers, Content Providers, Intents, Notifications, and more
- Testing: Testing overview, Compose testing
- Build: Android Gradle Plugin
Add your own docs
Click Add new doc at the bottom of the Docs browser to save a documentation URL by name. Enter a friendly name (e.g. “Our API”) and the URL. The doc is saved as a markdown file and will appear in the @ Docs menu permanently.Personal docs
Personal docs are stored in~/.firebender/docs/ as individual .md files with YAML frontmatter. They persist across all projects and IDE restarts.
Project docs
Project docs live in your repository at.firebender/docs/ and use the same frontmatter format. Commit them to version control so your entire team gets the same documentation references.
Frontmatter reference
Each doc file supports these frontmatter fields:| Field | Required | Description |
|---|---|---|
name | Yes | Display name shown in the @ Docs menu |
url | Yes | URL of the documentation page to fetch |
category | No | Grouping category (e.g. “API”, “Design”) |
description | No | Short description for search and tooltips |
Priority and deduplication
When the same URL appears in multiple sources, later sources take priority:- Curated docs (built-in, lowest priority)
- Project docs (
.firebender/docs/) - Personal docs (
~/.firebender/docs/, highest priority)