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
4 changes: 4 additions & 0 deletions messages/agent.generate.agent-spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ When your agent spec is ready, you then create the agent in your org by running

Type of agent to create. Internal types are copilots used internally by your company and customer types are the agents you create for your customers.

# flags.type.prompt

Type of agent to create.

# flags.role.summary

Role of the agent.
Expand Down
1 change: 1 addition & 0 deletions src/commands/agent/generate/agent-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export type AgentSpecFileContents = AgentJobSpecV2 & {
export const FLAGGABLE_PROMPTS = {
type: {
message: messages.getMessage('flags.type.summary'),
promptMessage: messages.getMessage('flags.type.prompt'),
validate: (d: string): boolean | string => d.length > 0 || 'Type cannot be empty',
options: ['customer', 'internal'],
required: true,
Expand Down