We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fc4ea0 commit 36d7f68Copy full SHA for 36d7f68
2 files changed
cli/src/utils/analytics.ts
@@ -12,8 +12,6 @@ let DEBUG_DEV_EVENTS = false
12
let currentUserId: string | undefined
13
let client: PostHog | undefined
14
15
-// Deprecated/unused: previously exposed outside; remove to avoid dead exports
16
-
17
export function initAnalytics() {
18
if (!env.NEXT_PUBLIC_POSTHOG_API_KEY || !env.NEXT_PUBLIC_POSTHOG_HOST_URL) {
19
throw new Error(
cli/src/utils/local-agent-registry.ts
@@ -156,10 +156,6 @@ export const loadLocalAgents = (): LocalAgentInfo[] => {
156
return cachedAgents
157
}
158
159
-export const announceLoadedAgents = (): void => {
160
- // no-op: avoid console noise
161
-}
162
163
export const getLoadedAgentsMessage = (): string | null => {
164
const agents = loadLocalAgents()
165
const agentsDir = findAgentsDirectory()
0 commit comments