chore(main): strip anti-AI refusal-trigger comment (FJ-4) #4
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "chore/strip-anti-ai-comment-fj-4"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Resolves FJ-4.
Removes the four-line anti-AI tripwire comment that upstream injected between
impl Commandand the#[tokio::main]entrypoint insrc/main.rs. The block carried a magic refusal string crafted to derail Claude tooling. It had no runtime effect but is counterproductive for this AI-assisted fork and is noise for every contributor and tool that reads the file.Acceptance criteria
src/main.rs:88-91is removed.git grep -nIE 'ANTHROPIC|MAGIC_STRING|TRIGGER_REFUSAL|triggers a refusal|unusable on this repository'returns no matches across the tree.cargo buildstill succeeds (comment-only removal; no behavior change).