Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cli/commands/import/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const { green, yellow, cyan, dim, reset } = ANSI;
export const registerImport = (program: Command) => {
const importCmd = program
.command('import')
.description('Import a runtime, memory, or starter toolkit into this project. [experimental]');
.description('Import a runtime, memory, or starter toolkit into this project.');

// Existing YAML flow: agentcore import --source <path>
importCmd
Expand Down
15 changes: 1 addition & 14 deletions src/cli/tui/screens/import/ImportSelectScreen.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import type { SelectableItem } from '../../components/SelectList';
import { SelectScreen } from '../../components/SelectScreen';
import { Text } from 'ink';

export type ImportType = 'runtime' | 'memory' | 'evaluator' | 'online-eval' | 'starter-toolkit';

Expand Down Expand Up @@ -42,17 +41,5 @@ interface ImportSelectScreenProps {
}

export function ImportSelectScreen({ onSelect, onExit }: ImportSelectScreenProps) {
return (
<SelectScreen
title="Import"
headerContent={
<Text color="yellow">
Experimental: this feature imports resources that are already deployed, use with caution
</Text>
}
items={IMPORT_OPTIONS}
onSelect={item => onSelect(item.id)}
onExit={onExit}
/>
);
return <SelectScreen title="Import" items={IMPORT_OPTIONS} onSelect={item => onSelect(item.id)} onExit={onExit} />;
}
Loading