Merged
Conversation
- Bump claude-code version from 2.0.11 to 2.0.15 in manifest.toml - Update ADL CLI version from 0.23.7 to 0.23.8 in generated workflow and configuration files - Add headless configuration option to agent.yaml and BrowserConfig struct - Update Go module dependency for inference-gateway/adk from v0.15.1 to v0.15.2 - Add BROWSER_HEADLESS variable to README for browser configuration - Refactor main.go to streamline artifact server creation Signed-off-by: Eden Reich <eden.reich@gmail.com>
- Fix hardcoded headless value in NewBrowserConfigFromConfig function - Now properly reads BROWSER_HEADLESS environment variable - Allows users to disable headless mode for debugging and development - All tests pass successfully 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
ig-semantic-release-bot bot
pushed a commit
that referenced
this pull request
Oct 18, 2025
## [0.4.0](v0.3.4...v0.4.0) (2025-10-18) ### ✨ Features * Add headless configuration ([#37](#37)) ([c08b4fb](c08b4fb))
|
🎉 This PR is included in version 0.4.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds headless browser configuration support and updates project dependencies to their latest versions.
Key Changes
Browser Configuration:
BROWSER_HEADLESSenvironment variable support (default:true)NewBrowserConfigFromConfigfunction (internal/playwright/playwright.go:92)BROWSER_HEADLESS=falseBROWSER_HEADLESSconfiguration documentationDependency Updates:
Refactoring:
Configuration Usage
Users can now control headless mode via environment variable:
Testing
Files Changed
agent.yaml- Added headless configurationconfig/config.go- Added Headless field to BrowserConfig structinternal/playwright/playwright.go- Fixed hardcoded headless value to use configREADME.md- Documented BROWSER_HEADLESS variablemain.go- Refactored artifact server creation.flox/env/manifest.toml- Updated Claude Code version.github/workflows/ci.yml- Updated ADL CLI versiongo.mod/go.sum- Updated ADK dependency🤖 Generated with Claude Code