feat: DX polish — default local, embedded agent config, Quick Start#55
Merged
Conversation
… Start - Make --local the default for `harness up` (no flags = local gateway). Previously required explicit --local flag or errored with "no active gateway". - Embed agents/default.yaml in the binary via go:embed. When no agents/ directory exists on disk, the binary uses its embedded default config. Disk configs take precedence. Only falls back for the "default" agent name. - Restructure README with Quick Start section: binary download, set GITHUB_TOKEN, harness up. Targets the app pack model where the binary is self-contained for the local case. - Add TODOS.md with registerProviders agent-scoped filtering item.
…rtex Embed agents/builtin.yaml (github, vertex-local, atlassian) instead of the full default.yaml which includes GWS. GWS requires OAuth setup too heavy for a Quick Start. Update README Quick Start to show github + jira credentials explicitly and note that missing credentials are skipped gracefully.
Builds CLI, sandbox image, and runner image silently (layer-cached), pushes to registry, then runs harness with SANDBOX_IMAGE and RUNNER_IMAGE set to the dev tags. SKIP_PUSH=1 for local-only dev.
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
--localdefault:harness upwithout flags now auto-deploys the local gateway. Previously required explicit--localor errored. One-line change (ensureLocal: !remote).agents/default.yaml) is embedded in the binary viago:embed. Binary works standalone without anagents/directory on disk. Disk configs take precedence over the builtin.harness up. Targets the app pack model — no repo clone needed.registerProvidersagent-scoped filtering (outside voice finding).Test plan
CGO_ENABLED=0 go test ./...— all pass (8 packages)TestUpLocal_EnsureLocal_DeploysGateway— covers the new default pathTestResolveAgentConfig_*(4 tests) — embedded fallback, disk override, explicit file no fallback, non-default name no fallbackharness upfrom repo root with local gateway running🤖 Generated with Claude Code