Inline base64 source maps had been checked into tracked src files. This strips those comments from the repository without changing runtime behavior or adding ongoing guardrails, per the requested one-time cleanup scope. Constraint: Keep this change limited to tracked source cleanup only Rejected: Add CI/source verification guard | user requested one-time cleanup only Confidence: high Scope-risk: narrow Reversibility: clean Directive: If these directives reappear, fix the producing transform instead of reintroducing repo-side cleanup code Tested: rg -n "sourceMappingURL" ., bun run smoke, bun run verify:privacy, bun run test:provider, npm run test:provider-recommendation Not-tested: bun run typecheck (repository has many pre-existing unrelated failures) Co-authored-by: anandh8x <test@example.com>
110 lines
3.8 KiB
TypeScript
110 lines
3.8 KiB
TypeScript
import { c as _c } from "react-compiler-runtime";
|
|
/**
|
|
* Miscellaneous subcommand handlers — extracted from main.tsx for lazy loading.
|
|
* setup-token, doctor, install
|
|
*/
|
|
/* eslint-disable custom-rules/no-process-exit -- CLI subcommand handlers intentionally exit */
|
|
|
|
import { cwd } from 'process';
|
|
import React from 'react';
|
|
import { WelcomeV2 } from '../../components/LogoV2/WelcomeV2.js';
|
|
import { useManagePlugins } from '../../hooks/useManagePlugins.js';
|
|
import type { Root } from '../../ink.js';
|
|
import { Box, Text } from '../../ink.js';
|
|
import { KeybindingSetup } from '../../keybindings/KeybindingProviderSetup.js';
|
|
import { logEvent } from '../../services/analytics/index.js';
|
|
import { MCPConnectionManager } from '../../services/mcp/MCPConnectionManager.js';
|
|
import { AppStateProvider } from '../../state/AppState.js';
|
|
import { onChangeAppState } from '../../state/onChangeAppState.js';
|
|
import { isAnthropicAuthEnabled } from '../../utils/auth.js';
|
|
export async function setupTokenHandler(root: Root): Promise<void> {
|
|
logEvent('tengu_setup_token_command', {});
|
|
const showAuthWarning = !isAnthropicAuthEnabled();
|
|
const {
|
|
ConsoleOAuthFlow
|
|
} = await import('../../components/ConsoleOAuthFlow.js');
|
|
await new Promise<void>(resolve => {
|
|
root.render(<AppStateProvider onChangeAppState={onChangeAppState}>
|
|
<KeybindingSetup>
|
|
<Box flexDirection="column" gap={1}>
|
|
<WelcomeV2 />
|
|
{showAuthWarning && <Box flexDirection="column">
|
|
<Text color="warning">
|
|
Warning: You already have authentication configured via
|
|
environment variable or API key helper.
|
|
</Text>
|
|
<Text color="warning">
|
|
The setup-token command will create a new OAuth token which
|
|
you can use instead.
|
|
</Text>
|
|
</Box>}
|
|
<ConsoleOAuthFlow onDone={() => {
|
|
void resolve();
|
|
}} mode="setup-token" startingMessage="This will guide you through long-lived (1-year) auth token setup for your Claude account. Claude subscription required." />
|
|
</Box>
|
|
</KeybindingSetup>
|
|
</AppStateProvider>);
|
|
});
|
|
root.unmount();
|
|
process.exit(0);
|
|
}
|
|
|
|
// DoctorWithPlugins wrapper + doctor handler
|
|
const DoctorLazy = React.lazy(() => import('../../screens/Doctor.js').then(m => ({
|
|
default: m.Doctor
|
|
})));
|
|
function DoctorWithPlugins(t0) {
|
|
const $ = _c(2);
|
|
const {
|
|
onDone
|
|
} = t0;
|
|
useManagePlugins();
|
|
let t1;
|
|
if ($[0] !== onDone) {
|
|
t1 = <React.Suspense fallback={null}><DoctorLazy onDone={onDone} /></React.Suspense>;
|
|
$[0] = onDone;
|
|
$[1] = t1;
|
|
} else {
|
|
t1 = $[1];
|
|
}
|
|
return t1;
|
|
}
|
|
export async function doctorHandler(root: Root): Promise<void> {
|
|
logEvent('tengu_doctor_command', {});
|
|
await new Promise<void>(resolve => {
|
|
root.render(<AppStateProvider>
|
|
<KeybindingSetup>
|
|
<MCPConnectionManager dynamicMcpConfig={undefined} isStrictMcpConfig={false}>
|
|
<DoctorWithPlugins onDone={() => {
|
|
void resolve();
|
|
}} />
|
|
</MCPConnectionManager>
|
|
</KeybindingSetup>
|
|
</AppStateProvider>);
|
|
});
|
|
root.unmount();
|
|
process.exit(0);
|
|
}
|
|
|
|
// install handler
|
|
export async function installHandler(target: string | undefined, options: {
|
|
force?: boolean;
|
|
}): Promise<void> {
|
|
const {
|
|
setup
|
|
} = await import('../../setup.js');
|
|
await setup(cwd(), 'default', false, false, undefined, false);
|
|
const {
|
|
install
|
|
} = await import('../../commands/install.js');
|
|
await new Promise<void>(resolve => {
|
|
const args: string[] = [];
|
|
if (target) args.push(target);
|
|
if (options.force) args.push('--force');
|
|
void install.call(result => {
|
|
void resolve();
|
|
process.exit(result.includes('failed') ? 1 : 0);
|
|
}, {}, args);
|
|
});
|
|
}
|