/ commands / thinkback / index.ts
index.ts
 1  import type { Command } from '../../commands.js'
 2  import { checkStatsigFeatureGate_CACHED_MAY_BE_STALE } from '../../services/analytics/growthbook.js'
 3  
 4  const thinkback = {
 5    type: 'local-jsx',
 6    name: 'think-back',
 7    description: 'Your 2025 Claude Code Year in Review',
 8    isEnabled: () =>
 9      checkStatsigFeatureGate_CACHED_MAY_BE_STALE('tengu_thinkback'),
10    load: () => import('./thinkback.js'),
11  } satisfies Command
12  
13  export default thinkback