Thanks to visit codestin.com
Credit goes to github.com

Skip to content

refactor: modernize Go runtime packages - #293

Merged
pedronauck merged 6 commits into
mainfrom
refac-go
Aug 5, 2026
Merged

refactor: modernize Go runtime packages#293
pedronauck merged 6 commits into
mainfrom
refac-go

Conversation

@pedronauck

@pedronauck pedronauck commented Aug 3, 2026

Copy link
Copy Markdown
Member

Status

Important

This pull request is intentionally Draft. It is a portable checkpoint for the ongoing Go modernization workstream, not a merge-ready completion claim.

The branch contains a large, evidence-driven modernization and hardening pass across the Go runtime, SDK, tests, generated contracts, public documentation, the official Compozy skill, and living QA artifacts. The complete package audit has been performed, but the remaining backlog, upstream reconciliation, public QA, and one fresh final make gate-full still need to be completed before this PR can leave Draft.

Summary

This PR:

  • audits every Go package under cmd/, internal/, and sdk/go/ against the requested Go 1.21–1.26 feature set;
  • restarts that audit under the updated golang-master rules instead of relying on conclusions made under the prior skill version;
  • applies modern standard-library APIs only where package-level evidence proves semantic equivalence;
  • removes confirmed duplication, dead code, unsafe cleanup, lifecycle ambiguity, and overly broad interfaces without changing established business rules;
  • hardens filesystem, SQLite, task-settlement, provider, extension, registry, bridge, MCP, and runtime lifecycle boundaries;
  • preserves the durable Loop feedback behavior introduced by PR feat: adopt feedback semantics for durable Loops #290;
  • co-ships generated output, public docs, the official skills/compozy references, and QA tracker changes where public behavior changed;
  • records the exact remaining work in a committed backlog and cross-machine handoff.

Portable sources of truth:

Why

The runtime had accumulated several classes of risk that could not be solved safely with mechanical rewrites:

  • goroutines admitted without one cancel/join owner;
  • cleanup and close errors silently discarded;
  • path validation followed by pathname-based mutation, leaving time-of-check/time-of-use windows;
  • session databases trusted from caller-provided session IDs without immutable workspace or physical-family attestation;
  • task state and its canonical event committed in different transactions;
  • fallible ID allocation occurring after irreversible effects;
  • broad client interfaces leaking hundreds of unrelated methods into narrow command consumers;
  • provider and extension diagnostics exposing or deriving unsafe implementation details;
  • false public configuration surfaces whose values were accepted but never consumed;
  • tests using fixed sleeps, weak cleanup, or implementation-shape assertions instead of domain invariants;
  • modern Go features being either underused or proposed without proving nil, ordering, cancellation, allocation, and wire-contract equivalence.

This work treats every modernization suggestion as a hypothesis. A feature is adopted only when its owning package proves the behavior. Candidates that would invent policy, weaken cancellation, retain sensitive values, change wire contracts, or distort benchmarks are explicitly rejected or deferred.

Audit coverage

The restarted audit uses Go 1.26.4 and covers:

  • 147 buildable packages;
  • 5,097 Go files;
  • every top-level internal/ package;
  • all cmd/ binaries;
  • the separate sdk/go module;
  • generated and integration-test consumers needed to validate changed contracts.

Eight non-overlapping evidence slices cover the complete tree:

  1. command and configuration;
  2. API and transports;
  3. daemon and lifecycle;
  4. sessions and workspaces;
  5. persistence and memory;
  6. orchestration and domain logic;
  7. extensions and bridges;
  8. tooling, security, and SDK behavior.

The audit re-evaluates all 20 requested feature families, including:

  • errors.AsType[T];
  • b.Loop();
  • JSON omitzero;
  • os.OpenRoot / os.Root;
  • SplitSeq, FieldsSeq, and Lines;
  • sync.WaitGroup.Go;
  • range over integer;
  • slices, maps, min, and max;
  • testing/synctest;
  • iter.Seq and range-over-function;
  • os.Process.WithHandle and ErrNoHandle;
  • OnceFunc, OnceValue, and OnceValues;
  • math/rand/v2;
  • cmp.Or;
  • T.ArtifactDir, T.Attr, and T.Output;
  • http.CrossOriginProtection;
  • runtime/trace.FlightRecorder;
  • typed Unix/TCP dialing;
  • bytes.Buffer.Peek;
  • unique.

The exact adoption/rejection evidence for each feature is in the committed backlog. Notable examples:

  • b.Loop() is adopted only after benchmark setup no longer depends on b.N.
  • WaitGroup.Go is used only where admission is already excluded from racing a zero-count Wait.
  • AsType[T] is used where the typed value is consumed; predicate-only checks retain errors.As because discarding the returned error violates repository policy.
  • os.Process.WithHandle is not applied mechanically because Signal and Kill already use retained handles where available.
  • FlightRecorder is deferred to a separate policy-bearing goal because it is process-global, synchronous to export, and can contain sensitive raw traces.
  • unique is rejected without heap-profile evidence because process-lifetime retention of dynamic or sensitive strings would be a regression.

Major implementation areas

Runtime, lifecycle, and cleanup ownership

  • Daemon shutdown is a shared, retryable operation whose targets remain published until teardown succeeds.
  • Concurrent shutdown callers join the same operation with independent contexts.
  • Support, subprocess, hook, harness, session, and selected worker lifecycles have explicit admission, cancellation, join, and terminal publication boundaries.
  • Accepted subprocess handler goroutines complete before transport termination is published.
  • Hook termination uses bounded TERM/grace/kill/join semantics.
  • HTTP and UDS integration fixtures own their session managers and causal worker completion instead of relying on fixed sleeps.
  • Close, shutdown, body-close, row-close, and rollback errors are preserved or joined rather than silently discarded.
  • Selected exact WaitGroup.Go, OnceFunc, OnceValue, OnceValues, and testing/synctest candidates replace ceremony without changing lifetime rules.

SDK and transport hardening

  • SDK JSON-line framing rejects oversized frames before unbounded allocation and preserves partial-EOF behavior.
  • SSE decoding is caller-owned over io.Reader; HTTP callers own context cancellation and exactly one body close.
  • Bridge SDK terminal publication occurs only after pending calls are unblocked and all accepted work is joined.
  • Constructors reject invalid I/O and handler panics are contained as sanitized RPC errors.
  • Typed contextual Unix dialing is used at exact UDS call sites while preserving generic injected callback contracts.

Browser and HTTP security

  • Browser-reachable unsafe API methods validate the configured Host and apply cross-origin protection.
  • Public webhooks and OAuth callbacks retain their required reachability.
  • Host validation closes the same-origin DNS-rebinding assumption that CrossOriginProtection alone cannot address.
  • Public errors remain bounded and do not expose filesystem paths, raw commands, claims, or internal causes.

Filesystem capabilities and publication

  • Daytona archive extraction uses os.Root-confined operations and rejects absolute paths, escaping symlinks, overwrite-through-symlink, and unsafe archive forms.
  • Registry and Session destructive paths retain exact file or directory identity through move, rollback, cleanup, and recovery.
  • Unix directory and regular-file moves use private transaction directories, exact retained inode checks, typed recovery errors, and fail-closed collision handling.
  • Windows paths use exact-handle removal where available and reject unsafe path forms such as NTFS alternate data streams and invalid/overlong names.
  • Atomic publication, replacement journals, rollback state, and cleanup diagnostics preserve enough durable evidence to distinguish pre-commit, committed, and recoverable states.

Cryptographic identity allocation

  • Store-wide generated IDs now use an error-returning crypto/rand hard cut with no timestamp or pseudorandom fallback.
  • Callers reserve every fallible ID required by an operation before its first irreversible effect.
  • Second, third, and later entropy-failure regressions prove no partial rows, events, prompts, hooks, locks, notifications, terminal commands, or session stops are published.
  • The same discipline covers Task, Session repair, PR feat: adopt feedback semantics for durable Loops #290 post-commit wakes, Heartbeat correction, Memory dream, authoring, bridges, sidecars, Loop, Network, and store batches.
  • Durable workspace identity uses error-returning ULID generation and fails before filesystem or SQL publication.

Task durability and settlement

  • Terminal commands use a durable workspace/task/run-scoped state machine.
  • Admission is fenced transactionally, physical process stop occurs outside SQLite, and settlement is atomic.
  • Ambiguous external stop failure retains the durable command for exact-once reopen recovery.
  • Boot recovery stops a known-live orphan before committing durable failure.
  • Task, run, coordinator, and canonical event transitions use purpose-specific transactional capabilities.
  • Coordinator completion and its canonical event are committed in one GlobalDB transaction.
  • Claim-token material is rejected or normalized from durable results, keys, payloads, failure metadata, and cancellation metadata.
  • The exported generic run-mutation callback escape and full-row nonterminal writer were removed.
  • Operation-wide event IDs are reserved before Task mutation, including cancellation trees, review, pause/resume, dependency, block, wake, auto-enqueue, coordinator, terminal-command, and advisory-event paths.

PR #290 preservation

PR #290's durable Loop feedback and post-commit wake semantics were inspected and preserved during rebase integration.

Local migration conflicts were resolved by renumbering local migrations without editing the PR #290 migration bytes. Task terminalization now owns GlobalDB migration 00042.

Protected hashes at this checkpoint:

GlobalDB 00037  6b53130235abc1b31de4f10ce77a06b1f48bd717d85f07a020879855f36d341c
GlobalDB 00038  8f934ac877e8bf363c71c89fd10edcc188ba14fa3cb3bb871715a7f19c3b91aa
GlobalDB 00042  6592ef4e85c374801a9dec46c950d11096cce1837869c0b1a899e8c4ed0b2fff
GlobalDB atlas  31178f630d5e414c9c70223fd610ef12c8a808ae3346da3c9a2b7d076f99e614

Existing migration bytes must remain immutable. Any future schema change must be append-only.

Provider, extension, registry, bridge, and MCP boundaries

  • Provider pre-start results are scoped, bounded, TTL-expiring, and keyed by final non-secret runtime identity.
  • Terminal negative launch resolution is retained instead of being re-resolved into a different diagnostic.
  • Raw provider login commands are write-only across config, CLI, API, UDS, native tools, Web, docs, and settings projections; safe public descriptors remain readable.
  • Extension startup uses typed safe failure codes, bounded diagnostics, exact rollback, and generation-safe source cleanup.
  • Private Host API grant identity remains distinct from stable public extension identity.
  • Registry publication, recovery, archive extraction, staging ownership, and cleanup diagnostics are capability-bound.
  • Marketplace typed absence/unavailability classification preserves status precedence.
  • MCP reflected-secret redaction covers reversible binary encodings, JSON keys and values, percent encodings, malformed suffixes, collision failure, result projection, error trees, cache/provider flows, and stdio secret environments.
  • Notification, bridge subscription, delivery, cursor, and metric identifiers round-trip as opaque values without trimming or accidental normalization.

Memory, recall, heartbeat, and knowledge refresh

  • Dead-entity Mark/Clear publication is ordered by durable revision without holding state mutexes during I/O.
  • Generation-safe memory-only forget operations do not invent durable deletion semantics.
  • Recall lifecycle work has explicit recorder ownership, service cancellation, and terminal publication ordering.
  • Heartbeat, soul, dream, and authoring operations allocate all required IDs before mutation and preserve rollback errors.
  • Workspace knowledge refresh and prompt augmentation are implemented with workspace isolation and failure-preserving update behavior.

SessionDB owner and physical-family hard cut

Every per-session events.db is now bound to:

  • an immutable {session_id, workspace_id} owner; and
  • an immutable physical database_id for that exact SQLite family.

The owner is propagated through writers, readers, read-only pools, Manager queries, Observe, ledgers, demo seeders, extension fixtures, GlobalDB Watch Events, CLI, HTTP, UDS, SSE, and event consumers.

The implementation provides:

  • immutable GlobalDB session workspace ownership;
  • append-only SessionDB owner and physical-identity schema;
  • capability-bound fresh-file publication;
  • existing-file opens that never create or adopt ownerless state;
  • validation before operational I/O and again on every actual physical SQLite connection;
  • family leases, pinned-file mutation stamps, pool quiescence, and exact identity checks;
  • byte-identical refusal for missing owner, mismatched owner, legacy/ahead schema, or physical-family substitution;
  • exact Clear backup, rollback, discard, and recovery ownership;
  • exact Delete tombstone ownership and startup recovery;
  • durable Clear manifests with generation, sidecar digests, phase, and transcript epoch;
  • Clear/Stop finalization exclusion;
  • read-only and writable same-owner ABA replacement detection.

SessionDB migrations now extend through v5. Migration v5 creates one immutable 32-character lowercase hexadecimal database_id, seeds it during fresh bootstrap or v4 upgrade, and prevents later insert/update/delete.

Final PM01 review remediation

Six formal internal review rounds were performed. The operator explicitly ended the loop after round 6; this PR does not request a seventh automated Deep Review round.

All eight findings from round 6 were remediated in commit 3e35bf90:

  1. Unix directory rollback restores the exact operation-retained inode before deleting private transaction state.
  2. Non-Unix builds contain the required recovery locator.
  3. Directory recovery joins close errors with the primary identity error.
  4. Clear commit authority is durable in the manifest rather than depending on a separately removable marker.
  5. Concurrent Stop and RequestStop wait for Clear finalization.
  6. The GlobalDB 00042 migration regression uses a canonical Should … subtest.
  7. Same-owner SQLite ABA replacement is rejected by immutable physical connection identity.
  8. Read-only and writable regressions force and prove the after-open ABA path.

The committed backlog records PM01 as Verified, while correctly keeping the post-v5 public QA replay and workstream-final gate pending.

Hard cuts and compatibility posture

This repository is greenfield alpha. The PR intentionally avoids compatibility bridges:

  • no SessionDB owner adoption or rebinding;
  • no repair of ownerless or foreign session databases;
  • no fallback to timestamp/pseudorandom IDs;
  • no aliases for deleted configuration fields;
  • no dual raw/safe provider login-command read contract;
  • no generic mutation escape retained beside the purpose-specific transactional API;
  • no weakening of migration integrity or editing of existing migration bytes;
  • no test changes that make production defects disappear.

Obsolete paths are deleted or rejected explicitly rather than supported in parallel.

Compozy Impact Audit

Native tools

The SessionDB v5, exact rollback, and Clear-finalization delta does not add or change a compozy__* tool ID, toolset, descriptor, I/O schema, digest, risk flag, availability diagnostic, or capability gate. Session history, events, and clear keep their existing CLI, HTTP, UDS, core, and native fallback contracts.

Earlier accumulated Task, notification, registry, provider, MCP, and automation changes co-ship their native descriptors and tests. These surfaces must be reconciled after rebasing onto current main, particularly where PR #291 removed bundles in favor of extension kits.

Extensibility and hooks

The final SessionDB delta introduces no new extension, hook event, capability, tool/resource, bundle, registry, Bridge SDK, MCP sidecar, or config.toml key/default. Session Stop now waits for an admitted Clear finalization, but hook names, payloads, post-commit ordering, and extension capability surfaces are unchanged.

The broader PR directly affects extension startup authority, resource source sessions, bridge delivery identity/lifecycle, hook completion, provider probes, MCP auth, Registry installation, marketplace classification, and public Go SDK lifecycle. Those changes include focused contract and integration evidence.

Workspace data isolation

session_db_owner is session-scoped and embeds the workspace owner. session_db_identity is scoped to one physical SessionDB family and never leaves the local SQLite database.

Owner and physical identity propagate through CLI/HTTP/UDS → core/Manager → readers/writers/pools/connectors. SSE, event, cache, and watch paths cannot relabel or reuse a foreign family. Missing, foreign, same-owner-replaced, legacy, or ahead families are refused before mutation.

The wider PR also preserves workspace identity through notification cursors/deliveries, provider cache keys, Task/automation transactions, filesystem roots, events, caches, and cross-surface query paths.

Official Compozy skill

Public runtime and Task behavior is reflected in:

  • skills/compozy/references/runtime-operations.md
  • skills/compozy/references/tasks-and-orchestration.md

The physical SessionDB database_id and Clear manifest phase are internal recovery details and do not add a public tool, CLI path, hook, capability, bundle/resource, memory/network/task semantic, or operator configuration field.

Web and documentation

The final PM01 delta does not change web/ or packages/ui, so it requires no UI screenshot. Site database and session lifecycle docs describe fail-closed whole-family ownership and recovery without promising adoption, rebinding, repair, or a new configuration surface.

Other public changes in the accumulated branch include generated OpenAPI/types, provider surfaces, Task terminalization, notification behavior, Registry/marketplace behavior, and corresponding site/skill documentation.

QA tracker

Session event owner isolation

docs/qa/scenarios/RT-session-event-owner-isolation.md is currently untested for the v5 delta.

The earlier targeted walk passed:

  • two real sessions in separate workspaces;
  • boot repair refusal;
  • CLI history/events refusal;
  • HTTP refusal;
  • direct UDS refusal;
  • byte-identical events.db/WAL/SHM preservation;
  • sibling-session availability;
  • complete-family restore;
  • mandatory teardown with clean=true and zero surviving processes.

That evidence predates physical database_id, so the next walk must repeat the public contract and add same-owner physical-family continuity/replacement without editing owner or identity rows.

Historical report:

  • docs/qa/reports/2026-08-03-session-event-owner-isolation.md

Clear conversation

docs/qa/scenarios/RT-017.md remains blocked-verify.

Its next isolated walk must prove:

  • clear/reload persistence;
  • durable committed-manifest recovery;
  • transcript-epoch continuity;
  • concurrent Clear/Stop convergence;
  • mandatory clean teardown.

Other known QA work

  • Provider RT-026 remains blocked-verify because the isolated lab did not have a real Daytona backend or CLI. A fake is not acceptable evidence for that clause.
  • Vault MS-040 still needs isolated execution before the technically accepted Vault work can be marked Verified.
  • Several Task, notification, Registry, MCP, and public-contract scenarios remain pending in the living tracker and committed backlog.
  • Package tests must not be used to promote public scenarios to pass.

Validation completed

Focused evidence completed across the workstream includes:

  • complete affected package compilation, including integration-tag builds where relevant;
  • repeated -race suites for Task, GlobalDB, SessionDB, Session, Fileutil, Daemon, HTTP/UDS, Bridge SDK, Registry, Provider, Extension, MCP, Memory, Heartbeat, Soul, and other changed owners;
  • focused Windows cross-compilation for portable/platform-sensitive packages;
  • go vet on affected owners;
  • zero-issue Go lint after the final local lint remediation;
  • make codegen and make codegen-check for schema/OpenAPI/generated-code owners;
  • repo-root Bun lint, typecheck, tests, and builds for affected public surfaces during their source-freeze checkpoints;
  • test-convention checks for changed canonical cases;
  • production source file-cap checks;
  • protected migration hashes;
  • formatting and git diff --check.

The final PM01 remediation specifically passed:

  • 19 focused Fileutil recovery cases;
  • 24 focused SessionDB owner/open/read-only/migration/ABA cases;
  • four focused Clear/ledger cases;
  • 881 affected non-race tests across Fileutil, SessionDB, and Session;
  • the same 881 tests under -race;
  • the focused GlobalDB 00042 migration/reopen regression;
  • Windows compile-only checks for Fileutil, SessionDB, and Session;
  • changed-suite convention checks for Fileutil, Session, and SessionDB;
  • make go-lint with zero issues after the local findings were fixed.

Full-gate status

This Draft PR does not claim a current green make gate-full.

The retained gate status at checkpoint was:

full         fail STALE   log=.cache/gate/logs/full-1785783802.log
go-lint      pass STALE
go-test      pass STALE
sdk-go-test  pass STALE

The stale full failure came from the first escalated run before six local lint findings were fixed. Those findings were then fixed, and make go-lint passed with zero issues. A later full run ended without publishing a reusable full record. The operator explicitly requested that the checkpoint skip further gates and proceed to commits, backlog, Impact Audit, QA tracker, and handoff.

Before this PR can leave Draft, it still needs one fresh make gate-full after the final mutation and after current main has been reconciled.

Current upstream divergence

The branch was rebased onto main commit d30b810a after PR #290. Since then, origin/main advanced with:

0385983a fix: changelog generation (#292)
530a78df refactor: replace bundles with extension kits (#291)
cff6dae4 fix: assistant-ui version

At Draft creation time, the branch has four commits not in origin/main, while origin/main has three commits not in this branch.

The next source-changing step must use the repository git-rebase workflow and inspect #291 carefully. Bundle, extension, Registry, bridge, public docs, official skill, generated contract, and QA conflicts must preserve the intended hard cut from both branches rather than silently selecting one side.

Remaining backlog before Ready for Review

The committed execution backlog currently contains:

8 Active rows
3 Decision rows
39 Open rows
15 Partial rows

This Draft is intentionally large because it preserves the exact checkpoint while remaining explicit about incomplete work.

Highest-value active items include:

  • reconcile the branch with PR refactor: replace bundles with extension kits #291/fix: changelog generation #292/current main;
  • complete Provider RT-026 with a real Daytona backend;
  • narrow the 213-method CLI DaemonClient at consumer-owned interfaces after frozen surfaces are reconciled;
  • continue classified context-ownership waves without mechanically inheriting request cancellation;
  • reconcile the Recall recorder's current source-freeze/review state;
  • finish generation-safe, memory-only dead-entity lifecycle wiring without inventing a durable delete semantic;
  • hard-delete inert memory.recall.signals.metrics_enabled across config, CLI/native, API/UDS, Web, OpenAPI, docs, tests, and QA after Recall source freeze, with no alias or migration;
  • execute Vault MS-040;
  • resolve explicit product decisions for durable dead-entity removal, integer-width contracts, and at-cap/reflection responsibility;
  • complete remaining ACP/Session lifecycle, daemon context, memory confinement, bundle compensation, hook/SDK lifecycle, typed-error, interface-narrowing, and P2/P3 cleanup owners;
  • refresh the package/file matrix only for source added or changed by upstream reconciliation;
  • update public docs, the official skill, contracts, and QA tracker for any new surface changes;
  • run all affected public QA scenarios in fresh isolated labs with mandatory clean teardown;
  • run deslop and final verification at true workstream completion;
  • run one current make gate-full after the final mutation;
  • commit the final remediation/verification batch.

The complete row-by-row queue and evidence is in .compozy/tasks/go-modernization/analysis/golang-master/current-backlog.md.

Commit checkpoints

The portable checkpoint is anchored by:

3e35bf90 refactor: modernize Go runtime packages
147a005b docs: record Go modernization handoff

The second commit deliberately force-adds .compozy/tasks/go-modernization/**, which is normally ignored, so another machine and reviewer can recover the exact analysis, backlog, and continuation state.

Reviewer guidance

  • Treat this PR as an implementation checkpoint plus explicit remaining backlog, not as a completion claim.
  • Do not request mechanical adoption of a Go feature where the audit records a semantic rejection.
  • Do not edit existing migration bytes; add a new append-only migration if a schema change is genuinely required.
  • Do not weaken a failing canonical test to make aggregate verification pass.
  • Preserve PR feat: adopt feedback semantics for durable Loops #290 durable feedback/wake behavior during the upcoming rebase.
  • Reconcile PR refactor: replace bundles with extension kits #291's bundle-to-extension-kit hard cut across runtime, docs, skill, generated surfaces, and QA.
  • Avoid reopening source-frozen Task, Notification, HTTP/UDS, Bridge, Provider, Registry, Extension, entropy, or PM01 owners without a concrete source-backed defect or upstream conflict.
  • No seventh automated Deep Review round is planned; normal GitHub review feedback remains welcome and should be addressed as ordinary PR findings.

Draft completion checklist

  • Restart package analysis under the updated Go skills.
  • Cover all requested Go packages and all 20 feature families.
  • Preserve PR feat: adopt feedback semantics for durable Loops #290 behavior and migration identity.
  • Commit accumulated implementation and generated artifacts.
  • Remediate all eight final PM01 round-6 findings.
  • Commit the current backlog, Impact Audit, QA tracker updates, and cross-machine handoff.
  • Rebase onto current origin/main and reconcile PR refactor: replace bundles with extension kits #291/fix: changelog generation #292.
  • Resolve or explicitly dispose every remaining Active/Open/Partial/Decision backlog row.
  • Complete pending public QA with clean teardown evidence.
  • Refresh Compozy Impact Audit after final source changes.
  • Run deslop/final verification.
  • Run one fresh final make gate-full and record a current passing fingerprint.
  • Move the PR out of Draft only after the above evidence is complete.

@vercel

vercel Bot commented Aug 3, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
compozy-site Ready Ready Preview Aug 4, 2026 11:42pm

Request Review

@coderabbitai

coderabbitai Bot commented Aug 3, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Too many files!

This PR contains 1684 files, which is 1384 over the limit of 300.

To get a review, reduce the PR to 300 files or fewer by splitting it into smaller PRs or changing its base branch.

Usage-priced reviews support at most 300 files.

⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: 36d54cdb-dab4-46cf-83a4-d2515eff0102

📥 Commits

Reviewing files that changed from the base of the PR and between 170359a and 082144b.

⛔ Files ignored due to path filters (126)
  • .agents/skills/eng/eng-qa-bootstrap/SKILL.md is excluded by !**/*.md, !.agents/**
  • .agents/skills/eng/eng-qa-bootstrap/references/bootstrap-contract.md is excluded by !**/*.md, !.agents/**
  • .agents/skills/eng/eng-qa-bootstrap/scripts/bootstrap-qa-env-smoke-test.py is excluded by !.agents/**
  • .agents/skills/eng/eng-qa-bootstrap/scripts/bootstrap-qa-env.py is excluded by !.agents/**
  • .agents/skills/eng/eng-real-scenario-qa/references/scenario-contract.schema.json is excluded by !**/*.json, !.agents/**
  • .audits/architectural-analysis-20260801-go-modernization.md is excluded by !**/*.md
  • .codex/manifests/2026-08-02-registry-08f4-artifacts.sha256 is excluded by !.codex/**
  • .codex/manifests/2026-08-02-registry-08f4-core.sha256 is excluded by !.codex/**
  • .codex/manifests/2026-08-02-registry-08f4-freeze.md is excluded by !**/*.md, !.codex/**
  • .codex/manifests/2026-08-02-registry-08f4-surfaces.sha256 is excluded by !.codex/**
  • .compozy/tasks/go-modernization/HANDOFF.md is excluded by !**/*.md, !.compozy/**
  • .compozy/tasks/go-modernization/analysis/01_analysis_lifecycle-processes.md is excluded by !**/*.md, !.compozy/**
  • .compozy/tasks/go-modernization/analysis/02_analysis_state-domain-storage.md is excluded by !**/*.md, !.compozy/**
  • .compozy/tasks/go-modernization/analysis/03_analysis_surfaces-extensions-sdk.md is excluded by !**/*.md, !.compozy/**
  • .compozy/tasks/go-modernization/analysis/04_analysis_runtime-gaps.md is excluded by !**/*.md, !.compozy/**
  • .compozy/tasks/go-modernization/analysis/golang-master/01_analysis_command-config.md is excluded by !**/*.md, !.compozy/**
  • .compozy/tasks/go-modernization/analysis/golang-master/02_analysis_api-transports.md is excluded by !**/*.md, !.compozy/**
  • .compozy/tasks/go-modernization/analysis/golang-master/03_analysis_daemon-lifecycle.md is excluded by !**/*.md, !.compozy/**
  • .compozy/tasks/go-modernization/analysis/golang-master/04_analysis_sessions-workspaces.md is excluded by !**/*.md, !.compozy/**
  • .compozy/tasks/go-modernization/analysis/golang-master/05_analysis_persistence-memory.md is excluded by !**/*.md, !.compozy/**
  • .compozy/tasks/go-modernization/analysis/golang-master/06_analysis_orchestration-domain.md is excluded by !**/*.md, !.compozy/**
  • .compozy/tasks/go-modernization/analysis/golang-master/07_analysis_extensions-bridges.md is excluded by !**/*.md, !.compozy/**
  • .compozy/tasks/go-modernization/analysis/golang-master/08_analysis_tools-security-sdk.md is excluded by !**/*.md, !.compozy/**
  • .compozy/tasks/go-modernization/analysis/golang-master/current-backlog.md is excluded by !**/*.md, !.compozy/**
  • .compozy/tasks/go-modernization/analysis/golang-master/summary.md is excluded by !**/*.md, !.compozy/**
  • .compozy/tasks/go-modernization/analysis/summary.md is excluded by !**/*.md, !.compozy/**
  • README.md is excluded by !**/*.md
  • docs/_memory/glossary.md is excluded by !**/*.md
  • docs/_memory/lessons/L-019-diagnostic-data-outlives-primary-record.md is excluded by !**/*.md
  • docs/design/opendesign/_done/settings/settings-memory.html is excluded by !docs/design/**/*
  • docs/ecosystem/README.md is excluded by !**/*.md
  • docs/ecosystem/extension-opportunities.md is excluded by !**/*.md
  • docs/qa/_seeds/final-qa/_children/02-config-settings.md is excluded by !**/*.md
  • docs/qa/bugs/BUG-0028.md is excluded by !**/*.md
  • docs/qa/bugs/BUG-20260729-agent-knowledge-refresh-missed.md is excluded by !**/*.md
  • docs/qa/bugs/BUG-20260802-provider-login-secret-disclosure.md is excluded by !**/*.md
  • docs/qa/bugs/BUG-20260803-extension-session-grant-denied.md is excluded by !**/*.md
  • docs/qa/bugs/BUG-20260804-native-extension-remediation.md is excluded by !**/*.md
  • docs/qa/charters/CH-helix-one-kickoff-bruno.md is excluded by !**/*.md
  • docs/qa/charters/CH-memory-settings-live-truth.md is excluded by !**/*.md
  • docs/qa/charters/CH-provider-auth-surfaces-dora.md is excluded by !**/*.md
  • docs/qa/charters/CH-refresh-agent-knowledge.md is excluded by !**/*.md
  • docs/qa/charters/CH-session-event-owner-refusal.md is excluded by !**/*.md
  • docs/qa/charters/CH-task-run-terminal-recovery.md is excluded by !**/*.md
  • docs/qa/journeys/J-administer-provider-auth.md is excluded by !**/*.md
  • docs/qa/journeys/J-finish-task-run.md is excluded by !**/*.md
  • docs/qa/journeys/J-one-kickoff-collaboration.md is excluded by !**/*.md
  • docs/qa/journeys/J-operate-daemon-schema.md is excluded by !**/*.md
  • docs/qa/journeys/J-refresh-agent-knowledge.md is excluded by !**/*.md
  • docs/qa/reports/2026-08-02-devtool-oss-launch.md is excluded by !**/*.md
  • docs/qa/reports/2026-08-02-knowledge-refresh-on-wake.md is excluded by !**/*.md
  • docs/qa/reports/2026-08-02-provider-auth-hard-cut.md is excluded by !**/*.md
  • docs/qa/reports/2026-08-02-task-terminal-recovery.md is excluded by !**/*.md
  • docs/qa/reports/2026-08-03-extension-host-api-grant-continuity.md is excluded by !**/*.md
  • docs/qa/reports/2026-08-03-go-modernization-pm13.md is excluded by !**/*.md
  • docs/qa/reports/2026-08-03-session-event-owner-isolation.md is excluded by !**/*.md
  • docs/qa/reports/2026-08-04-go-modernization-closeout.md is excluded by !**/*.md
  • docs/qa/scenarios/ET-009.md is excluded by !**/*.md
  • docs/qa/scenarios/ET-compozy-official-skill-discovery.md is excluded by !**/*.md
  • docs/qa/scenarios/ET-extension-cli-error-remediation.md is excluded by !**/*.md
  • docs/qa/scenarios/ET-extension-host-api-grant-continuity.md is excluded by !**/*.md
  • docs/qa/scenarios/ET-extension-publish-install-round-trip.md is excluded by !**/*.md
  • docs/qa/scenarios/ET-extension-published-source-installs.md is excluded by !**/*.md
  • docs/qa/scenarios/ET-mcp-result-secret-redaction.md is excluded by !**/*.md
  • docs/qa/scenarios/ET-web-extension-union-install.md is excluded by !**/*.md
  • docs/qa/scenarios/MS-026.md is excluded by !**/*.md
  • docs/qa/scenarios/MS-040.md is excluded by !**/*.md
  • docs/qa/scenarios/NB-039.md is excluded by !**/*.md
  • docs/qa/scenarios/NB-040.md is excluded by !**/*.md
  • docs/qa/scenarios/NB-041.md is excluded by !**/*.md
  • docs/qa/scenarios/NB-042.md is excluded by !**/*.md
  • docs/qa/scenarios/NB-bridge-provider-setup.md is excluded by !**/*.md
  • docs/qa/scenarios/RT-017.md is excluded by !**/*.md
  • docs/qa/scenarios/RT-019.md is excluded by !**/*.md
  • docs/qa/scenarios/RT-025.md is excluded by !**/*.md
  • docs/qa/scenarios/RT-026.md is excluded by !**/*.md
  • docs/qa/scenarios/RT-027.md is excluded by !**/*.md
  • docs/qa/scenarios/RT-073.md is excluded by !**/*.md
  • docs/qa/scenarios/RT-mcp-dead-recovery.md is excluded by !**/*.md
  • docs/qa/scenarios/RT-session-event-owner-isolation.md is excluded by !**/*.md
  • docs/qa/scenarios/TA-026.md is excluded by !**/*.md
  • docs/qa/scenarios/TA-027.md is excluded by !**/*.md
  • docs/qa/scenarios/TA-028.md is excluded by !**/*.md
  • docs/qa/scenarios/TA-029.md is excluded by !**/*.md
  • docs/qa/scenarios/TA-048.md is excluded by !**/*.md
  • docs/qa/scenarios/TA-agent-knowledge-refresh-on-wake.md is excluded by !**/*.md
  • internal/codegen/hostapi/catalog.json is excluded by !**/*.json
  • internal/sandbox/daytona/sidecar_assets/compozy-daytona-sidecar-linux-amd64.gz is excluded by !**/*.gz, !**/*.gz
  • internal/sandbox/daytona/sidecar_assets/compozy-daytona-sidecar-linux-arm64.gz is excluded by !**/*.gz, !**/*.gz
  • internal/store/globaldb/schema/migrations/atlas.sum is excluded by !**/*.sum, !**/*.sum
  • internal/store/sessiondb/schema/migrations/atlas.sum is excluded by !**/*.sum, !**/*.sum
  • internal/tools/builtin/testdata/native-tool-catalog.json is excluded by !**/*.json
  • openapi/compozy.json is excluded by !**/*.json
  • packages/site/content/docs/agents/heartbeat.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/agents/providers.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/autonomy/notification-cursors.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/autonomy/notification-presets.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/autonomy/task-runs-and-leases.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/bridges/adding-a-bridge.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/bridges/routing.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/cli/provider/auth/login.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/cli/scheduler/drain.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/configuration/config-toml.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/extensions/install.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/extensions/publish.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/operations/database.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/operations/troubleshooting.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/sessions/lifecycle.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/skills/bundled.mdx is excluded by !**/*.mdx
  • packages/site/content/docs/skills/marketplace.mdx is excluded by !**/*.mdx
  • skills/compozy/SKILL.md is excluded by !**/*.md
  • skills/compozy/references/capabilities.md is excluded by !**/*.md
  • skills/compozy/references/configuration.md is excluded by !**/*.md
  • skills/compozy/references/contributing-to-compozy.md is excluded by !**/*.md
  • skills/compozy/references/docs-design-and-copy.md is excluded by !**/*.md
  • skills/compozy/references/extension-authoring.md is excluded by !**/*.md
  • skills/compozy/references/extensions.md is excluded by !**/*.md
  • skills/compozy/references/native-tools.md is excluded by !**/*.md
  • skills/compozy/references/qa-and-verification.md is excluded by !**/*.md
  • skills/compozy/references/runtime-operations.md is excluded by !**/*.md
  • skills/compozy/references/tasks-and-orchestration.md is excluded by !**/*.md
  • skills/compozy/references/tools-and-skills.md is excluded by !**/*.md
  • skills/compozy/references/window-management.md is excluded by !**/*.md
  • web/src/generated/compozy-openapi.d.ts is excluded by !**/generated/**, !**/generated/**, !**/*.d.ts
  • web/src/systems/settings/components/stories/provider-card.stories.tsx is excluded by !**/*.stories.tsx
  • web/src/systems/settings/components/stories/provider-detail-dialog.stories.tsx is excluded by !**/*.stories.tsx
📒 Files selected for processing (1684)
  • cmd/compozy-catalog/main.go
  • cmd/compozy-catalog/main_test.go
  • cmd/compozy-catalog/package.go
  • cmd/compozy-catalog/validate.go
  • cmd/compozy-codegen/host_api_contracts.go
  • cmd/compozy-codegen/main.go
  • extensions/bridges/discord/api_client.go
  • extensions/bridges/discord/provider_test.go
  • extensions/bridges/gchat/provider_helpers.go
  • extensions/bridges/gchat/provider_test.go
  • extensions/bridges/gchat/webhook_auth.go
  • extensions/bridges/github/api.go
  • extensions/bridges/github/github_webhook_runtime.go
  • extensions/bridges/github/provider_test.go
  • extensions/bridges/github/runtime_test.go
  • extensions/bridges/linear/provider_test.go
  • extensions/bridges/linear/runtime_test.go
  • extensions/bridges/slack/api_transport.go
  • extensions/bridges/slack/provider_test.go
  • extensions/bridges/teams/provider_test.go
  • extensions/bridges/telegram/api_transport.go
  • extensions/bridges/telegram/provider_test.go
  • extensions/bridges/whatsapp/api_client.go
  • extensions/bridges/whatsapp/provider_test.go
  • extensions/dev-cycle/install.go
  • extensions/dev-cycle/provider_test.go
  • extensions/dev-cycle/rpc.go
  • internal/acp/agent_process.go
  • internal/acp/agent_process_prompt.go
  • internal/acp/client.go
  • internal/acp/client_control.go
  • internal/acp/client_permission_test.go
  • internal/acp/client_process.go
  • internal/acp/client_process_lifecycle_test.go
  • internal/acp/client_prompt.go
  • internal/acp/client_prompt_contract_test.go
  • internal/acp/client_start_contract_test.go
  • internal/acp/client_test.go
  • internal/acp/client_test_support_test.go
  • internal/acp/failure.go
  • internal/acp/failure_probe_test.go
  • internal/acp/goal_prompt_meta.go
  • internal/acp/handlers.go
  • internal/acp/handlers_helpers.go
  • internal/acp/handlers_test.go
  • internal/acp/launch_identity.go
  • internal/acp/launcher.go
  • internal/acp/launcher_tool_host_test.go
  • internal/acp/negotiation_error.go
  • internal/acp/probe.go
  • internal/acp/process_child_tasks.go
  • internal/acp/process_config_state.go
  • internal/acp/process_tree.go
  • internal/acp/process_tree_unix.go
  • internal/acp/prompt_judge_meta.go
  • internal/acp/prompt_meta.go
  • internal/acp/prompt_metadata_error.go
  • internal/acp/prompt_synthetic_meta.go
  • internal/acp/provider_failure.go
  • internal/acp/start.go
  • internal/acp/start_process.go
  • internal/acp/terminal.go
  • internal/acp/terminal_access.go
  • internal/acp/terminal_create.go
  • internal/acp/terminal_process.go
  • internal/acp/tool_gateway.go
  • internal/acp/tool_host.go
  • internal/acp/types.go
  • internal/acp/types_test.go
  • internal/agentidentity/errors.go
  • internal/agentidentity/identity_test.go
  • internal/api/contract/bridge_control.go
  • internal/api/contract/bridge_control_test.go
  • internal/api/contract/bridge_delivery_target_input.go
  • internal/api/contract/bridges.go
  • internal/api/contract/bridges_test.go
  • internal/api/contract/providers.go
  • internal/api/contract/scheduler.go
  • internal/api/contract/settings_collection_payloads.go
  • internal/api/contract/settings_config_payloads.go
  • internal/api/contract/settings_mutations.go
  • internal/api/contract/skill_payloads.go
  • internal/api/contract/status.go
  • internal/api/contract/tools.go
  • internal/api/core/base_handlers.go
  • internal/api/core/bridge_catalog.go
  • internal/api/core/bridge_control.go
  • internal/api/core/bridge_diagnostics.go
  • internal/api/core/bridge_health_stream.go
  • internal/api/core/bridge_http_responses.go
  • internal/api/core/bridge_payloads.go
  • internal/api/core/bridge_secret_delivery.go
  • internal/api/core/bridge_target_resolution.go
  • internal/api/core/bridge_task_notifications.go
  • internal/api/core/bridges.go
  • internal/api/core/bridges_test.go
  • internal/api/core/conversions_settings_catalog.go
  • internal/api/core/conversions_settings_runtime.go
  • internal/api/core/conversions_skills.go
  • internal/api/core/doctor_payload.go
  • internal/api/core/error_paths_test.go
  • internal/api/core/errors_diagnostic_payload.go
  • internal/api/core/errors_test.go
  • internal/api/core/extension_doctor.go
  • internal/api/core/extension_doctor_test.go
  • internal/api/core/extension_git_diagnostic.go
  • internal/api/core/extensions_errors.go
  • internal/api/core/extensions_operation_errors.go
  • internal/api/core/extensions_test.go
  • internal/api/core/handler_edge_cases_test.go
  • internal/api/core/memory_dream_handlers.go
  • internal/api/core/memory_health_payload.go
  • internal/api/core/memory_mutation_handlers.go
  • internal/api/core/memory_payloads.go
  • internal/api/core/memory_workspace_test.go
  • internal/api/core/model_catalog_test.go
  • internal/api/core/provider_auth_status_test.go
  • internal/api/core/provider_login_descriptor.go
  • internal/api/core/providers.go
  • internal/api/core/providers_test.go
  • internal/api/core/scheduler.go
  • internal/api/core/session_workspace.go
  • internal/api/core/settings.go
  • internal/api/core/settings_internal_test.go
  • internal/api/core/settings_log_tail.go
  • internal/api/core/settings_memory_config.go
  • internal/api/core/settings_provider_request.go
  • internal/api/core/settings_section_requests.go
  • internal/api/core/settings_test.go
  • internal/api/core/skills_test.go
  • internal/api/core/status.go
  • internal/api/core/status_component_diagnostics.go
  • internal/api/core/status_daemon.go
  • internal/api/core/status_diagnostics.go
  • internal/api/core/status_mcp.go
  • internal/api/core/status_task_provider_diagnostics.go
  • internal/api/core/support.go
  • internal/api/core/task_errors.go
  • internal/api/core/task_run_lifecycle_handlers.go
  • internal/api/core/tasks_test.go
  • internal/api/core/tool_errors.go
  • internal/api/core/tools_test.go
  • internal/api/core/window_manager_errors.go
  • internal/api/core/window_manager_service.go
  • internal/api/ginutil/quiet_debug.go
  • internal/api/ginutil/quiet_debug_test.go
  • internal/api/httpapi/bridges_integration_test.go
  • internal/api/httpapi/handlers_test.go
  • internal/api/httpapi/helpers_integration_test.go
  • internal/api/httpapi/hooks_integration_test.go
  • internal/api/httpapi/httpapi_integration_test.go
  • internal/api/httpapi/memory_test.go
  • internal/api/httpapi/middleware.go
  • internal/api/httpapi/middleware_refac_test.go
  • internal/api/httpapi/routes.go
  • internal/api/httpapi/server.go
  • internal/api/httpapi/server_lifecycle.go
  • internal/api/httpapi/server_shutdown.go
  • internal/api/httpapi/server_start.go
  • internal/api/httpapi/server_test.go
  • internal/api/httpapi/transport_parity_integration_test.go
  • internal/api/spec/bridge_catalog_operations.go
  • internal/api/spec/goals.go
  • internal/api/spec/loops.go
  • internal/api/spec/operation_builder.go
  • internal/api/spec/operation_clone.go
  • internal/api/spec/operations_refac_test.go
  • internal/api/spec/registry_task_runs.go
  • internal/api/spec/response_body.go
  • internal/api/spec/schema_customizers.go
  • internal/api/spec/schema_enum_registry.go
  • internal/api/spec/schema_reflection.go
  • internal/api/spec/settings_test.go
  • internal/api/spec/spec.go
  • internal/api/spec/spec_test.go
  • internal/api/spec/task_schema.go
  • internal/api/spec/windowmanager.go
  • internal/api/udsapi/bridges_integration_test.go
  • internal/api/udsapi/helpers_test.go
  • internal/api/udsapi/memory_test.go
  • internal/api/udsapi/transport_parity_integration_test.go
  • internal/api/udsapi/udsapi_integration_test.go
  • internal/automation/dispatch.go
  • internal/automation/dispatch_reservation.go
  • internal/automation/dispatch_retry.go
  • internal/automation/dispatch_test.go
  • internal/automation/manager_job_create.go
  • internal/automation/manager_test.go
  • internal/automation/manager_triggers.go
  • internal/automation/model/persistence.go
  • internal/automation/persistence.go
  • internal/automation/resource_projection_triggers.go
  • internal/automation/schedule.go
  • internal/automation/schedule_execution.go
  • internal/automation/schedule_lifecycle.go
  • internal/automation/schedule_test.go
  • internal/bridges/catalog.go
  • internal/bridges/catalog_records.go
  • internal/bridges/contract/delivery_event.go
  • internal/bridges/contract/delivery_request.go
  • internal/bridges/contract/delivery_test.go
  • internal/bridges/contract/delivery_types.go
  • internal/bridges/contract/instance.go
  • internal/bridges/contract/instance_test.go
  • internal/bridges/contract/progress.go
  • internal/bridges/contract/progress_test.go
  • internal/bridges/contract/routing.go
  • internal/bridges/contract/targets.go
  • internal/bridges/contract/validation.go
  • internal/bridges/delivery_broker.go
  • internal/bridges/delivery_broker_contract_test.go
  • internal/bridges/delivery_broker_lifecycle.go
  • internal/bridges/delivery_broker_metrics.go
  • internal/bridges/delivery_broker_state.go
  • internal/bridges/delivery_ledger.go
  • internal/bridges/delivery_ledger_options.go
  • internal/bridges/delivery_metric_persistence.go
  • internal/bridges/delivery_metric_state.go
  • internal/bridges/delivery_projection_test.go
  • internal/bridges/delivery_reconcile.go
  • internal/bridges/delivery_state.go
  • internal/bridges/delivery_types.go
  • internal/bridges/diagnostics.go
  • internal/bridges/identity_validation.go
  • internal/bridges/registry.go
  • internal/bridges/registry_catalog.go
  • internal/bridges/registry_routing.go
  • internal/bridges/registry_storage.go
  • internal/bridges/resource.go
  • internal/bridges/routing.go
  • internal/bridges/target.go
  • internal/bridges/target_test.go
  • internal/bridges/task_notifier.go
  • internal/bridges/task_notifier_delivery.go
  • internal/bridges/task_notifier_redaction.go
  • internal/bridges/task_notifier_resolution.go
  • internal/bridges/task_notifier_status.go
  • internal/bridges/task_notifier_test.go
  • internal/bridges/task_subscription.go
  • internal/bridges/task_subscription_identity.go
  • internal/bridges/types.go
  • internal/bridgesdk/batching.go
  • internal/bridgesdk/batching_refac_test.go
  • internal/bridgesdk/batching_test.go
  • internal/bridgesdk/errors.go
  • internal/bridgesdk/peer.go
  • internal/bridgesdk/peer_handler.go
  • internal/bridgesdk/peer_refac_test.go
  • internal/bridgesdk/peer_terminal.go
  • internal/bridgesdk/peer_test.go
  • internal/bridgesdk/perf_bench_test.go
  • internal/bridgesdk/provider_delivery_state.go
  • internal/bridgesdk/provider_host.go
  • internal/bridgesdk/provider_lifecycle.go
  • internal/bridgesdk/provider_lifecycle_test.go
  • internal/bridgesdk/provider_markers_test.go
  • internal/bridgesdk/provider_reconcile_test.go
  • internal/bridgesdk/retry.go
  • internal/bridgesdk/runtime.go
  • internal/bridgesdk/runtime_control_test.go
  • internal/bridgesdk/runtime_flow_test.go
  • internal/bridgesdk/runtime_integration_test.go
  • internal/bridgesdk/runtime_lifecycle.go
  • internal/bridgesdk/runtime_params.go
  • internal/bridgesdk/runtime_refac_test.go
  • internal/bridgesdk/runtime_service.go
  • internal/bridgesdk/target_snapshots.go
  • internal/bridgesdk/webhook.go
  • internal/bridgesdk/webhook_check.go
  • internal/cli/agent_kernel_metadata.go
  • internal/cli/agent_mutate_requests.go
  • internal/cli/automation.go
  • internal/cli/automation_list_queries.go
  • internal/cli/automation_loop_target_flags.go
  • internal/cli/automation_request.go
  • internal/cli/automation_run_commands.go
  • internal/cli/automation_suggestions.go
  • internal/cli/automation_trigger_commands.go
  • internal/cli/bridge_mutation.go
  • internal/cli/bridge_operations.go
  • internal/cli/bridge_test.go
  • internal/cli/bridge_verify.go
  • internal/cli/cli_integration_test.go
  • internal/cli/client_actionable_errors_test.go
  • internal/cli/client_agent_actions.go
  • internal/cli/client_api_errors.go
  • internal/cli/client_bridge_control.go
  • internal/cli/client_bridge_control_test.go
  • internal/cli/client_bridge_target_resolution.go
  • internal/cli/client_extensions_bridges.go
  • internal/cli/client_loops.go
  • internal/cli/client_session_prompt.go
  • internal/cli/client_sessions.go
  • internal/cli/client_settings_vault.go
  • internal/cli/client_task_management.go
  • internal/cli/client_task_values.go
  • internal/cli/client_test.go
  • internal/cli/client_tools.go
  • internal/cli/client_transport.go
  • internal/cli/client_window_manager_stream.go
  • internal/cli/config.go
  • internal/cli/config_flatten.go
  • internal/cli/config_path_classification.go
  • internal/cli/config_test.go
  • internal/cli/daemon.go
  • internal/cli/daemon_process.go
  • internal/cli/daemon_status.go
  • internal/cli/daemon_wait_test.go
  • internal/cli/doc.go
  • internal/cli/drain.go
  • internal/cli/extension_dev.go
  • internal/cli/extension_install.go
  • internal/cli/extension_install_parse.go
  • internal/cli/extension_install_parse_test.go
  • internal/cli/extension_output.go
  • internal/cli/extension_output_test.go
  • internal/cli/extension_state.go
  • internal/cli/local_database.go
  • internal/cli/local_database_test.go
  • internal/cli/logs.go
  • internal/cli/loop.go
  • internal/cli/loop_support.go
  • internal/cli/loop_test.go
  • internal/cli/mcp_auth.go
  • internal/cli/memory_input.go
  • internal/cli/network.go
  • internal/cli/notifications.go
  • internal/cli/notifications_test.go
  • internal/cli/perf_bench_test.go
  • internal/cli/poll.go
  • internal/cli/provider.go
  • internal/cli/provider_credentials.go
  • internal/cli/provider_output.go
  • internal/cli/provider_status.go
  • internal/cli/provider_test.go
  • internal/cli/render_test.go
  • internal/cli/root.go
  • internal/cli/root_defaults.go
  • internal/cli/scheduler.go
  • internal/cli/scheduler_test.go
  • internal/cli/session_event_output.go
  • internal/cli/session_prompt_events.go
  • internal/cli/session_prompt_output.go
  • internal/cli/skill.go
  • internal/cli/skill_commands_mutation.go
  • internal/cli/skill_daemon_test.go
  • internal/cli/skill_marketplace.go
  • internal/cli/skill_marketplace_mapping.go
  • internal/cli/skill_marketplace_output.go
  • internal/cli/skill_output.go
  • internal/cli/skill_test.go
  • internal/cli/support.go
  • internal/cli/task.go
  • internal/cli/task_commands_controls.go
  • internal/cli/task_commands_crud.go
  • internal/cli/task_commands_notifications.go
  • internal/cli/task_list.go
  • internal/cli/task_output_notifications_reviews.go
  • internal/cli/task_parsing.go
  • internal/cli/task_test.go
  • internal/cli/tool_approvals.go
  • internal/cli/tool_artifacts.go
  • internal/cli/tool_client_interfaces.go
  • internal/cli/tool_errors.go
  • internal/cli/tool_operator.go
  • internal/cli/tool_operator_input.go
  • internal/cli/tool_test.go
  • internal/cli/update.go
  • internal/cli/window_manager_test.go
  • internal/cli/workspace.go
  • internal/cli/workspace_resolution.go
  • internal/clientstate/concurrency_lifecycle_test.go
  • internal/clientstate/errors.go
  • internal/clientstate/service.go
  • internal/clientstate/store_format.go
  • internal/clientstate/store_service_test.go
  • internal/clientstate/test_helpers_test.go
  • internal/codegen/hostapi/catalog.go
  • internal/codegen/hostapi/generate.go
  • internal/codegen/hostapi/generate_test.go
  • internal/config/agent.go
  • internal/config/agent_create.go
  • internal/config/agent_delete.go
  • internal/config/agent_discovery.go
  • internal/config/agent_duplicate.go
  • internal/config/agent_edit.go
  • internal/config/agent_edit_test.go
  • internal/config/agent_test.go
  • internal/config/agent_workspace_discovery_test.go
  • internal/config/automation.go
  • internal/config/capabilities.go
  • internal/config/capabilities_decode.go
  • internal/config/capabilities_test.go
  • internal/config/config_clone.go
  • internal/config/config_clone_automation.go
  • internal/config/config_clone_loops.go
  • internal/config/config_clone_test.go
  • internal/config/config_memory.go
  • internal/config/config_memory_defaults.go
  • internal/config/config_refac_test.go
  • internal/config/config_refac_unix_test.go
  • internal/config/config_test.go
  • internal/config/dotenv.go
  • internal/config/dotenv_permissions_test.go
  • internal/config/dotenv_test.go
  • internal/config/dotenv_write.go
  • internal/config/file_io.go
  • internal/config/mcpjson.go
  • internal/config/mcpjson_test.go
  • internal/config/mcpjson_write.go
  • internal/config/memory_v2_config_test.go
  • internal/config/merge.go
  • internal/config/merge_load.go
  • internal/config/merge_memory_controller.go
  • internal/config/perf_bench_test.go
  • internal/config/persistence_test.go
  • internal/config/provider_resolve.go
  • internal/config/provider_test.go
  • internal/config/tool_surface.go
  • internal/config/tool_surface_reflection.go
  • internal/config/tool_surface_security.go
  • internal/config/tool_surface_test.go
  • internal/config/window_manager_test.go
  • internal/daemon/agent_skill_publisher.go
  • internal/daemon/agent_skill_resources.go
  • internal/daemon/authored_context_runtime.go
  • internal/daemon/authored_context_transport_test.go
  • internal/daemon/auto_title_runtime_test.go
  • internal/daemon/boot.go
  • internal/daemon/boot_cleanup.go
  • internal/daemon/boot_components.go
  • internal/daemon/boot_extension_publishers.go
  • internal/daemon/boot_finalize.go
  • internal/daemon/boot_memory_store.go
  • internal/daemon/boot_publish.go
  • internal/daemon/boot_settings.go
  • internal/daemon/boot_tool_registry_providers.go
  • internal/daemon/bridge_resource_projection.go
  • internal/daemon/bridge_resource_retirement.go
  • internal/daemon/bridge_runtime_targets.go
  • internal/daemon/bridges_test.go
  • internal/daemon/compaction_resume_integration_test.go
  • internal/daemon/composed_assembler.go
  • internal/daemon/coordinator_runtime.go
  • internal/daemon/coordinator_runtime_reconcile.go
  • internal/daemon/coordinator_runtime_test.go
  • internal/daemon/coordinator_runtime_wake.go
  • internal/daemon/daemon.go
  • internal/daemon/daemon_agent_definition_e2e_integration_test.go
  • internal/daemon/daemon_integration_test.go
  • internal/daemon/daemon_lifecycle.go
  • internal/daemon/daemon_mock_agents_integration_test.go
  • internal/daemon/daemon_options.go
  • internal/daemon/daemon_runtime_state.go
  • internal/daemon/daemon_shutdown_operation.go
  • internal/daemon/daemon_shutdown_resources.go
  • internal/daemon/daemon_shutdown_runtime.go
  • internal/daemon/daemon_shutdown_targets.go
  • internal/daemon/daemon_test.go
  • internal/daemon/extension_commands_integration_test.go
  • internal/daemon/extension_lifecycle.go
  • internal/daemon/extension_network_lifecycle_test.go
  • internal/daemon/extension_secrets_mutation.go
  • internal/daemon/extensions.go
  • internal/daemon/extensions_install.go
  • internal/daemon/extensions_inventory_test.go
  • internal/daemon/extensions_marketplace_trust.go
  • internal/daemon/extensions_test.go
  • internal/daemon/harness_context.go
  • internal/daemon/harness_context_integration_test.go
  • internal/daemon/harness_context_policy.go
  • internal/daemon/harness_context_test.go
  • internal/daemon/harness_context_turn.go
  • internal/daemon/harness_reentry_bridge.go
  • internal/daemon/harness_reentry_finalize.go
  • internal/daemon/heartbeat_wake_runtime_test.go
  • internal/daemon/hook_agent_events.go
  • internal/daemon/hook_binding_resources_test.go
  • internal/daemon/hooks_bridge_loop_terminal.go
  • internal/daemon/hooks_bridge_observer_notify.go
  • internal/daemon/hooks_declaration_providers.go
  • internal/daemon/hooks_declaration_workspace.go
  • internal/daemon/lifecycle_rw_gate.go
  • internal/daemon/loop_action_runtime.go
  • internal/daemon/loop_goal_command_e2e_integration_test.go
  • internal/daemon/loop_goal_command_test.go
  • internal/daemon/loop_goal_executor_test.go
  • internal/daemon/loop_goal_managed_lifecycle.go
  • internal/daemon/loop_goal_managed_owner.go
  • internal/daemon/loop_goal_managed_runtime_integration_test.go
  • internal/daemon/loop_goal_prompt_recovery.go
  • internal/daemon/loop_managed_prompt.go
  • internal/daemon/loop_resources.go
  • internal/daemon/loop_resources_integration_test.go
  • internal/daemon/loop_resources_test.go
  • internal/daemon/loop_resources_watcher.go
  • internal/daemon/loop_runtime_adapters_test.go
  • internal/daemon/loop_runtime_selection_integration_test.go
  • internal/daemon/loop_tool_schema_source.go
  • internal/daemon/loop_tool_schema_source_test.go
  • internal/daemon/loop_watch_events_observer_bench_test.go
  • internal/daemon/marketplace.go
  • internal/daemon/marketplace_test.go
  • internal/daemon/mcp_auth_events.go
  • internal/daemon/mcp_auth_events_test.go
  • internal/daemon/model_catalog.go
  • internal/daemon/model_catalog_test.go
  • internal/daemon/native_automation_tools.go
  • internal/daemon/native_automation_tools_integration_test.go
  • internal/daemon/native_automation_trigger_tools.go
  • internal/daemon/native_create_tools_test.go
  • internal/daemon/native_extension_errors.go
  • internal/daemon/native_extension_tool_provider_test.go
  • internal/daemon/native_extension_tools_test.go
  • internal/daemon/native_loop_tools_test.go
  • internal/daemon/native_mcp_provider.go
  • internal/daemon/native_memory_admin_mutation.go
  • internal/daemon/native_memory_admin_tools.go
  • internal/daemon/native_task_notification_tools.go
  • internal/daemon/native_tool_approval_grants_test.go
  • internal/daemon/native_tool_thread_promotion.go
  • internal/daemon/native_tool_window_manager_result.go
  • internal/daemon/native_tool_workspace_memory_calls.go
  • internal/daemon/native_tools.go
  • internal/daemon/native_tools_test.go
  • internal/daemon/owned_worker_group.go
  • internal/daemon/prompt_input_composite.go
  • internal/daemon/prompt_input_composite_augment.go
  • internal/daemon/prompt_input_composite_integration_test.go
  • internal/daemon/prompt_input_composite_test.go
  • internal/daemon/prompt_sections.go
  • internal/daemon/prompt_skills_test.go
  • internal/daemon/restart_environment.go
  • internal/daemon/restart_relaunch.go
  • internal/daemon/restart_request.go
  • internal/daemon/restart_test.go
  • internal/daemon/role_fallback.go
  • internal/daemon/role_fallback_test.go
  • internal/daemon/role_resolver_test.go
  • internal/daemon/role_status.go
  • internal/daemon/role_status_test.go
  • internal/daemon/runtime_dependencies.go
  • internal/daemon/runtime_workers.go
  • internal/daemon/sandbox_reconcile.go
  • internal/daemon/sandbox_reconcile_test.go
  • internal/daemon/scheduler_runtime.go
  • internal/daemon/scheduler_runtime_test.go
  • internal/daemon/scheduler_waker.go
  • internal/daemon/session_manager_factory.go
  • internal/daemon/settings.go
  • internal/daemon/settings_mcp_runtime.go
  • internal/daemon/settings_runtime_applier.go
  • internal/daemon/settings_runtime_applier_test.go
  • internal/daemon/settings_test.go
  • internal/daemon/skills_watcher_refac_test.go
  • internal/daemon/task_event_bridge_notifier.go
  • internal/daemon/task_event_bridge_notifier_test.go
  • internal/daemon/task_role_prompt.go
  • internal/daemon/task_role_runtime.go
  • internal/daemon/task_role_runtime_test.go
  • internal/daemon/task_run_activation_dispatch.go
  • internal/daemon/task_run_activation_dispatch_test.go
  • internal/daemon/task_run_fixture_integration_test.go
  • internal/daemon/task_runtime_boot.go
  • internal/daemon/task_runtime_boot_roles_test.go
  • internal/daemon/task_runtime_recovery.go
  • internal/daemon/task_runtime_test.go
  • internal/daemon/task_session_bridge.go
  • internal/daemon/task_status_projection_observer_test.go
  • internal/daemon/task_status_projection_replay.go
  • internal/daemon/task_wake_bridge.go
  • internal/daemon/task_wake_bridge_test.go
  • internal/daemon/tool_approval_bridge_test.go
  • internal/daemon/tool_mcp_resources_providers.go
  • internal/daemon/window_manager_boot.go
  • internal/daemon/window_manager_repository_test.go
  • internal/daemon/window_manager_runtime_test.go
  • internal/daemon/window_manager_test_helpers_test.go
  • internal/daemon/workspace_access_integration_test.go
  • internal/deadentity/contract.go
  • internal/deadentity/events.go
  • internal/deadentity/failure.go
  • internal/deadentity/list.go
  • internal/deadentity/log.go
  • internal/deadentity/persistence_state.go
  • internal/deadentity/publication.go
  • internal/deadentity/reason.go
  • internal/deadentity/request.go
  • internal/deadentity/service.go
  • internal/deadentity/service_test.go
  • internal/deadentity/state.go
  • internal/deadentity/state_view.go
  • internal/deadentity/workspace_cache.go
  • internal/demoseed/seed_integration_test.go
  • internal/demoseed/seed_sessions.go
  • internal/demoseed/seed_tasks.go
  • internal/diagnosticcontract/diagnostics.go
  • internal/diagnostics/item.go
  • internal/diagnostics/item_test.go
  • internal/diagnostics/redact.go
  • internal/doctor/bridge_probe.go
  • internal/doctor/dead_entity_probe.go
  • internal/doctor/doctor.go
  • internal/doctor/doctor_test.go
  • internal/doctor/runtime_memory_probe.go
  • internal/doctor/subprocess_health_probe.go
  • internal/events/names.go
  • internal/events/registry.go
  • internal/events/registry_base.go
  • internal/extension/bridge_delivery_integration_test.go
  • internal/extension/build_test.go
  • internal/extension/capability_models_test.go
  • internal/extension/capability_test.go
  • internal/extension/contract/host_api.go
  • internal/extension/contract/host_api_clarify.go
  • internal/extension/contract/host_api_method_aliases_gen.go
  • internal/extension/contract/host_api_method_registry.go
  • internal/extension/contract/host_api_method_registry_access.go
  • internal/extension/contract/host_api_method_registry_automation_gen.go
  • internal/extension/contract/host_api_method_registry_bridges_gen.go
  • internal/extension/contract/host_api_method_registry_clarify_gen.go
  • internal/extension/contract/host_api_method_registry_core_gen.go
  • internal/extension/contract/host_api_method_registry_gen.go
  • internal/extension/contract/host_api_method_registry_network_gen.go
  • internal/extension/contract/host_api_method_registry_resources_gen.go
  • internal/extension/contract/host_api_method_registry_tasks_gen.go
  • internal/extension/contract/sdk_contract_builder.go
  • internal/extension/contract/sdk_test.go
  • internal/extension/describe.go
  • internal/extension/dev_boot_failure.go
  • internal/extension/dev_integration_test.go
  • internal/extension/discord_provider_integration_test.go
  • internal/extension/events_coverage_test.go
  • internal/extension/extension_validation.go
  • internal/extension/gchat_provider_integration_test.go
  • internal/extension/github_provider_integration_test.go
  • internal/extension/host_api.go
  • internal/extension/host_api_bridges_lock.go
  • internal/extension/host_api_clarify.go
  • internal/extension/host_api_dispatch.go
  • internal/extension/host_api_errors.go
  • internal/extension/host_api_integration_test.go
  • internal/extension/host_api_models_test.go
  • internal/extension/host_api_task_payloads.go
  • internal/extension/host_api_test.go
  • internal/extension/install_managed.go
  • internal/extension/install_managed_package.go
  • internal/extension/install_managed_path.go
  • internal/extension/install_managed_source.go
  • internal/extension/install_managed_test.go
  • internal/extension/install_managed_tree.go
  • internal/extension/linear_provider_integration_test.go
  • internal/extension/manager.go
  • internal/extension/manager_dev_activation.go
  • internal/extension/manager_dev_admission.go
  • internal/extension/manager_dev_lifecycle.go
  • internal/extension/manager_dev_link_activation.go
  • internal/extension/manager_failure_state.go
  • internal/extension/manager_instance_state.go
  • internal/extension/manager_lifecycle.go
  • internal/extension/manager_pending_cleanup.go
  • internal/extension/manager_process_lifecycle.go
  • internal/extension/manager_refac_test.go
  • internal/extension/manager_runtime_launch.go
  • internal/extension/manager_startup_transaction.go
  • internal/extension/manager_supervision.go
  • internal/extension/manager_test.go
  • internal/extension/manifest_model_source_test.go
  • internal/extension/manifest_test.go
  • internal/extension/marketplace_install_cleanup.go
  • internal/extension/marketplace_lifecycle.go
  • internal/extension/marketplace_lifecycle_test.go
  • internal/extension/marketplace_remove_cleanup.go
  • internal/extension/marketplace_trust.go
  • internal/extension/marketplace_update.go
  • internal/extension/marketplace_update_cleanup.go
  • internal/extension/provenance.go
  • internal/extension/provider_conformance_discovery_integration_test.go
  • internal/extension/provider_integration_test_support_test.go
  • internal/extension/publish.go
  • internal/extension/reference_integration_test.go
  • internal/extension/registry_test.go
  • internal/extension/resource_validation_error_test.go
  • internal/extension/slack_provider_integration_test.go
  • internal/extension/teams_provider_integration_test.go
  • internal/extension/telegram_provider_integration_test.go
  • internal/extension/testdata/secret-guard/main.go
  • internal/extension/testdata/telegram-reference/control.go
  • internal/extension/testdata/telegram-reference/control_test.go
  • internal/extension/testdata/telegram-reference/delivery.go
  • internal/extension/testdata/telegram-reference/main.go
  • internal/extension/testdata/telegram-reference/main_test.go
  • internal/extension/testdata/telegram-reference/runtime_lifecycle_test.go
  • internal/extension/tool_runtime.go
  • internal/extension/tool_runtime_test.go
  • internal/extension/whatsapp_provider_integration_test.go
  • internal/extensionprotocol/host_api.go
  • internal/extensionprotocol/host_api_methods_gen.go
  • internal/extensiontest/bridge_adapter_harness_adapters.go
  • internal/extensiontest/bridge_adapter_harness_integration_test.go
  • internal/extensiontest/bridge_adapter_harness_runtime.go
  • internal/extensiontest/bridge_adapter_scripted_driver.go
  • internal/extensiontest/perf_bench_test.go
  • internal/extensiontest/runtime_peer_pair.go
  • internal/fileutil/atomic.go
  • internal/fileutil/atomic_bench_test.go
  • internal/fileutil/atomic_dirsync_unix.go
  • internal/fileutil/atomic_dirsync_windows.go
  • internal/fileutil/atomic_remove_test.go
  • internal/fileutil/atomic_remove_unix.go
  • internal/fileutil/atomic_remove_windows.go
  • internal/fileutil/atomic_test.go
  • internal/fileutil/atomic_windows_test.go
  • internal/fileutil/close_owner.go
  • internal/fileutil/directory_move.go
  • internal/fileutil/directory_move_darwin.go
  • internal/fileutil/directory_move_identity_unix.go
  • internal/fileutil/directory_move_identity_unsupported.go
  • internal/fileutil/directory_move_identity_windows.go
  • internal/fileutil/directory_move_linux.go
  • internal/fileutil/directory_move_nonunix_unsupported.go
  • internal/fileutil/directory_move_unix.go
  • internal/fileutil/directory_move_unsupported.go
  • internal/fileutil/directory_move_windows.go
  • internal/fileutil/directory_remove_bound.go
  • internal/fileutil/directory_remove_bound_darwin.go
  • internal/fileutil/directory_remove_bound_unix.go
  • internal/fileutil/directory_remove_bound_unsupported.go
  • internal/fileutil/directory_remove_bound_windows.go
  • internal/fileutil/move_recovery_nonunix.go
  • internal/fileutil/move_recovery_unix.go
  • internal/fileutil/nofollow.go
  • internal/fileutil/nofollow_unix.go
  • internal/fileutil/nofollow_unix_test.go
  • internal/fileutil/nofollow_unsupported.go
  • internal/fileutil/nofollow_windows.go
  • internal/fileutil/nofollow_windows_test.go
  • internal/fileutil/path_component.go
  • internal/fileutil/path_component_test.go
  • internal/fileutil/path_containment.go
  • internal/fileutil/path_containment_test.go
  • internal/fileutil/regular_file_move.go
  • internal/fileutil/regular_file_move_unix.go
  • internal/fileutil/regular_file_move_unsupported.go
  • internal/fileutil/regular_file_move_windows.go
  • internal/fileutil/rooted_write.go
  • internal/fileutil/rooted_write_unix.go
  • internal/fileutil/rooted_write_unix_test.go
  • internal/fileutil/rooted_write_windows.go
  • internal/fileutil/rooted_write_windows_test.go
  • internal/fileutil/system_root_alias_darwin.go
  • internal/fileutil/system_root_alias_unix.go
  • internal/fileutil/targzip.go
  • internal/fileutil/targzip_test.go
  • internal/heartbeat/authoring.go
  • internal/heartbeat/authoring_path.go
  • internal/heartbeat/authoring_persist.go
  • internal/heartbeat/authoring_revision.go
  • internal/heartbeat/authoring_rollback_apply.go
  • internal/heartbeat/authoring_status_test.go
  • internal/heartbeat/authoring_target.go
  • internal/heartbeat/history_purge.go
  • internal/heartbeat/source_path.go
  • internal/heartbeat/wake.go
  • internal/heartbeat/wake_decision.go
  • internal/heartbeat/wake_helpers.go
  • internal/heartbeat/wake_persistence.go
  • internal/heartbeat/wake_test.go
  • internal/hooks/async_clone_dynamic.go
  • internal/hooks/dispatch.go
  • internal/hooks/dispatch_guards.go
  • internal/hooks/events.go
  • internal/hooks/events_catalog.go
  • internal/hooks/events_network.go
  • internal/hooks/events_window_manager.go
  • internal/hooks/executor_subprocess.go
  • internal/hooks/executor_subprocess_lifecycle.go
  • internal/hooks/executor_subprocess_process.go
  • internal/hooks/executor_subprocess_unix.go
  • internal/hooks/executor_test.go
  • internal/hooks/hooks_test.go
  • internal/hooks/pipeline.go
  • internal/loop/action_test.go
  • internal/loop/compiler_test.go
  • internal/loop/control_namespace.go
  • internal/loop/control_plan.go
  • internal/loop/coordinator.go
  • internal/loop/coordinator_fsm.go
  • internal/loop/coordinator_goal_control_test.go
  • internal/loop/coordinator_hooks.go
  • internal/loop/coordinator_test.go
  • internal/loop/coordinator_watch_test.go
  • internal/loop/dsl/refs/refs_test.go
  • internal/loop/dsl/refs/template.go
  • internal/loop/goal/executor.go
  • internal/loop/goal/executor_test.go
  • internal/loop/goal/executor_test_support_test.go
  • internal/loop/goal/recovery.go
  • internal/loop/goal/route.go
  • internal/loop/goal/types.go
  • internal/loop/goal_cancellation.go
  • internal/loop/input_defaults.go
  • internal/loop/postcommit_context.go
  • internal/loop/resource_spec_precedence.go
  • internal/loop/resource_spec_projection.go
  • internal/loop/runtime_types.go
  • internal/loop/service.go
  • internal/loop/service_control.go
  • internal/loop/service_goal_cleanup.go
  • internal/loop/service_hooks.go
  • internal/loop/service_options.go
  • internal/loop/service_participation.go
  • internal/loop/service_start.go
  • internal/loop/service_test.go
  • internal/loop/start_binding_test.go
  • internal/managedsidecar/mutation.go
  • internal/managedsidecar/path.go
  • internal/managedsidecar/target.go
  • internal/marketplace/service.go
  • internal/marketplace/service_refresh.go
  • internal/marketplace/service_test.go
  • internal/marketplace/source.go
  • internal/marketplace/source_test.go
  • internal/marketplace/store.go
  • internal/marketplace/store_test.go
  • internal/mcp/auth/dynamic_registration.go
  • internal/mcp/auth/response_body.go
  • internal/mcp/auth/sdk_adapter_test.go
  • internal/mcp/executor.go
  • internal/mcp/executor_auth.go
  • internal/mcp/executor_client.go
  • internal/mcp/executor_payload_redaction.go
  • internal/mcp/executor_redaction.go
  • internal/mcp/executor_result.go
  • internal/mcp/executor_result_binary.go
  • internal/mcp/executor_test.go
  • internal/mcp/hosted_proxy_transport_error.go
  • internal/mcp/peer.go
  • internal/mcp/peer_test.go
  • internal/mcp/securehttp/client.go
  • internal/mcp/securehttp/policy.go
  • internal/mcp/securehttp/transport.go
  • internal/mcp/serve.go
  • internal/mcp/serve_projection.go
  • internal/mcp/serve_test.go
  • internal/mcp/tool_descriptor.go
  • internal/memory/assembler.go
  • internal/memory/assembler_test.go
  • internal/memory/batch.go
  • internal/memory/catalog_operations.go
  • internal/memory/catalog_query.go
  • internal/memory/catalog_readiness.go
  • internal/memory/catalog_rows.go
  • internal/memory/catalog_rows_close_error_test.go
  • internal/memory/catalog_test_helper_test.go
  • internal/memory/checkpoint_summary.go
  • internal/memory/checkpoint_summary_state.go
  • internal/memory/checkpoint_summary_test.go
  • internal/memory/checkpoint_summary_update.go
  • internal/memory/context.go
  • internal/memory/contract/types.go
  • internal/memory/decision_checkpoint_revert.go
  • internal/memory/decision_query.go
  • internal/memory/decision_records.go
  • internal/memory/decision_revert.go
  • internal/memory/dream.go
  • internal/memory/dream_run.go
  • internal/memory/dream_test.go
  • internal/memory/dream_workspace.go
  • internal/memory/extractor/runtime_test.go
  • internal/memory/extractor_events_test.go
  • internal/memory/header_catalog.go
  • internal/memory/header_count.go
  • internal/memory/mutation_raw.go
  • internal/memory/observability.go
  • internal/memory/perf_bench_test.go
  • internal/memory/provider/local/memstore/memstore.go
  • internal/memory/provider/local/memstore/memstore_test.go
  • internal/memory/provider/local/provider.go
  • internal/memory/provider/local/provider_test.go
  • internal/memory/query_records.go
  • internal/memory/recall/recall.go
  • internal/memory/recall/recall_signals.go
  • internal/memory/recall/signal_recorder.go
  • internal/memory/recall/signal_recorder_test.go
  • internal/memory/recall_recorder_registry.go
  • internal/memory/recall_source.go
  • internal/memory/recall_test.go
  • internal/memory/replay.go
  • internal/memory/snapshot.go
  • internal/memory/store.go
  • internal/memory/store_catalog.go
  • internal/memory/store_index.go
  • internal/memory/store_memv2_test.go
  • internal/memory/store_options.go
  • internal/memory/store_scan.go
  • internal/memory/store_scope.go
  • internal/memory/store_sync.go
  • internal/memory/store_test.go
  • internal/modelcatalog/errors.go
  • internal/modelcatalog/live_model_rows.go
  • internal/modelcatalog/live_sources_test.go
  • internal/modelcatalog/modelsdev_test.go
  • internal/modelcatalog/service.go
  • internal/modelcatalog/service_refresh.go
  • internal/modelcatalog/service_test.go
  • internal/modelcatalog/sources_test.go
  • internal/network/audit.go
  • internal/network/manager_send.go
  • internal/network/manager_send_test.go
  • internal/network/router_envelope.go
  • internal/notifications/cursor.go
  • internal/notifications/delivery_id.go
  • internal/notifications/delivery_id_test.go
  • internal/notifications/presets/delivery_identity.go
  • internal/notifications/presets/filter.go
  • internal/notifications/presets/match_test.go
  • internal/notifications/presets/service.go
  • internal/notifications/presets/service_dispatch.go
  • internal/notifications/presets/service_events.go
  • internal/notifications/presets/service_helpers.go
  • internal/notifications/presets/task_event.go
  • internal/notifications/presets/task_observer.go
  • internal/notifications/presets/types.go
  • internal/notifications/scope.go
  • internal/observe/helpers_test.go
  • internal/observe/hooks_test.go
  • internal/observe/observer.go
  • internal/observe/observer_hooks.go
  • internal/observe/observer_test.go
  • internal/observe/overview_test.go
  • internal/observe/perf_bench_test.go
  • internal/observe/reconcile.go
  • internal/observe/reconcile_owner.go
  • internal/observe/reconcile_test.go
  • internal/observe/retention.go
  • internal/observe/task_run_fixture_test.go
  • internal/observe/tasks_integration_test.go
  • internal/observe/tasks_snapshot.go
  • internal/observe/tasks_test.go
  • internal/outboundpolicy/dialer.go
  • internal/outboundpolicy/http_client.go
  • internal/outboundpolicy/http_client_test.go
  • internal/outboundpolicy/policy.go
  • internal/procutil/detached.go
  • internal/procutil/detached_test.go
  • internal/procutil/process_group_windows.go
  • internal/procutil/process_group_windows_test.go
  • internal/providerauth/command.go
  • internal/providerauth/native_cli.go
  • internal/providers/classify.go
  • internal/providers/classify_test.go
  • internal/providers/diagnostics.go
  • internal/providers/login_descriptor.go
  • internal/providers/prestart.go
  • internal/providers/prestart_cache.go
  • internal/providers/prestart_fingerprint.go
  • internal/providers/prestart_test.go
  • internal/providers/probe_env.go
  • internal/providers/runner.go
  • internal/providers/runner_test.go
  • internal/redact/claim_token_json.go
  • internal/redact/dynamic.go
  • internal/redact/exact.go
  • internal/redact/exact_binary.go
  • internal/redact/json.go
  • internal/redact/patterns.go
  • internal/redact/redact.go
  • internal/redact/redact_test.go
  • internal/redact/slog.go
  • internal/registry/clawhub/client.go
  • internal/registry/clawhub/client_request.go
  • internal/registry/clawhub/client_response.go
  • internal/registry/clawhub/client_retry.go
  • internal/registry/clawhub/client_spool.go
  • internal/registry/clawhub/client_test.go
  • internal/registry/clawhub/network_policy.go
  • internal/registry/extract.go
  • internal/registry/extract_context.go
  • internal/registry/extract_directory.go
  • internal/registry/extract_limits.go
  • internal/registry/extract_path.go
  • internal/registry/extract_test.go
  • internal/registry/github/client.go
  • internal/registry/github/client_test.go
  • internal/registry/github/download.go
  • internal/registry/github/http.go
  • internal/registry/github/publish.go
  • internal/registry/github/release_selection.go
  • internal/registry/github/releases.go
  • internal/registry/github/request_retry.go
  • internal/registry/github/response_body.go
  • internal/registry/gitsrc/archive.go
  • internal/registry/gitsrc/client.go
  • internal/registry/gitsrc/client_test.go
  • internal/registry/gitsrc/errors.go
  • internal/registry/gitsrc/git_runtime.go
  • internal/registry/gitsrc/reference.go
  • internal/registry/http_archive.go
  • internal/registry/http_archive_test.go
  • internal/registry/installer.go
  • internal/registry/installer_archive.go
  • internal/registry/installer_checksum.go
  • internal/registry/installer_checksum_test.go
  • internal/registry/installer_cleanup.go
  • internal/registry/installer_content_type_test.go
  • internal/registry/installer_flow.go
  • internal/registry/installer_integration_test.go
  • internal/registry/installer_io.go
  • internal/registry/installer_metadata.go
  • internal/registry/installer_publication.go
  • internal/registry/installer_publication_journal.go
  • internal/registry/installer_publication_lock.go
  • internal/registry/installer_publication_recovery.go
  • internal/registry/installer_publication_replace.go
  • internal/registry/installer_result.go
  • internal/registry/installer_staging.go
  • internal/registry/installer_staging_lease.go
  • internal/registry/installer_staging_lease_unix.go
  • internal/registry/installer_staging_lease_unsupported.go
  • internal/registry/installer_staging_lease_windows.go
  • internal/registry/installer_stream.go
  • internal/registry/installer_test.go
  • internal/registry/multi.go
  • internal/registry/multi_clone.go
  • internal/registry/multi_test.go
  • internal/registry/perf_bench_test.go
  • internal/registry/types.go
  • internal/resources/kernel.go
  • internal/resources/kernel_records.go
  • internal/resources/kernel_source_session.go
  • internal/resources/kernel_test.go
  • internal/resources/kernel_transaction.go
  • internal/resources/perf_bench_test.go
  • internal/resources/reconcile_pass.go
  • internal/resources/reconcile_test.go
  • internal/resources/types.go
  • internal/retry/backoff.go
  • internal/retry/retry.go
  • internal/retry/retry_test.go
  • internal/sandbox/daytona/cmd/compozy-daytona-sidecar/helpers.go
  • internal/sandbox/daytona/cmd/compozy-daytona-sidecar/main.go
  • internal/sandbox/daytona/cmd/compozy-daytona-sidecar/main_test.go
  • internal/sandbox/daytona/command_runtime.go
  • internal/sandbox/daytona/http_response.go
  • internal/sandbox/daytona/launcher.go
  • internal/sandbox/daytona/launcher_transport_integration_test.go
  • internal/sandbox/daytona/perf_bench_test.go
  • internal/sandbox/daytona/provider_test.go
  • internal/sandbox/daytona/shell.go
  • internal/sandbox/daytona/sidecar_session.go
  • internal/sandbox/daytona/sidecar_session_loop.go
  • internal/sandbox/daytona/sidecar_transport_cleanup_test.go
  • internal/sandbox/daytona/sidecar_transport_launch.go
  • internal/sandbox/daytona/ssh.go
  • internal/sandbox/daytona/ssh_helpers.go
  • internal/sandbox/daytona/ssh_session.go
  • internal/sandbox/daytona/ssh_test.go
  • internal/sandbox/daytona/ssh_token_test.go
  • internal/sandbox/daytona/ssh_validation_test.go
  • internal/sandbox/daytona/sync_from_runtime_cleanup_test.go
  • internal/sandbox/daytona/tar.go
  • internal/sandbox/daytona/tar_extract.go
  • internal/sandbox/daytona/tar_test.go
  • internal/sandbox/daytona/transport.go
  • internal/sandbox/registry.go
  • internal/sandbox/types.go
  • internal/scheduler/scheduler.go
  • internal/scheduler/scheduler_integration_test.go
  • internal/session/additional_test.go
  • internal/session/compaction.go
  • internal/session/compaction_lifecycle.go
  • internal/session/coordinator_fallback_test.go
  • internal/session/failure.go
  • internal/session/file_mutation_verifier.go
  • internal/session/goal_command_test.go
  • internal/session/health_hooks.go
  • internal/session/health_test.go
  • internal/session/hook_dispatch_events.go
  • internal/session/inputqueue/mutation.go
  • internal/session/inputqueue/queue.go
  • internal/session/interfaces.go
  • internal/session/ledger.go
  • internal/session/managed_input_goal_meta.go
  • internal/session/managed_input_lifecycle.go
  • internal/session/manager.go
  • internal/session/manager_busy_input.go
  • internal/session/manager_busy_input_test.go
  • internal/session/manager_clear.go
  • internal/session/manager_clear_cleanup_operation.go
  • internal/session/manager_clear_family_cleanup.go
  • internal/session/manager_clear_family_operation.go
  • internal/session/manager_clear_manifest.go
  • internal/session/manager_clear_operation.go
  • internal/session/manager_clear_test.go
  • internal/session/manager_context.go
  • internal/session/manager_create_accepted.go
  • internal/session/manager_create_prepare.go
  • internal/session/manager_defaults.go
  • internal/session/manager_delete.go
  • internal/session/manager_delete_capabilities.go
  • internal/session/manager_delete_staging.go
  • internal/session/manager_delete_test.go
  • internal/session/manager_delete_tombstone.go
  • internal/session/manager_durable_event.go
  • internal/session/manager_finalization.go
  • internal/session/manager_goal_commands.go
  • internal/session/manager_helpers.go
  • internal/session/manager_hooks.go
  • internal/session/manager_hooks_compaction_test.go
  • internal/session/manager_hooks_context.go
  • internal/session/manager_hooks_events_test.go
  • internal/session/manager_hooks_lifecycle_test.go
  • internal/session/manager_hooks_prompt_test.go
  • internal/session/manager_hooks_resume_test.go
  • internal/session/manager_hooks_support_test.go
  • internal/session/manager_hooks_test.go
  • internal/session/manager_input_dispatch.go
  • internal/session/manager_integration_test.go
  • internal/session/manager_lifecycle.go
  • internal/session/manager_lifecycle_contract_test.go
  • internal/session/manager_lifecycle_state.go
  • internal/session/manager_managed_input_submit.go
  • internal/session/manager_network_peer_binding.go
  • internal/session/manager_options.go
  • internal/session/manager_process_watchers.go
  • internal/session/manager_prompt_admission.go
  • internal/session/manager_prompt_admission_identity.go
  • internal/session/manager_prompt_contract_test.go
  • internal/session/manager_prompt_event_observation.go
  • internal/session/manager_prompt_event_storage.go
  • internal/session/manager_prompt_input_event.go
  • internal/session/manager_prompt_lifetime_test.go
  • internal/session/manager_prompt_request.go
  • internal/session/manager_prompt_runtime.go
  • internal/session/manager_prompt_runtime_loop.go
  • internal/session/manager_prompt_submit.go
  • internal/session/manager_prompt_tasks.go
  • internal/session/manager_resume.go
  • internal/session/manager_resume_run.go
  • internal/session/manager_resume_test.go
  • internal/session/manager_sandbox_test.go
  • internal/session/manager_session_db_family.go
  • internal/session/manager_session_owner.go
  • internal/session/manager_shutdown.go
  • internal/session/manager_start_launch.go
  • internal/session/manager_start_launch_accepted.go
  • internal/session/manager_start_run.go
  • internal/session/manager_start_stop.go
  • internal/session/manager_start_storage.go
  • internal/session/manager_stop_finalization.go
  • internal/session/manager_stop_integration_test.go
  • internal/session/manager_synthetic_prompt_test.go
  • internal/session/manager_test.go
  • internal/session/manager_test_support_test.go
  • internal/session/manager_transcript_marker.go
  • internal/session/manager_transition_test.go
  • internal/session/manager_types.go
  • internal/session/path_containment.go
  • internal/session/prompt_activity.go
  • internal/session/prompt_activity_conversion.go
  • internal/session/prompt_activity_test.go
  • internal/session/prompt_chunk_coalescer_test.go
  • internal/session/provider_lifecycle_integration_test.go
  • internal/session/provider_lifecycle_test.go
  • internal/session/provider_runtime.go
  • internal/session/provider_runtime_command.go
  • internal/session/provider_runtime_path.go
  • internal/session/provider_runtime_test.go
  • internal/session/query.go
  • internal/session/query_metadata.go
  • internal/session/query_recorder.go
  • internal/session/query_store.go
  • internal/session/query_test.go
  • internal/session/repair.go
  • internal/session/repair_persistence.go
  • internal/session/repair_test.go
  • internal/session/resume_repair.go
  • internal/session/resume_repair_test.go
  • internal/session/runtime_overrides.go
  • internal/session/sandbox.go
  • internal/session/session_catalog_stream.go
  • internal/session/session_stream_broadcast.go
  • internal/session/session_stream_broadcast_test.go
  • internal/session/soul_persistence.go
  • internal/session/stop_reason.go
  • internal/session/synthetic_prompt.go
  • internal/session/transcript_test.go
  • internal/session/transient_model.go
  • internal/session/transient_model_test.go
  • internal/sessions/ledger/materializer.go
  • internal/sessions/ledger/materializer_test.go
  • internal/settings/collection_provider_write.go
  • internal/settings/collection_settings_map.go
  • internal/settings/collections.go
  • internal/settings/config_apply_record_lifecycle.go
  • internal/settings/config_apply_records.go
  • internal/settings/config_apply_records_close_error_test.go
  • internal/settings/config_apply_runtime.go
  • internal/settings/config_apply_service_test.go
  • internal/settings/mcp_catalog_notifications.go
  • internal/settings/mcp_mutation.go
  • internal/settings/mcp_secrets.go
  • internal/settings/models_clone.go
  • internal/settings/models_provider.go
  • internal/settings/provider_auth_status_test.go
  • internal/settings/provider_model_curation.go
  • internal/settings/provider_models_projection.go
  • internal/settings/provider_mutation_lifecycle.go
  • internal/settings/section_memory_apply.go
  • internal/settings/service.go
  • internal/settings/service_test.go
  • internal/situation/service_context.go
  • internal/situation/service_payload.go
  • internal/situation/service_test.go
  • internal/situation/task_context_redaction.go
  • internal/situation/workspace_knowledge.go
  • internal/skills/diagnostics.go
  • internal/skills/loader_test.go
  • internal/skills/marketplace/cleanup.go
  • internal/skills/marketplace/helpers.go
  • internal/skills/marketplace/install.go
  • internal/skills/marketplace/service.go
  • internal/skills/marketplace/service_lifecycle.go
  • internal/skills/marketplace/service_test.go
  • internal/skills/marketplace/update.go
  • internal/skills/observe_events.go
  • internal/skills/path_security.go
  • internal/skills/provenance.go
  • internal/skills/provenance_test.go
  • internal/skills/registry_discovery.go
  • internal/skills/registry_test.go
  • internal/skills/resource_test.go
  • internal/skillscan/scan.go
  • internal/soul/authoring.go
  • internal/soul/authoring_internal_test.go
  • internal/soul/authoring_path.go
  • internal/soul/authoring_persist.go
  • internal/soul/authoring_target.go
  • internal/soul/authoring_test.go
  • internal/soul/history_purge.go
  • internal/soul/soul_path.go
  • internal/sse/decode.go
  • internal/sse/decode_context_test.go
  • internal/store/event_store.go
  • internal/store/globaldb/automation_record_normalize.go
  • internal/store/globaldb/automation_run_insert.go
  • internal/store/globaldb/bridge_sqlc_mapping.go
  • internal/store/globaldb/global_db_automation.go
  • internal/store/globaldb/global_db_automation_integration_test.go
  • internal/store/globaldb/global_db_automation_reservation.go
  • internal/store/globaldb/global_db_automation_suggestions.go
  • internal/store/globaldb/global_db_bridge_dedup_subscriptions.go
  • internal/store/globaldb/global_db_bridge_delivery.go
  • internal/store/globaldb/global_db_bridge_delivery_metrics.go
  • internal/store/globaldb/global_db_bridge_delivery_test.go
  • internal/store/globaldb/global_db_bridge_scan.go
  • internal/store/globaldb/global_db_bridge_task_subscription_test.go
  • internal/store/globaldb/global_db_extra_test.go
  • internal/store/globaldb/global_db_goal_binding_integration_test.go
  • internal/store/globaldb/global_db_goal_budget_test.go
  • internal/store/globaldb/global_db_goal_stop_checkpoints.go
  • internal/store/globaldb/global_db_goal_tools.go
  • internal/store/globaldb/global_db_goal_turn_runtime_integration_test.go
  • internal/store/globaldb/global_db_heartbeat.go
  • internal/store/globaldb/global_db_heartbeat_wake.go
  • internal/store/globaldb/global_db_loop_death_resume.go
  • internal/store/globaldb/global_db_loop_effect_outbox.go
  • internal/store/globaldb/global_db_loop_events.go
  • internal/store/globaldb/global_db_loop_inline_integration_test.go
  • internal/store/globaldb/global_db_loop_reconcile.go
  • internal/store/globaldb/global_db_loop_reconcile_queries.go
  • internal/store/globaldb/global_db_loop_test.go
  • internal/store/globaldb/global_db_mcp_auth_test.go
  • internal/store/globaldb/global_db_migration_test_helpers_test.go
  • internal/store/globaldb/global_db_network_audit.go
  • internal/store/globaldb/global_db_network_availability_event.go
  • internal/store/globaldb/global_db_network_conversation_summary.go
  • internal/store/globaldb/global_db_network_conversations.go
  • internal/store/globaldb/global_db_network_coordination_events.go
  • internal/store/globaldb/global_db_network_wake_events.go
  • internal/store/globaldb/global_db_notification_cursor.go
  • internal/store/globaldb/global_db_notification_cursor_test.go
  • internal/store/globaldb/global_db_observe.go
  • internal/store/globaldb/global_db_observe_retention_tokens.go
  • internal/store/globaldb/global_db_observe_token_usage.go
  • internal/store/globaldb/global_db_permission.go
  • internal/store/globaldb/global_db_session.go
  • internal/store/globaldb/global_db_session_test.go
  • internal/store/globaldb/global_db_soul.go
  • internal/store/globaldb/global_db_task.go
  • internal/store/globaldb/global_db_task_blocks.go
  • internal/store/globaldb/global_db_task_blocks_persistence.go
  • internal/store/globaldb/global_db_task_claim.go
  • internal/store/globaldb/global_db_task_claim_complete.go
  • internal/store/globaldb/global_db_task_claim_lease.go
  • internal/store/globaldb/global_db_task_claim_test.go
  • internal/store/globaldb/global_db_task_coordinator.go
  • internal/store/globaldb/global_db_task_coordinator_boundary_rules.go
  • internal/store/globaldb/global_db_task_coordinator_event.go
  • internal/store/globaldb/global_db_task_coordinator_mutations.go
  • internal/store/globaldb/global_db_task_coordinator_progress.go
  • internal/store/globaldb/global_db_task_coordinator_runtime.go
  • internal/store/globaldb/global_db_task_coordinator_settlement.go
  • internal/store/globaldb/global_db_task_coordinator_wake_publication.go
  • internal/store/globaldb/global_db_task_event_tx.go
  • internal/store/globaldb/global_db_task_event_tx_test.go
  • internal/store/globaldb/global_db_task_force.go
  • internal/store/globaldb/global_db_task_force_helpers.go
  • internal/store/globaldb/global_db_task_history_import.go
  • internal/store/globaldb/global_db_task_history_import_test.go
  • internal/store/globaldb/global_db_task_integration_test.go
  • internal/store/globaldb/global_db_task_lease_mutations.go
  • internal/store/globaldb/global_db_task_lease_settlement_tx.go
  • internal/store/globaldb/global_db_task_mutation_runs.go
  • internal/store/globaldb/global_db_task_mutation_tx.go
  • internal/store/globaldb/global_db_task_nominal.go
  • internal/store/globaldb/global_db_task_observer.go
  • internal/store/globaldb/global_db_task_parent_rollup.go
  • internal/store/globaldb/global_db_task_reservation.go
  • internal/store/globaldb/global_db_task_review_helpers.go
  • internal/store/globaldb/global_db_task_run_fixture_test.go
  • internal/store/globaldb/global_db_task_run_metadata.go
  • internal/store/globaldb/global_db_task_runs.go
  • internal/store/globaldb/global_db_task_session_lease_tx.go
  • internal/store/globaldb/global_db_task_status.go
  • internal/store/globaldb/global_db_task_terminal_commands.go
  • internal/store/globaldb/global_db_task_test.go
  • internal/store/globaldb/global_db_task_transaction.go
  • internal/store/globaldb/global_db_task_watch_event_payloads.go
  • internal/store/globaldb/global_db_taskless_run_recovery.go
  • internal/store/globaldb/global_db_test.go
  • internal/store/globaldb/global_db_vault_test.go
  • internal/store/globaldb/global_db_watch_events.go
  • internal/store/globaldb/global_db_watch_events_automation.go
  • internal/store/globaldb/global_db_watch_events_loop.go
  • internal/store/globaldb/global_db_watch_events_network.go
  • internal/store/globaldb/global_db_watch_events_observe.go
  • internal/store/globaldb/global_db_watch_events_session.go
  • internal/store/globaldb/global_db_watch_events_test.go
  • internal/store/globaldb/global_db_workspace.go
  • internal/store/globaldb/migration_stream.go
  • internal/store/globaldb/notification_cursor_mapping.go
  • internal/store/globaldb/queries/notification.sql
  • internal/store/globaldb/queries/session_core.sql
  • internal/store/globaldb/queries/task_core.sql
  • internal/store/globaldb/queries/task_force.sql
  • internal/store/globaldb/queries/task_nominal.sql
  • internal/store/globaldb/queries/task_terminal_commands.sql
  • internal/store/globaldb/repositories.go
  • internal/store/globaldb/schema/definitions/31_bridges.sql
  • internal/store/globaldb/schema/definitions/37_notifications.sql
  • internal/store/globaldb/schema/definitions/60_network.sql
  • internal/store/globaldb/schema/definitions/72_task_runs.sql
  • internal/store/globaldb/schema/migrations/00049_schema.sql
  • internal/store/globaldb/schema/migrations/00050_schema.sql
  • internal/store/globaldb/schema/migrations/00051_schema.sql
  • internal/store/globaldb/schema/migrations/00052_schema.sql
  • internal/store/globaldb/sqlcgen/models.go
  • internal/store/globaldb/sqlcgen/notification.sql.go
  • internal/store/globaldb/sqlcgen/session_core.sql.go
  • internal/store/globaldb/sqlcgen/task_core.sql.go
  • internal/store/globaldb/sqlcgen/task_force.sql.go
  • internal/store/globaldb/sqlcgen/task_nominal.sql.go
  • internal/store/globaldb/sqlcgen/task_terminal_commands.sql.go
  • internal/store/globaldb/sqlite_constraints.go
  • internal/store/globaldb/task_core_mapping.go
  • internal/store/globaldb/task_force_mapping.go
  • internal/store/id.go
  • internal/store/memv2_helpers_test.go
  • internal/store/migrate_test.go
  • internal/store/migration_bootstrap.go
  • internal/store/migration_plan.go
  • internal/store/session_catalog_owner.go
  • internal/store/session_db_owner.go
  • internal/store/session_store_errors.go
  • internal/store/sessiondb/event_metadata_opener.go
  • internal/store/sessiondb/family_file.go
  • internal/store/sessiondb/family_lease.go
  • internal/store/sessiondb/family_mutation_linux.go
  • internal/store/sessiondb/family_mutation_other.go
  • internal/store/sessiondb/family_publish.go
  • internal/store/sessiondb/guarded_connection.go
  • internal/store/sessiondb/migration_stream.go
  • internal/store/sessiondb/owner.go
  • internal/store/sessiondb/owner_open.go
  • internal/store/sessiondb/perf_bench_test.go
  • internal/store/sessiondb/read_only.go
  • internal/store/sessiondb/read_only_pool.go
  • internal/store/sessiondb/read_only_pool_closing.go
  • internal/store/sessiondb/read_only_pool_dependencies.go
  • internal/store/sessiondb/read_only_pool_lease.go
  • internal/store/sessiondb/read_only_pool_quiesce.go
  • internal/store/sessiondb/read_only_pool_responsibility.go
  • internal/store/sessiondb/read_only_pool_shutdown.go
  • internal/store/sessiondb/schema/migrations/00003_schema.sql
  • internal/store/sessiondb/schema/migrations/00004_owner_insert_guard.sql
  • internal/store/sessiondb/schema/migrations/00005_schema.sql
  • internal/store/sessiondb/schema/schema.sql
  • internal/store/sessiondb/session_db.go
  • internal/store/sessiondb/session_db_extra_test.go
  • internal/store/sessiondb/session_db_integration_test.go
  • internal/store/sessiondb/session_db_test.go
  • internal/store/sessiondb/session_event_query.go
  • internal/store/sessiondb/session_event_write.go
  • internal/store/sessiondb/session_hook_runs.go
  • internal/store/sessiondb/session_sqlite.go
  • internal/store/sessiondb/sqlcgen/models.go
  • internal/store/sql_clause.go
  • internal/store/sqlite_corruption.go
  • internal/store/sqlite_recovery_test.go
  • internal/store/store_helpers_test.go
  • internal/store/write.go
  • internal/subprocess/environment.go
  • internal/subprocess/executable.go
  • internal/subprocess/executable_resolution.go
  • internal/subprocess/process.go
  • internal/subprocess/process_command.go
  • internal/subprocess/process_lifecycle.go
  • internal/subprocess/process_shutdown.go
  • internal/subprocess/process_shutdown_test.go
  • internal/subprocess/process_test.go
  • internal/subprocess/transport.go
  • internal/support/home_tree.go
  • internal/support/operation_store.go
  • internal/support/service.go
  • internal/support/service_artifacts.go
  • internal/support/service_builder.go
  • internal/support/service_lifecycle.go
  • internal/support/service_test.go
  • internal/task/autonomy.go
  • internal/task/block_service.go
  • internal/task/block_service_attention.go
  • internal/task/block_service_hooks.go
  • internal/task/block_service_lifecycle.go
  • internal/task/block_types.go
  • internal/task/claim_test_helpers_test.go
  • internal/task/claim_token_redaction.go
  • internal/task/completion_settlement_publication.go
  • internal/task/coordinator.go
  • internal/task/coordinator_boundary_specs.go
  • internal/task/coordinator_control.go
  • internal/task/coordinator_reference_validation.go
  • internal/task/coordinator_terminal_hooks.go
  • internal/task/diagnostics.go
  • internal/task/error_redaction.go
  • internal/task/errors.go
  • internal/task/force_ops.go
  • internal/task/force_ops_authorization.go
  • internal/task/force_ops_events.go
  • internal/task/force_ops_payload.go
  • internal/task/force_ops_request_normalization.go
  • internal/task/force_ops_settlement.go
  • internal/task/hooks.go
  • internal/task/hooks_integration_test.go
  • internal/task/hooks_postcommit_test.go
  • internal/task/hooks_test.go
  • internal/task/interfaces.go
  • internal/task/interfaces_integration_test.go
  • internal/task/lease.go
  • internal/task/lease_helpers.go
  • internal/task/lease_hooks.go
  • internal/task/lease_manager.go
  • internal/task/lease_manager_auto_enqueue.go
  • internal/task/lease_manager_claim.go
  • internal/task/lease_manager_lookup.go
  • internal/task/lease_manager_settlement.go
  • internal/task/lease_network_binding.go
  • internal/task/lease_settlement.go
  • internal/task/lease_test.go
  • internal/task/limits.go
  • internal/task/live.go
  • internal/task/manager.go
  • internal/task/manager_coordinator_run.go
  • internal/task/manager_coordinator_run_completion.go
  • internal/task/manager_coordinator_run_preflight.go
  • internal/task/manager_coordinator_run_publication.go
  • internal/task/manager_dependencies.go
  • internal/task/manager_event_payloads.go
  • internal/task/manager_event_recording.go
  • internal/task/manager_integration_test.go
  • internal/task/manager_participation.go
  • internal/task/manager_reconcile_settlement.go
  • internal/task/manager_reconcile_status.go
  • internal/task/manager_review.go
  • internal/task/manager_review_events.go
  • internal/task/manager_review_test.go
  • internal/task/manager_run_cancellation.go
  • internal/task/manager_run_claim.go
  • internal/task/manager_run_completion.go
  • internal/task/manager_run_direct_admission.go
  • internal/task/manager_run_failure.go
  • internal/task/manager_run_helpers.go
  • internal/task/manager_run_hooks.go
  • internal/task/manager_run_mutation_settlement.go
  • internal/task/manager_run_nominal_settlement.go
  • internal/task/manager_run_records.go
  • internal/task/manager_run_recovery.go
  • internal/task/manager_run_start.go
  • internal/task/manager_run_terminal_command.go
  • internal/task/manager_run_terminal_recovery.go
  • internal/task/manager_run_terminal_settlement.go
  • internal/task/manager_run_transition_events.go
  • internal/task/manager_run_wake_recovery.go
  • internal/task/manager_task_cancellation_plan.go
  • internal/task/manager_task_crud.go
  • internal/task/manager_task_execution.go
  • internal/task/manager_task_execution_approval.go
  • internal/task/manager_task_triage_cancel.go
  • internal/task/manager_test.go
  • internal/task/manager_validation.go
  • internal/task/network_wake_settlement_service.go
  • internal/task/postcommit_context.go
  • internal/task/review.go
  • internal/task/review_lifecycle.go
  • internal/task/review_requests.go
  • internal/task/review_test.go
  • internal/task/review_validation.go
  • internal/task/run_history_import.go
  • internal/task/run_mutation.go
  • internal/task/run_nominal_mutation.go
  • internal/task/scheduler_controls.go
  • internal/task/scheduler_controls_events.go
  • internal/task/scheduler_controls_normalize.go
  • internal/task/scheduler_controls_test.go
  • internal/task/starvation_events.go
  • internal/task/status_hooks.go
  • internal/task/terminal_run_command.go
  • internal/task/terminal_run_command_apply.go
  • internal/task/terminal_run_command_store_test.go
  • internal/task/terminal_run_command_validation.go
  • internal/task/types_mutation.go
  • internal/task/types_query.go
  • internal/task/validate_helpers.go
  • internal/task/validate_identity.go
  • internal/task/validate_mutation.go
  • internal/task/validate_run.go
  • internal/task/validate_run_event.go
  • internal/task/validate_scope.go
  • internal/task/validate_test.go
  • internal/task/wake.go
  • internal/task/wake_audit.go
  • internal/task/wake_dedupe.go
  • internal/task/wake_dispatch.go
  • internal/task/wake_summary.go
  • internal/testutil/acpmock/cmd/acpmock-driver/sandbox.go
  • internal/testutil/acpmock/driver_test.go
  • internal/testutil/e2e/artifacts.go
  • internal/testutil/e2e/automation_tasks.go
  • internal/testutil/e2e/mock_agents.go
  • internal/testutil/e2e/runtime_harness.go
  • internal/testutil/e2e/runtime_harness_integration_test.go
  • internal/testutil/e2e/runtime_harness_lifecycle_test.go
  • internal/testutil/e2e/runtime_harness_process.go
  • internal/testutil/e2e/runtime_harness_sessions.go
  • internal/tools/artifact_sweeper_test.go
  • internal/tools/builtin/builtin_test.go
  • internal/tools/builtin/task_mutation_schemas.go
  • internal/tools/dispatch_test.go
  • internal/tools/errors.go
  • internal/tools/mcp_reliability.go
  • internal/tools/mcp_test.go
  • internal/tools/perf_bench_test.go
  • internal/tools/reason.go
  • internal/tools/schema.go
  • internal/tools/schema_composition.go
  • internal/transcript/transcript_codec_contract_test.go
  • internal/transcript/transcript_payload.go
  • internal/transcript/transcript_prune_contract_test.go
  • internal/transcript/transcript_security_markers_test.go
  • internal/transcript/transcript_test.go
  • internal/transcript/transcript_test_support_test.go
  • internal/transcript/transcript_ui_projection_test.go
  • internal/update/apply.go
  • internal/update/detect.go
  • internal/update/detect_matrix_test.go
  • internal/update/detect_test.go
  • internal/update/github.go
  • internal/update/manager.go
  • internal/update/manager_apply_test.go
  • internal/update/manager_archive.go
  • internal/update/manager_check_test.go
  • internal/update/release_track.go
  • internal/update/resource_cleanup.go
  • internal/update/test_helpers_test.go
  • internal/update/types.go
  • internal/vault/ciphertext.go
  • internal/vault/crypto.go
  • internal/vault/service.go
  • internal/vault/service_test.go
  • internal/version/version.go
  • internal/version/version_test.go
  • internal/windowmanager/active_coalescer.go
  • internal/windowmanager/lifecycle_test.go
  • internal/windowmanager/reducer_history_replace.go
  • internal/windowmanager/service_contract_test.go
  • internal/windowmanager/service_layout.go
  • internal/windowmanager/service_test.go
  • internal/windowmanager/topology_test.go
  • internal/windowmanager/validate.go
  • internal/windowmanager/validate_return_anchor.go
  • internal/workref/ref_bench_test.go
  • internal/workspace/clone.go
  • internal/workspace/discovery.go
  • internal/workspace/helpers.go
  • internal/workspace/identity.go
  • internal/workspace/identity_test.go
  • internal/workspace/options.go
  • internal/workspace/perf_bench_test.go
  • internal/workspace/registration_create.go
  • internal/workspace/registration_id.go
  • internal/workspace/resolver.go
  • internal/workspace/resolver_cache_behavior_test.go
  • internal/workspace/resolver_config_behavior_test.go
  • internal/workspace/resolver_crud.go
  • internal/workspace/resolver_identity_behavior_test.go
  • internal/workspace/resolver_mutation_test.go
  • internal/workspace/resolver_test.go
  • internal/workspace/resolver_test_support_test.go
  • internal/workspaceaccess/default_policy_test.go
  • internal/workspaceaccess/default_policy_validation.go
  • internal/workspaceaccess/errors.go
  • magefiles/boundaries.go
  • magefiles/codegen.go
  • magefiles/git.go
  • packages/site/lib/__tests__/provider-model-catalog-docs.test.ts
  • scripts/devreadiness/dev_readiness_integration_test.go
  • scripts/gate_integration_test.go
  • sdk/go/errors.go
  • sdk/go/extension.go
  • sdk/go/extension_context.go
  • sdk/go/extension_context_test.go
  • sdk/go/extension_describe.go
  • sdk/go/extension_initialization.go
  • sdk/go/extension_registration.go
  • sdk/go/extension_shutdown.go
  • sdk/go/extension_validation.go
  • sdk/go/extensiontest/harness_test.go
  • sdk/go/runtime_contract_test.go
  • sdk/go/runtime_test.go
  • sdk/go/transport.go
  • sdk/go/transport_framing.go
  • sdk/go/transport_lifecycle_test.go
  • skills/bundled_test.go
  • web/src/lib/__tests__/settings-api-contract.test.ts
  • web/src/routes/_app/settings/-memory-recall-section.tsx
  • web/src/systems/bridges/adapters/__tests__/bridges-api.test.ts
  • web/src/systems/bridges/adapters/bridge-setup-api.ts
  • web/src/systems/bridges/adapters/bridges-api.ts
  • web/src/systems/bridges/hooks/__tests__/use-bridge-health-stream.test.tsx
  • web/src/systems/bridges/hooks/__tests__/use-bridges.test.tsx
  • web/src/systems/bridges/hooks/use-bridge-health-stream.ts
  • web/src/systems/bridges/lib/__tests__/bridge-formatters.test.ts
  • web/src/systems/bridges/lib/__tests__/query-keys.test.ts
  • web/src/systems/bridges/lib/__tests__/query-options.test.ts
  • web/src/systems/bridges/lib/bridge-formatters.ts
  • web/src/systems/bridges/lib/bridge-list-query.ts
  • web/src/systems/bridges/lib/query-keys.ts
  • web/src/systems/bridges/lib/query-options.ts
  • web/src/systems/marketplace/components/__tests__/marketplace-components.test.tsx
  • web/src/systems/marketplace/components/extension-install-model.ts
  • web/src/systems/runtime/mocks/handlers.ts
  • web/src/systems/session/hooks/__tests__/use-session-prompt-runtime.test.tsx
  • web/src/systems/settings/adapters/__tests__/settings-api.test.ts
  • web/src/systems/settings/components/__tests__/provider-detail-dialog.test.tsx
  • web/src/systems/settings/components/provider-edit-form-auth-fields.tsx
  • web/src/systems/settings/components/provider-inspect-view.tsx
  • web/src/systems/settings/components/provider-login-descriptor.tsx
  • web/src/systems/settings/hooks/__tests__/use-settings-providers-page.test.tsx
  • web/src/systems/settings/lib/provider-draft.ts
  • web/src/systems/settings/mocks/fixtures.ts
  • web/src/systems/settings/types.ts
  • web/src/systems/skill/__tests__/types.test.ts
  • web/src/systems/skill/adapters/__tests__/skill-api.test.ts
  • web/src/systems/tasks/adapters/__tests__/tasks-api-orchestration.test.ts
  • web/src/systems/tasks/adapters/task-bridge-notifications-api.ts
  • web/src/systems/tasks/components/__tests__/task-bridge-subscription-create-dialog.test.tsx
  • web/src/systems/tasks/components/task-bridge-subscription-create-dialog.tsx
  • web/src/systems/tasks/hooks/__tests__/use-task-orchestration-msw.test.tsx
  • web/src/systems/tasks/lib/__tests__/query-keys.test.ts
  • web/src/systems/tasks/lib/query-keys.ts
  • web/src/systems/tasks/mocks/__tests__/fixtures.test.ts
  • web/src/systems/tasks/mocks/fixtures.ts
  • web/src/systems/tasks/mocks/handlers.ts

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

@github-actions

github-actions Bot commented Aug 3, 2026

Copy link
Copy Markdown
Contributor

React Doctor found no new issues. 🎉

Reviewed by React Doctor for commit 082144b.

@greptile-apps

greptile-apps Bot commented Aug 5, 2026

Copy link
Copy Markdown

Too many files changed for review. (1810 files found, 100 file limit)

@pedronauck
pedronauck merged commit 7e630c6 into main Aug 5, 2026
20 checks passed
@pedronauck
pedronauck deleted the refac-go branch August 5, 2026 00:07
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.

2 participants