init: add source code from src.zip

This commit is contained in:
sigridjineth
2026-03-31 01:55:58 -07:00
commit f5a40b86de
1902 changed files with 513237 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import type { Command } from '../../commands.js'
import { getSubscriptionType } from '../../utils/auth.js'
import { isEnvTruthy } from '../../utils/envUtils.js'
const upgrade = {
type: 'local-jsx',
name: 'upgrade',
description: 'Upgrade to Max for higher rate limits and more Opus',
availability: ['claude-ai'],
isEnabled: () =>
!isEnvTruthy(process.env.DISABLE_UPGRADE_COMMAND) &&
getSubscriptionType() !== 'enterprise',
load: () => import('./upgrade.js'),
} satisfies Command
export default upgrade

File diff suppressed because one or more lines are too long