[agent/claude] Update all Go files that import forge.lthn.ai/core/go or for... #3

Closed
Virgil wants to merge 3 commits from agent/update-all-go-files-that-import-forge-lt into main
Member

Task

Update all Go files that import forge.lthn.ai/core/go or forge.lthn.ai/core/go/pkg/core to use dappco.re/go/core instead. Also update go.mod to replace forge.lthn.ai/core/go v0.3.3 with dappco.re/go/core v0.4.7.

Important:

  • Only change forge.lthn.ai/core/go imports, NOT forge.lthn.ai/core/go-io, go-log, go-process etc
  • The old import was forge.lthn.ai/core/go/pkg/core — the new one is just dappco.re/go/core (no pkg/core suffix, source is at module root now)
  • After changes, run: GONOSUMDB='dappco.re/' GONOSUMCHECK='dappco.re/' go build ./pkg/mcp/ to verify it compiles
  • Commit the changes with message: refactor: migrate core import to dappco.re/go/core

Agent: claude
Commits: 1
Branch: agent/update-all-go-files-that-import-forge-lt


Auto-created by core-agent dispatch system.
Co-Authored-By: Virgil virgil@lethean.io

## Task Update all Go files that import forge.lthn.ai/core/go or forge.lthn.ai/core/go/pkg/core to use dappco.re/go/core instead. Also update go.mod to replace forge.lthn.ai/core/go v0.3.3 with dappco.re/go/core v0.4.7. Important: - Only change forge.lthn.ai/core/go imports, NOT forge.lthn.ai/core/go-io, go-log, go-process etc - The old import was forge.lthn.ai/core/go/pkg/core — the new one is just dappco.re/go/core (no pkg/core suffix, source is at module root now) - After changes, run: GONOSUMDB='dappco.re/*' GONOSUMCHECK='dappco.re/*' go build ./pkg/mcp/ to verify it compiles - Commit the changes with message: refactor: migrate core import to dappco.re/go/core **Agent:** claude **Commits:** 1 **Branch:** `agent/update-all-go-files-that-import-forge-lt` --- Auto-created by core-agent dispatch system. Co-Authored-By: Virgil <virgil@lethean.io>
Virgil added 3 commits 2026-03-21 12:08:51 +00:00
Co-Authored-By: Virgil <virgil@lethean.io>
Co-Authored-By: Virgil <virgil@lethean.io>
Co-Authored-By: Virgil <virgil@lethean.io>
Author
Member

Verification Failed

Command: go test ./...

go: inconsistent vendoring in /Users/snider/Code/.core/workspace/mcp-1774094143/src:
	dappco.re/go/core@v0.4.7: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	forge.lthn.ai/core/api@v0.1.5: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	forge.lthn.ai/core/cli@v0.3.7: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	forge.lthn.ai/core/go-ai@v0.1.12: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	forge.lthn.ai/core/go-io@v0.1.7: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	forge.lthn.ai/core/go-log@v0.0.4: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	forge.lthn.ai/core/go-process@v0.2.9: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	forge.lthn.ai/core/go-rag@v0.1.11: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	forge.lthn.ai/core/go-webview@v0.1.6: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	forge.lthn.ai/core/go-ws@v0.2.5: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/gin-gonic/gin@v1.12.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/gorilla/websocket@v1.5.3: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/modelcontextprotocol/go-sdk@v1.4.1: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/stretchr/testify@v1.11.1: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	gopkg.in/yaml.v3@v3.0.1: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	forge.lthn.ai/core/go@v0.3.3: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	forge.lthn.ai/core/go-i18n@...

Exit code: 1

## Verification Failed **Command:** `go test ./...` ``` go: inconsistent vendoring in /Users/snider/Code/.core/workspace/mcp-1774094143/src: dappco.re/go/core@v0.4.7: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt forge.lthn.ai/core/api@v0.1.5: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt forge.lthn.ai/core/cli@v0.3.7: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt forge.lthn.ai/core/go-ai@v0.1.12: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt forge.lthn.ai/core/go-io@v0.1.7: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt forge.lthn.ai/core/go-log@v0.0.4: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt forge.lthn.ai/core/go-process@v0.2.9: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt forge.lthn.ai/core/go-rag@v0.1.11: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt forge.lthn.ai/core/go-webview@v0.1.6: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt forge.lthn.ai/core/go-ws@v0.2.5: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt github.com/gin-gonic/gin@v1.12.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt github.com/gorilla/websocket@v1.5.3: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt github.com/modelcontextprotocol/go-sdk@v1.4.1: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt github.com/stretchr/testify@v1.11.1: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt gopkg.in/yaml.v3@v3.0.1: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt forge.lthn.ai/core/go@v0.3.3: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt forge.lthn.ai/core/go-i18n@... ``` **Exit code:** 1
Virgil added the
needs-review
label 2026-03-21 12:08:52 +00:00
Author
Member

Needs Review

Tests failed after rebase. Auto-merge gave up after retry.

Labelled needs-review for human attention.

## Needs Review Tests failed after rebase. Auto-merge gave up after retry. Labelled `needs-review` for human attention.
Virgil closed this pull request 2026-03-24 11:12:06 +00:00

Pull request closed

Sign in to join this conversation.
No description provided.