mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 14:16:58 +10:00
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
|