14 lines
442 B
TypeScript
14 lines
442 B
TypeScript
import type { Command } from '../../commands.js'
|
|
import { checkStatsigFeatureGate_CACHED_MAY_BE_STALE } from '../../services/analytics/growthbook.js'
|
|
|
|
const thinkback = {
|
|
type: 'local-jsx',
|
|
name: 'think-back',
|
|
description: 'Your 2025 Claude Code Year in Review',
|
|
isEnabled: () =>
|
|
checkStatsigFeatureGate_CACHED_MAY_BE_STALE('tengu_thinkback'),
|
|
load: () => import('./thinkback.js'),
|
|
} satisfies Command
|
|
|
|
export default thinkback
|