Skip to content

docs: fix technical inaccuracies and add undocumented feature coverage#932

Open
aireilly wants to merge 2 commits intoambient-code:mainfrom
aireilly:docs/technical-review-fixes
Open

docs: fix technical inaccuracies and add undocumented feature coverage#932
aireilly wants to merge 2 commits intoambient-code:mainfrom
aireilly:docs/technical-review-fixes

Conversation

@aireilly
Copy link

@aireilly aireilly commented Mar 16, 2026

Summary

Comprehensive documentation review and feature coverage update. Two commits:

Commit 1: Fix technical inaccuracies (96f333c)

Technical Reviewer agent scanned all 20 doc files against the codebase and found 21 issues (3 critical, 9 high, 9 low):

Finding Severity Files
Jira auth documented as OAuth, actually API Token Critical integrations.md, concepts.md, quickstart-ui.md
Only 4 of 7 models documented (missing Gemini, Sonnet 4.6) Critical sessions.md, concepts.md, quickstart-ui.md
GitLab auth documented as OAuth, actually PAT Critical integrations.md, concepts.md, quickstart-ui.md
Runner described as "Claude Code CLI wrapper" High architecture.md
API route in Mermaid diagram wrong High architecture.md
Google "Workspace" claims Drive+Calendar+Gmail, only Drive exists High integrations.md, concepts.md
AUTO_MERGE_ENABLED referenced but doesn't exist High amber.md
S3 per-workspace config documented but doesn't exist High workspaces.md
Export formats misrepresented as server-side High sessions.md
Integration scope inconsistency (global vs user-scoped) High integrations.md, concepts.md

Docs Writer agents (4 in parallel) applied fixes across 7 files.

Docs Reviewer agent then reviewed the fixes and found 5 style errors:

Error File
"Connect with" → "Connect to" (2 instances) integrations.md
"Quickstart" → "Quick start" quickstart-ui.md
"invoke" → "start" amber.md
~18 instances of anthropomorphism (gendered pronouns) amber.md

Docs Writer agents (3 in parallel) fixed all style errors.

Technical Reviewer agent ran a final pass confirming all fixes were accurate, and caught one more critical issue (GitLab OAuth → PAT) plus 2 significant issues (export Google Drive requires running session, S3 description too vague).

Docs Writer agents (2 in parallel) fixed the remaining issues.

Net result: 7 files changed, 55 insertions, 65 deletions.


Commit 2: Add undocumented features (2020079)

Explore agents (3 in parallel) scanned the entire codebase to inventory all user-facing features:

  • Backend agent — found ~90 API endpoints across 40+ handler files
  • Frontend agent — found 16 major feature categories across all UI components
  • CLI/Public API/Runner agent — found 14 CLI commands, 4 public API endpoints, 12 runner endpoints

Cross-referencing against existing docs identified 10 undocumented features.

Docs Writer agents (3 in parallel, HIGH priority) created new pages:

Page Agent output Content
getting-started/cli.md Read all 14 cmd/*.go files 10 sections, flag tables, env vars, shell completion
concepts/scheduled-sessions.md Read scheduled_sessions.go + frontend dialogs Cron config, schedule presets, operations, concurrency policy
extensions/public-api.md Read all public-api handlers 4 endpoints, response DTOs, phase mapping, rate limiting

Docs Writer agents (3 in parallel, MEDIUM priority) added sections to existing pages:

Section Target file Source code read
Human-in-the-loop sessions.md ask-user-question components
Git operations context-and-artifacts.md repo.go, git-status components
Runner types architecture.md bridges/*, models.json, runner_types.go

Docs Writer agents (4 in parallel, remaining tasks) expanded/added:

Section Target file Source code read
API Keys (expanded) workspaces.md permissions.go, keys-section.tsx
Permissions (expanded) workspaces.md permissions.go, sharing-section.tsx
Feedback & Observability sessions.md feedback.py, feedback components
Keyboard shortcuts quickstart-ui.md command-palette.tsx

Docs Reviewer agent reviewed all 8 files and found 14 errors + 18 warnings. Errors fixed directly:

  • 8 Title Case headings → sentence case (quickstart-ui.md)
  • 3 gerund headings → imperative (scheduled-sessions.md)
  • Number formatting with commas (workspaces.md)
  • Self-referential opening text removed (quickstart-ui.md)

Technical Reviewer agent reviewed all 8 files against code and found 3 critical + 5 significant issues. All fixed directly:

  • Gemini CLI session persistence: YesNo
  • Public API: added unmapped Stopped/Stopping phase documentation
  • CORS defaults: added missing *.apps-crc.testing
  • CLI config path: split Linux vs macOS paths
  • Public API: documented 400 error when no project header
  • Architecture: noted tracing is conditional, documented ReplayBridge
  • Public API frontmatter: standardized quoted title

Net result: 8 files changed, 867 insertions, 17 deletions. 3 new pages, 7 new sections.


Agent execution summary

Agent type Invocations Purpose
Explore 3 Codebase feature inventory (backend, frontend, CLI/API/runner)
Technical Reviewer 3 Accuracy verification against source code
Docs Reviewer 2 Style guide compliance checking
Docs Writer 16 Content creation and error remediation
Total agent runs 24

Test plan

  • Verify npm run dev in docs/ renders all new pages without errors
  • Spot-check CLI reference commands against acpctl --help output
  • Verify scheduled sessions page matches the UI workflow
  • Confirm Public API endpoints match actual gateway behavior
  • Review new sections in existing pages for formatting consistency

🤖 Generated with Claude Code

- Fix Jira auth from OAuth to API Token (email + token) in 3 files
- Fix GitLab auth from OAuth to Personal Access Token in 3 files
- Change Google Workspace to Google Drive (only Drive scopes exist)
- Expand model list to all 7 models including Gemini, note feature-gating
- Update runner description to polymorphic AG-UI server with multi-bridge support
- Fix API route in architecture Mermaid diagram to actual endpoint
- Clarify export behavior (Google Drive requires running session)
- Fix S3 storage description (cluster-wide, not per-workspace)
- Remove nonexistent AUTO_MERGE_ENABLED from Amber docs
- Remove anthropomorphism from Amber docs (~18 instances)
- Add inactivityTimeout documentation to sessions
- Clarify UI-only constraints for max tokens and timeout
- Fix integration scope from "global" to "user-scoped"
- Fix title casing: "Quickstart" to "Quick start"
- Fix "Connect with" to "Connect to" per style guide

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

rh-pre-commit.version: 2.3.2
rh-pre-commit.check-secrets: ENABLED
New pages:
- CLI reference (acpctl): authentication, config, project/session management,
  shell completion, environment variables
- Scheduled sessions: cron-backed recurring sessions, schedule management,
  run history, concurrency policy
- Public API reference (/v1/): endpoints, authentication, rate limiting,
  phase mapping, configuration

New sections in existing pages:
- Human-in-the-loop (HITL) interaction in sessions.md: question types,
  multi-select, tabbed multi-question flows
- Feedback & observability in sessions.md: thumbs up/down, Langfuse tracing
- Git operations in context-and-artifacts.md: repo status, branches,
  remotes, push, merge status, abandon changes
- Runner types in architecture.md: bridge comparison table, model-to-runner
  mapping, capability differences, runner type registry
- Expanded API keys in workspaces.md: creation flow, expiration options,
  usage examples, security best practices
- Expanded permissions in workspaces.md: subject types, role capabilities,
  RBAC implementation, revoking access
- Keyboard shortcuts in quickstart-ui.md: Cmd+K command palette

Style fixes:
- Convert all quickstart headings to sentence case
- Convert scheduled sessions headings from gerund to imperative
- Fix number formatting with commas in workspaces tables

Technical review fixes:
- Gemini CLI session persistence corrected to No
- Public API phase mapping documents unmapped Stopped/Stopping states
- CORS defaults include apps-crc.testing origin
- CLI config path documented separately for Linux and macOS
- Architecture page notes tracing is conditional on deployment config

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

rh-pre-commit.version: 2.3.2
rh-pre-commit.check-secrets: ENABLED
@coderabbitai
Copy link

coderabbitai bot commented Mar 16, 2026

Walkthrough

Documentation enhancements across concepts, getting-started, development, and ecosystem sections. Additions include new documentation files for Scheduled Sessions, Public API, and CLI reference. Existing files expanded with new sections (Human-in-the-loop, Feedback, Runner types), clarified technical details (API field mappings, integration auth methods), and updated terminology and phrasing for consistency.

Changes

Cohort / File(s) Summary
New Documentation Files
docs/src/content/docs/concepts/scheduled-sessions.md, docs/src/content/docs/extensions/public-api.md, docs/src/content/docs/getting-started/cli.md
Added three comprehensive new documentation files: Scheduled Sessions (creation UI, settings, templates, management, run history), Public API (HTTP gateway, authentication, endpoints, rate limiting), and CLI reference (installation, authentication, session/project management, shell completion).
Concept Documentation Updates
docs/src/content/docs/concepts/context-and-artifacts.md, docs/src/content/docs/concepts/integrations.md, docs/src/content/docs/concepts/sessions.md, docs/src/content/docs/concepts/workspaces.md
Expanded model listings and field descriptions; updated integration scope (user-scoped, cluster-level), simplified GitLab/Jira/Google setup instructions with auth method clarifications; added Human-in-the-loop and Feedback sections to sessions; significantly expanded workspace sharing, permissions, roles, API keys, and security best practices.
Architecture Documentation
docs/src/content/docs/development/architecture.md
Updated session initiation endpoint path; generalized runner description from Claude CLI to polymorphic AI agent model; added new Runner types section detailing bridges (Claude Agent SDK, Gemini CLI, LangGraph), capabilities, and registry-based mechanism.
Ecosystem & Getting Started Updates
docs/src/content/docs/ecosystem/amber.md, docs/src/content/docs/getting-started/concepts.md, docs/src/content/docs/getting-started/quickstart-ui.md
Reworded Amber documentation from persona-driven to output-centric language; updated Sessions model enumeration and integration auth methods (PAT for GitLab, API token for Jira, OAuth for Google Drive); enhanced quickstart UI with status table, keyboard shortcuts, and clarified workflow steps.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately summarizes the main objectives: fixing technical inaccuracies and documenting previously undocumented features across the documentation set.
Description check ✅ Passed The description provides comprehensive context for the changes, detailing two commits with specific issues fixed and features added, agent execution summary, and test plan.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
📝 Coding Plan
  • Generate coding plan for human review comments

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Tip

You can disable sequence diagrams in the walkthrough.

Disable the reviews.sequence_diagrams setting to disable sequence diagrams in the walkthrough.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 4

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
docs/src/content/docs/getting-started/quickstart-ui.md (1)

65-65: ⚠️ Potential issue | 🟠 Major

Don’t lock quickstart status text to a specific runtime implementation.

Line 65 references Kubernetes directly, which is an internal detail likely to drift. Use platform-agnostic wording to keep the quickstart durable.

Proposed doc change
-| **Creating** | Kubernetes is provisioning the agent container. |
+| **Creating** | ACP is provisioning the session runtime. |

As per coding guidelines, "Focus on major issues impacting performance, readability, maintainability and security. Avoid nitpicks and avoid verbosity."

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/src/content/docs/getting-started/quickstart-ui.md` at line 65, Replace
the platform-specific text in the table row "| **Creating** | Kubernetes is
provisioning the agent container. |" with a platform-agnostic phrase (e.g., "The
environment is provisioning the agent container." or "The platform is
provisioning the agent container.") so the quickstart status doesn't reference
an internal runtime implementation; update the string used in that table cell
accordingly (look for the exact table row containing "**Creating**" and the
"Kubernetes is provisioning the agent container." text and swap it for a neutral
wording).
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@docs/src/content/docs/concepts/workspaces.md`:
- Around line 32-36: The docs statement that per-workspace custom S3 storage is
“planned” and unavailable is inaccurate; update
docs/src/content/docs/concepts/workspaces.md to reflect that storage can already
be configured per-project by using the project secret or falling back to
operator defaults (see getConfigForProject in
components/operator/internal/handlers/sessions.go). Edit the note to say that
per-project storage configuration is supported via project secrets, with
operator defaults as fallback, and that future UI/UX improvements may make
per-workspace configuration more user-friendly.

In `@docs/src/content/docs/ecosystem/amber.md`:
- Line 5: The copy makes absolute claims ("retains full awareness of every
file", "runs every lint check", "is always available") that can be falsified in
production; reword those phrases to a scoped, realistic statement such as
qualifying with "typically", "aims to", or "can help with", e.g., change the
clauses in the Amber description to indicate typical behavior or intent (refer
to the phrases "retains full awareness of every file", "runs every lint check",
and "is always available") so the text reflects likely behavior and failure
modes rather than absolute guarantees.

In `@docs/src/content/docs/extensions/public-api.md`:
- Line 191: The docs show the wrong default for CORS_ALLOWED_ORIGINS; update the
table entry for `CORS_ALLOWED_ORIGINS` in public-api.md so the default value in
the documentation matches the template's actual default (an empty string `""`)
instead of
`http://localhost:3000,http://localhost:8080,https://*.apps-crc.testing`; change
the default cell to `""` and leave the description unchanged.

In `@docs/src/content/docs/getting-started/quickstart-ui.md`:
- Line 44: Replace the hardcoded model/version list in the "**Model** -- Select
the LLM to use from the dropdown." sentence with a stable, generic instruction
like "Select an available model from the dropdown" and add a brief pointer to
the centralized models reference (and note that some models may be feature-gated
by administrators); update the sentence in quickstart-ui's "**Model**" section
to remove specific model names and instead refer readers to the models/reference
page for the current, authoritative list and feature-gate details.

---

Outside diff comments:
In `@docs/src/content/docs/getting-started/quickstart-ui.md`:
- Line 65: Replace the platform-specific text in the table row "| **Creating** |
Kubernetes is provisioning the agent container. |" with a platform-agnostic
phrase (e.g., "The environment is provisioning the agent container." or "The
platform is provisioning the agent container.") so the quickstart status doesn't
reference an internal runtime implementation; update the string used in that
table cell accordingly (look for the exact table row containing "**Creating**"
and the "Kubernetes is provisioning the agent container." text and swap it for a
neutral wording).

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: 50f3b773-4a83-4a45-a807-718fd9ea6865

📥 Commits

Reviewing files that changed from the base of the PR and between 6954e1e and 2020079.

📒 Files selected for processing (11)
  • docs/src/content/docs/concepts/context-and-artifacts.md
  • docs/src/content/docs/concepts/integrations.md
  • docs/src/content/docs/concepts/scheduled-sessions.md
  • docs/src/content/docs/concepts/sessions.md
  • docs/src/content/docs/concepts/workspaces.md
  • docs/src/content/docs/development/architecture.md
  • docs/src/content/docs/ecosystem/amber.md
  • docs/src/content/docs/extensions/public-api.md
  • docs/src/content/docs/getting-started/cli.md
  • docs/src/content/docs/getting-started/concepts.md
  • docs/src/content/docs/getting-started/quickstart-ui.md

Comment on lines +32 to +36
Session state is stored using a cluster-wide S3-compatible backend (such as MinIO) configured by the platform administrator.

- Bucket name, endpoint, region
- Access key and secret key
:::note
Custom S3-compatible storage configuration per workspace is a planned feature. Currently, all workspaces share the cluster-wide storage backend.
:::
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Storage capability statement appears too absolute and likely inaccurate

The doc says per-workspace custom storage is “planned” and “currently not available,” but components/operator/internal/handlers/sessions.go shows storage is resolved via getnConfigForProject(...) from project secret or operator defaults. This suggests project-level configuration already exists in at least some deployments.

Suggested wording fix
-Session state is stored using a cluster-wide S3-compatible backend (such as MinIO) configured by the platform administrator.
+Session state is stored using an S3-compatible backend (such as MinIO), typically configured cluster-wide by the platform administrator.

 :::note
-Custom S3-compatible storage configuration per workspace is a planned feature. Currently, all workspaces share the cluster-wide storage backend.
+By default, workspaces use the cluster-level storage configuration. Depending on deployment setup, project-level overrides may also be available.
 :::
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/src/content/docs/concepts/workspaces.md` around lines 32 - 36, The docs
statement that per-workspace custom S3 storage is “planned” and unavailable is
inaccurate; update docs/src/content/docs/concepts/workspaces.md to reflect that
storage can already be configured per-project by using the project secret or
falling back to operator defaults (see getConfigForProject in
components/operator/internal/handlers/sessions.go). Edit the note to say that
per-project storage configuration is supported via project secrets, with
operator defaults as fallback, and that future UI/UX improvements may make
per-workspace configuration more user-friendly.

---

[**Amber**](https://github.com/ambient-code/amber) is the Ambient Code Platform's AI-powered colleague. She is a codebase intelligence agent that reads your repositories, understands your project standards, and works alongside you -- from quick consultations to autonomous background maintenance. Think of Amber as a senior engineer who never forgets a file, never skips a lint check, and is always available.
[**Amber**](https://github.com/ambient-code/amber) is the Ambient Code Platform's AI-powered codebase intelligence agent. Amber reads your repositories, understands your project standards, and works alongside you -- from quick consultations to autonomous background maintenance. Amber retains full awareness of every file, runs every lint check, and is always available.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Avoid absolute guarantees that can be falsified in production.

“retains full awareness of every file,” “runs every lint check,” and “is always available” are hard guarantees that can fail due to permissions, configuration, or outages. Please scope these claims to typical behavior.

Suggested wording
-[**Amber**](https://github.com/ambient-code/amber) is the Ambient Code Platform's AI-powered codebase intelligence agent. Amber reads your repositories, understands your project standards, and works alongside you -- from quick consultations to autonomous background maintenance. Amber retains full awareness of every file, runs every lint check, and is always available.
+[**Amber**](https://github.com/ambient-code/amber) is the Ambient Code Platform's AI-powered codebase intelligence agent. Amber reads your attached repositories, understands your project standards, and works alongside you -- from quick consultations to autonomous background maintenance. Amber maintains awareness of session-accessible files, runs configured lint checks, and is available whenever your deployment and integrations are online.
As per coding guidelines, "**: Focus on major issues impacting performance, readability, maintainability and security. Avoid nitpicks and avoid verbosity."
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
[**Amber**](https://github.com/ambient-code/amber) is the Ambient Code Platform's AI-powered codebase intelligence agent. Amber reads your repositories, understands your project standards, and works alongside you -- from quick consultations to autonomous background maintenance. Amber retains full awareness of every file, runs every lint check, and is always available.
[**Amber**](https://github.com/ambient-code/amber) is the Ambient Code Platform's AI-powered codebase intelligence agent. Amber reads your attached repositories, understands your project standards, and works alongside you -- from quick consultations to autonomous background maintenance. Amber maintains awareness of session-accessible files, runs configured lint checks, and is available whenever your deployment and integrations are online.
🧰 Tools
🪛 LanguageTool

[style] ~5-~5: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...s to autonomous background maintenance. Amber retains full awareness of every file, r...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/src/content/docs/ecosystem/amber.md` at line 5, The copy makes absolute
claims ("retains full awareness of every file", "runs every lint check", "is
always available") that can be falsified in production; reword those phrases to
a scoped, realistic statement such as qualifying with "typically", "aims to", or
"can help with", e.g., change the clauses in the Amber description to indicate
typical behavior or intent (refer to the phrases "retains full awareness of
every file", "runs every lint check", and "is always available") so the text
reflects likely behavior and failure modes rather than absolute guarantees.

| `PORT` | `8081` | Port the gateway listens on |
| `RATE_LIMIT_RPS` | `100` | Maximum requests per second per IP |
| `RATE_LIMIT_BURST` | `200` | Maximum burst size per IP |
| `CORS_ALLOWED_ORIGINS` | `http://localhost:3000,http://localhost:8080,https://*.apps-crc.testing` | Comma-separated list of allowed CORS origins |
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify the actual CORS_ALLOWED_ORIGINS default value in the service template

rg -n "CORS_ALLOWED_ORIGINS" -A 3 components/ambient-api-server/templates/

Repository: ambient-code/platform

Length of output: 901


Update CORS_ALLOWED_ORIGINS default in documentation to match the actual default.

The documented default is http://localhost:3000,http://localhost:8080,https://*.apps-crc.testing, but the service template (components/ambient-api-server/templates/service-template.yml, line 95) defines it as an empty string (""). Update line 191 to reflect the correct default.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/src/content/docs/extensions/public-api.md` at line 191, The docs show
the wrong default for CORS_ALLOWED_ORIGINS; update the table entry for
`CORS_ALLOWED_ORIGINS` in public-api.md so the default value in the
documentation matches the template's actual default (an empty string `""`)
instead of
`http://localhost:3000,http://localhost:8080,https://*.apps-crc.testing`; change
the default cell to `""` and leave the description unchanged.

2. In the create session dialog, configure:
- **Display name** (optional) -- A human-readable label for the session.
- **Model** -- Select the LLM to use from the dropdown (Claude Sonnet 4.5, Claude Opus 4.6, Claude Opus 4.5, or Claude Haiku 4.5).
- **Model** -- Select the LLM to use from the dropdown. Available models include Claude Sonnet 4.5, Claude Opus 4.5, Claude Haiku 4.5, and Gemini 2.5 Flash (generally available), plus Claude Opus 4.6, Claude Sonnet 4.6, and Gemini 2.5 Pro (feature-gated, when enabled by your administrator).
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Avoid hardcoding model/version inventory in Quick start.

Line 44 will age quickly and become inaccurate. In Quick start, prefer stable guidance (“select an available model”) and point to a dedicated models/reference page for the current list and feature gates.

Proposed doc change
-   - **Model** -- Select the LLM to use from the dropdown. Available models include Claude Sonnet 4.5, Claude Opus 4.5, Claude Haiku 4.5, and Gemini 2.5 Flash (generally available), plus Claude Opus 4.6, Claude Sonnet 4.6, and Gemini 2.5 Pro (feature-gated, when enabled by your administrator).
+   - **Model** -- Select an available LLM from the dropdown. Model availability and feature-gated access depend on your organization configuration; see the models reference for the current catalog.

As per coding guidelines, "Focus on major issues impacting performance, readability, maintainability and security. Avoid nitpicks and avoid verbosity."

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- **Model** -- Select the LLM to use from the dropdown. Available models include Claude Sonnet 4.5, Claude Opus 4.5, Claude Haiku 4.5, and Gemini 2.5 Flash (generally available), plus Claude Opus 4.6, Claude Sonnet 4.6, and Gemini 2.5 Pro (feature-gated, when enabled by your administrator).
- **Model** -- Select an available LLM from the dropdown. Model availability and feature-gated access depend on your organization configuration; see the models reference for the current catalog.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/src/content/docs/getting-started/quickstart-ui.md` at line 44, Replace
the hardcoded model/version list in the "**Model** -- Select the LLM to use from
the dropdown." sentence with a stable, generic instruction like "Select an
available model from the dropdown" and add a brief pointer to the centralized
models reference (and note that some models may be feature-gated by
administrators); update the sentence in quickstart-ui's "**Model**" section to
remove specific model names and instead refer readers to the models/reference
page for the current, authoritative list and feature-gate details.

@ambient-code ambient-code bot added this to the Review Queue milestone Mar 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant