source dump of claude code
1import type { Command } from '../../commands.js'
2import { checkStatsigFeatureGate_CACHED_MAY_BE_STALE } from '../../services/analytics/growthbook.js'
3
4const 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
13export default thinkback