Fixed Lint and Package Name Issue

Claude Code·Fable 5.[1m]·Soph·3mo ago·3min·1 Checkpoint·1 file change·+2/-3·8.1K tokens

can you look at the linter error?

3mo ago·2m

Fixed. The linter error was a typecheck failure in cmd/entire/cli/auth/repo_token.go:81: it still called contexts.DefaultConfigDir() and discovery.DefaultCacheDir(), which no longer exist — per-user config/cache dir resolution was consolidated into the internal/entireclient/userdirs package (the rest of the auth package, e.g. data_api.go:91, already uses it).

The fix: replaced the call with userdirs.Config() and userdirs.Cache(), dropped the now-unused contexts and discovery imports, and added the userdirs import. mise run fmt && mise run lint passes with 0 issues, and the auth package tests pass.