init claude-code

This commit is contained in:
2026-04-01 17:32:37 +02:00
commit 73b208c009
1902 changed files with 513237 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import type { Command } from '../../commands.js'
import { isClaudeAISubscriber } from '../../utils/auth.js'
const rateLimitOptions = {
type: 'local-jsx',
name: 'rate-limit-options',
description: 'Show options when rate limit is reached',
isEnabled: () => {
if (!isClaudeAISubscriber()) {
return false
}
return true
},
isHidden: true, // Hidden from help - only used internally
load: () => import('./rate-limit-options.js'),
} satisfies Command
export default rateLimitOptions