chore: drop Homebrew + delete stale Java-era docs (CLI + MCP only)#138
Merged
Conversation
Three changes per the post-v0.3.0 cleanup goal:
## 1. Homebrew dropped
- .goreleaser.yml: remove `brews:` block.
- release-go.yml: remove HOMEBREW_TAP_OWNER/REPO/GITHUB_TOKEN env.
- README.md: remove the `### Homebrew` install section.
- shared/runbooks/release-go.md: remove `## Homebrew tap` section and
related cross-references.
- CHANGELOG.md / CLAUDE.md: scrub Homebrew mentions.
Not pursuing a tap — pre-built binaries from Releases + Cosign-verified
checksums cover the install surface. Saves repo creation + PAT churn.
## 2. Stale Java-era docs deleted
The entire `docs/project/` tree (architecture.md, conventions.md,
data-model.md, flows.md, ui.md, build-and-run.md) referenced Spring
Boot, application.yml, REST controllers, the React SPA, Jacoco, etc.
— all deleted in Phase 6 cutover. The content was wrong, not just
stale. CLAUDE.md is the single source of truth.
Updated PROJECT_SUMMARY.md links to point at CLAUDE.md instead.
## 3. `serve` subcommand decisively out of scope
CLAUDE.md previously said `serve: (deferred — not ported in v0.3.0)`.
Updated to state the position: codeiq has no REST API and no web UI.
Consumers use the CLI or the stdio MCP server. Java's `codeiq serve`
will not be reintroduced.
The `golang-jwt/jwt/v5` dep is transitive via the MCP SDK's auth
package (verified with `go mod why`) — not a serve-mode leftover.
CLAUDE.md note corrected.
Also drove (out-of-band) the branch-protection update:
$ gh api -X POST .../branches/main/protection/required_status_checks/contexts \
-f 'contexts[]=vet / test / staticcheck / gosec / govulncheck' \
-f 'contexts[]=index perf gate (fixture-multi-lang)'
→ both Go gates now block merge on main.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
PR #138 deleted docs/project/ and the brews: block, but missed: - README.md linked to docs/project/architecture.md + conventions.md - PROJECT_SUMMARY.md listed HOMEBREW_TAP_GITHUB_TOKEN as a runtime env - shared/runbooks/release-go.md still had "Homebrew tap PR fails" recovery - release-go.yml + .goreleaser.yml carried stale "darwin/arm64 deferred" comments after release-darwin.yml landed (#137) Pure docs/comments fix; no code or workflow behavior changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Three changes per the post-v0.3.0 cleanup goal:
Homebrew dropped — `.goreleaser.yml` `brews:` block + HOMEBREW_* envs in release-go.yml + install section in README + runbook section all gone. Pre-built signed binaries cover the install surface.
Stale `docs/project/` deleted — architecture.md, conventions.md, data-model.md, flows.md, ui.md, build-and-run.md all referenced Spring Boot, REST controllers, the React SPA, Jacoco — all deleted in Phase 6 cutover. Content was wrong, not just stale. CLAUDE.md is now the single source of truth.
`serve` subcommand decisively out of scope — CLAUDE.md previously said "deferred — not ported in v0.3.0". Now states the position: codeiq has no REST API and no web UI; the Java `codeiq serve` will not be reintroduced. Consumers use the CLI or the stdio MCP server.
Net diff: 13 files, +13 / -1433.
Already done out-of-band
Branch protection updated:
```
gh api -X POST .../branches/main/protection/required_status_checks/contexts \
-f 'contexts[]=vet / test / staticcheck / gosec / govulncheck' \
-f 'contexts[]=index perf gate (fixture-multi-lang)'
```
→ `go-ci` and `perf-gate` now block merge on main alongside the 6 security checks.
Test plan
🤖 Generated with Claude Code