[AAASM-2718] 🔧 (agent-assembly): Use canonical lowercase org ID ai-agent-assembly#992
Conversation
…ests, Dockerfiles, scripts
… docs, verification reports
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Cargo.toml [workspace.package] repository/homepage URL casing only (AI-agent-assembly → ai-agent-assembly); no version change. Satisfies the compatibility-matrix CI gate. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Review — Claude CodeCI: ✅ Fixed and green. The only real failure was Scope vs AAASM-2718 (lowercase org ID across agent-assembly monorepo): ✅ Complete — One deliberate consistency choice worth noting: the Go fixture ( Verdict: ✅ Ready for Pioneer approval + merge once the heavy jobs finish (expected green). The only red was the compat-matrix gate, now resolved. |
\`go install/go list -m …@latest\` resolves to the published go-sdk tag, whose go.mod declares \`module github.com/AI-agent-assembly/go-sdk\`. Go enforces case-sensitive module-path matching, so the AAASM-2718 lowercase rename broke "Build language image — go" with a version-constraints conflict. Revert just these six module-path refs to mixed-case until go-sdk publishes a lowercase-module-path tag (AAASM-2729). Web-URL refs (LABEL image.source) stay lowercase — GitHub resolves org names case-insensitively. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Review update — Claude Code (second CI fix)A second real failure surfaced after the heavy jobs ran: Root cause: the same Go module-path ordering gate that affects the examples repo — but here it hit Fix (commit Consequence for scope: Status: the go-image build re-runs against the published mixed-case tag and resolves. No remaining real failures; the only other reds anywhere in this batch are the GHA org billing block (owner action). |
Description
Mechanical rename of the GitHub org ID from the mixed-case
AI-agent-assemblyto the canonical lowercaseai-agent-assemblyacross theagent-assemblymonorepo. The repository itself has already moved to the lowercase location (https://github.com/ai-agent-assembly/agent-assembly); this PR aligns every in-repo reference (URLs, module paths, image labels, docs) with the canonical casing. No behaviour change.Precedent: go-sdk PR #48 (
facc3af) applied the same rename for the go-sdk repo.Touched categories (one commit each):
.github/workflows/*(ci, dev-verify, docker, integration-tests)aa-ebpf-programsCargo.tomlrepository/homepagemetadata, Dockerfiles,docker/*,openapi/v1.yaml,sonar-project.properties, release scripts, integration-test fixtures (go.mod/main.gogo-sdk module path,pyproject.tomlcomment),aa-apiOpenAPI contact URLREADME.md,docs/**,CHANGELOG.md,CONTRIBUTING.md,SECURITY.md, verification reports,quickstart.castNo active Cargo
git =dependency URLs reference the org (the only such URLs are in comments / docs / verification reports), soCargo.lockis unchanged and no lock regen was required.Type of Change
Breaking Changes
GitHub org names are case-insensitive for routing, so existing
AI-agent-assemblyURLs continue to redirect. The Go fixture module path is updated consistently acrossrequire/replace/import and the-replace=flag, matching the lowercased go-sdk module.Related Issues
Testing
git grep 'AI-agent-assembly'returns 0 matches; 407 lowercaseai-agent-assemblyrefs remain.cargo metadata --format-version 1resolves cleanly;Cargo.lockunchanged.cargo fmt --all --checkclean.mdbook build(indocs/) succeeds.Checklist
cargo fmt)