Relax ctx dependency in CLAUDE.md - #290
Merged
Merged
Conversation
ctx is a helper tool; it must not gate contribution, and we cannot mandate tools like that. The ctx-managed block previously ordered the agent to STOP when `ctx system bootstrap` failed, which walls off a fresh clone (no plugin, no binary) before any work happens. The block now frames ctx as an optional companion: when the command is missing, the agent recommends cloning the ctx repository and installing the plugin from the local clone (marketplace releases may lag), then continues with the task. The relay-verbatim-and-STOP behavior remains for an installed ctx that returns an error. The same softening was applied upstream to the ctx templates so it survives ctx init re-runs; this copy matches the new template. Spec: specs/introduce-ctx.md Signed-off-by: Volkan Özçelik <volkan.ozcelik@broadcom.com> Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Fixes GO-2026-5856 (Encrypted Client Hello privacy leak in crypto/tls), which govulncheck flagged as reachable from Nexus, Bootstrap, Pilot, and recovery TLS paths. Found in go1.26.4, fixed in go1.26.5. CI reads the version from go.mod (go-version-file), so this one line covers local and CI builds. make audit now reports 0 affecting vulnerabilities; make test passes. Spec: TBD Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ctx is a helper tool; it must not gate contribution, and we cannot
mandate tools like that. The ctx-managed block previously ordered the
agent to STOP when
ctx system bootstrapfailed, which walls off afresh clone (no plugin, no binary) before any work happens. The block
now frames ctx as an optional companion: when the command is missing,
the agent recommends cloning the ctx repository and installing the
plugin from the local clone (marketplace releases may lag), then
continues with the task. The relay-verbatim-and-STOP behavior remains
for an installed ctx that returns an error.
The same softening was applied upstream to the ctx templates so it
survives ctx init re-runs; this copy matches the new template.
Spec: specs/introduce-ctx.md
Signed-off-by: Volkan Özçelik volkan.ozcelik@broadcom.com