Merged
Conversation
Bumps [esbuild](https://github.com/evanw/esbuild) to 0.27.3 and updates ancestor dependency [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). These dependencies need to be updated together. Updates `esbuild` from 0.21.5 to 0.27.3 - [Release notes](https://github.com/evanw/esbuild/releases) - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md) - [Commits](evanw/esbuild@v0.21.5...v0.27.3) Updates `vite` from 5.4.21 to 7.3.1 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v7.3.1/packages/vite) --- updated-dependencies: - dependency-name: esbuild dependency-version: 0.27.3 dependency-type: indirect - dependency-name: vite dependency-version: 7.3.1 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
vamsiramakrishnan
referenced
this pull request
in vamsiramakrishnan/scion
Mar 29, 2026
Agent-to-Agent Orchestration (#1): - Add hub_access_scopes field to ScionConfig (api/types.go) allowing templates to declare JWT scopes for agent-to-agent operations - Architect template pre-configured with grove:agent:create, grove:agent:lifecycle, grove:agent:notify scopes - Scopes flow through token generation, enabling lead-agent patterns Live Activity Feed (GoogleCloudPlatform#3): - New SSE endpoint: GET /api/v1/activity-feed?grove_id=<id> - Streams all agent events (status, created, deleted, broker) in a grove - Enriches raw events into ActivityFeedItem with typed fields - 15-second heartbeat keepalive - Backend for "mission control" multi-agent monitoring view Cost Dashboard API (GoogleCloudPlatform#5): - New endpoint: GET /api/v1/groves/{groveId}/cost-summary - Returns CostSummary with total cost, tokens, and breakdowns - ByModel: aggregated cost per model (claude-opus, gemini-flash, etc.) - ByAgent: per-agent cost with turns and token counts - Designed to consume harness-native cost data from sciontool Webhook Integration (GoogleCloudPlatform#9): - New WebhookDispatcher with HMAC-SHA256 signed payloads - Configurable webhook endpoints with event pattern filtering - Exponential backoff retry (3 attempts: 1s, 2s, 4s) - Delivery success/failure metrics - Supports Slack, Discord, and generic webhook endpoints - X-Scion-Signature header for verification https://claude.ai/code/session_01TDLLMgpR2ZbfyPzgYqnJ1k
vamsiramakrishnan
referenced
this pull request
in vamsiramakrishnan/scion
Mar 29, 2026
Complete rewrite of the quickstart command into a 7-step interactive wizard that handles the entire setup flow: Step 1 — Prerequisites: - Checks git and container runtime with version display - macOS-aware (checks for Apple container runtime first) Step 2 — Machine Init: - Auto-creates ~/.scion with templates and harness configs - Skips if already initialized Step 3 — Container Images (the #1 friction point): - Interactive menu with 4 options: - Use existing registry (just enter the path) - Build locally now (runs build-images.sh automatically) - Build via GitHub Actions (shows step-by-step instructions) - Skip for now (with clear remediation command) - Auto-configures image_registry after successful build Step 4 — API Credentials: - Detects existing keys with masked display (sk-a...xyz1) - Interactive provider selection (Anthropic/Google/OpenAI/Vertex) - Secure input via golang.org/x/term.ReadPassword (hidden typing) - Direct link to each provider's API key page - Offers to persist to shell RC file (.zshrc/.bashrc/.config/fish) - Shows Vertex AI setup commands for GCP users Step 5 — Project Grove: - Auto-detects if already initialized - One-key confirmation to init in current directory Step 6 — Shell Completions: - Auto-detects shell (zsh/bash/fish) - Auto-installs completions to correct directory - Falls back to manual instructions Step 7 — Summary: - Shows status dashboard (images/creds/grove) with remediation hints - Ready-to-paste first agent command if everything is configured DX improvements over previous version: - Clear screen + banner for immersive experience - Consistent check/cross/warning symbols for status - Masked API key display for security - Direct links to key provisioning pages - Shell RC persistence for API keys (no more copy-paste exports) - Image build integrated into the flow (not a separate step) - Status summary shows exactly what's missing and how to fix it https://claude.ai/code/session_01TDLLMgpR2ZbfyPzgYqnJ1k
vamsiramakrishnan
referenced
this pull request
in vamsiramakrishnan/scion
Mar 29, 2026
… command Progress During scion start (#1 DX pain): - Add ProgressFunc callback to StartOptions (api/types.go) - Wire 5 progress steps through agent Start flow: "Preparing workspace..." → "Resolving credentials..." → "Checking container image..." → "Pulling image..." → "Starting container..." - CLI displays each step as it happens (cmd/common.go) - Add "Waiting for agent to initialize..." before tmux polling - Eliminates the 10-30 second silence that made users think CLI was hung - JSON output mode suppresses progress (clean machine output) Delete Confirmation (GoogleCloudPlatform#2 DX pain): - Add confirmation prompt before local agent deletion: "Delete 2 agent(s) (including git branches): agent-a, agent-b" "Are you sure? [y/N]" - Default is NO (safe by default) - --force / -f flag skips confirmation for scripts - JSON output mode skips confirmation (scripting compatibility) - Shows branch warning when --preserve-branch is NOT set Actionable Error Messages: - tmux timeout error now includes troubleshooting steps: "Check container logs: scion logs <name>" "Verify image exists: docker images | grep scion" "Check Docker is running: docker info" scion status Command: - New `scion status` — single health dashboard like `git status` - Shows: container runtime (version), image registry, credentials - Shows: current grove context with path - Shows: running agents with color-coded status indicators - Shows: contextual hints when things are missing - Green checkmarks for healthy, red crosses with fix commands for broken https://claude.ai/code/session_01TDLLMgpR2ZbfyPzgYqnJ1k
This was referenced Apr 8, 2026
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.
Bumps esbuild to 0.27.3 and updates ancestor dependency vite. These dependencies need to be updated together.
Updates
esbuildfrom 0.21.5 to 0.27.3Release notes
Sourced from esbuild's releases.
... (truncated)
Changelog
Sourced from esbuild's changelog.
... (truncated)
Commits
9129e00publish 0.27.3 to npme20e411small fix to release notes0dc0f2dfix #4322: parse and print CSS@scoperules55fe391update firefox css gradient support2c35297update gradient lowering transform9209e44Update Go to 1.25.7 (#4388)e8d861bclose #4374: compat table for theusingfeature19b8887no longer needwilliamkapke/node-compat-table7e44218thekangax/compat-tablerepo moved to a new url23b9338runmake update-compat-tableMaintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for esbuild since your current version.
Updates
vitefrom 5.4.21 to 7.3.1Release notes
Sourced from vite's releases.
... (truncated)
Changelog
Sourced from vite's changelog.
... (truncated)
Commits
95e8923release: v7.3.19d39d37feat: addignoreOutdatedRequestsoption tooptimizeDeps(#21364)acf7e05release: v7.3.0cff26ecfeat(deps): update esbuild from ^0.25.0 to ^0.27.0 (#21183)317b3b2release: v7.2.7721f163fix: plugin shortcut support (#21211)bda5dbbrelease: v7.2.63aa7527release: v7.2.572e398afix(deps): update all non-major dependencies (#21175)3765f7bfix: shortcuts not rebound after server restart (#21166)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.