diff --git a/cmd/picoclaw/internal/onboard/helpers.go b/cmd/picoclaw/internal/onboard/helpers.go index e1e443e96..4db8bdc8b 100644 --- a/cmd/picoclaw/internal/onboard/helpers.go +++ b/cmd/picoclaw/internal/onboard/helpers.go @@ -10,9 +10,6 @@ import ( "github.com/sipeed/picoclaw/pkg/config" ) -// legacyAgentFile is the old workspace template filename superseded by AGENTS.md. -const legacyAgentFile = "AGENT.md" - func onboard() { configPath := internal.GetConfigPath() @@ -73,11 +70,6 @@ func copyEmbeddedToTarget(targetDir string) error { return nil } - // Skip legacy file superseded by AGENTS.md - if filepath.Base(path) == legacyAgentFile { - return nil - } - // Read embedded file data, err := embeddedFiles.ReadFile(path) if err != nil {