forked from aws/agentcore-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopy.ts
More file actions
50 lines (47 loc) · 1.96 KB
/
copy.ts
File metadata and controls
50 lines (47 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
* User-facing copy and text displayed in the TUI.
* Centralized here for consistency and easy updates.
*/
/**
* Hint text displayed on main screens.
* Uses · as separator for compact, readable hints.
*/
export const HINTS = {
HOME: 'Type to search, Tab commands, Esc quit',
COMMANDS: 'Type to filter, ↑↓ navigate, Enter select, Esc back',
} as const;
/**
* Quick start command descriptions shown on home screen.
*/
export const QUICK_START = {
create: 'Create a new AgentCore project',
add: 'Add agents and environment resources',
deploy: 'Deploy project to AWS',
tip: 'Coding agents can implement project and config changes',
} as const;
/**
* Command descriptions used in CLI help and TUI.
*/
export const COMMAND_DESCRIPTIONS = {
/** Main program description */
program: 'Build and deploy Agentic AI applications on AgentCore',
/** Command descriptions */
add: 'Add resources (agent, evaluator, online-eval, memory, credential, target)',
create: 'Create a new AgentCore project',
deploy: 'Deploy project infrastructure to AWS via CDK.',
dev: 'Launch local dev server, or invoke a running one.',
invoke: 'Invoke a deployed agent endpoint.',
logs: 'Stream or search agent runtime logs.',
package: 'Package agent artifacts without deploying.',
remove: 'Remove resources from project config.',
status: 'Show deployed resource details and status.',
traces: 'View and download agent traces.',
evals: 'View past eval run results.',
fetch: 'Fetch access info for deployed resources.',
pause: 'Pause an online eval config. Supports --arn for configs outside the project.',
resume: 'Resume a paused online eval config. Supports --arn for configs outside the project.',
run: 'Run on-demand evaluation. Supports --agent-arn for agents outside the project.',
import: 'Import resources from a Bedrock AgentCore Starter Toolkit project.',
update: 'Check for and install CLI updates',
validate: 'Validate agentcore/ config files.',
} as const;