@@ -298,7 +298,7 @@ const (
298298// NewLogsCommand creates the logs command
299299func NewLogsCommand () * cobra.Command {
300300 logsCmd := & cobra.Command {
301- Use : "logs [agentic- workflow-id]" ,
301+ Use : "logs [workflow-id]" ,
302302 Short : "Download and analyze agentic workflow logs with aggregated metrics" ,
303303 Long : `Download workflow run logs and artifacts from GitHub Actions for agentic workflows.
304304
@@ -314,12 +314,12 @@ Downloaded artifacts include:
314314- aw.patch: Git patch of changes made during execution
315315- workflow-logs/: GitHub Actions workflow run logs (job logs organized in subdirectory)
316316
317- The agentic- workflow-id is the basename of the markdown file without the .md extension.
317+ The workflow-id is the basename of the markdown file without the .md extension.
318318For example, for 'weekly-research.md', use 'weekly-research' as the workflow ID.
319319
320320Examples:
321321 ` + constants .CLIExtensionPrefix + ` logs # Download logs for all workflows
322- ` + constants .CLIExtensionPrefix + ` logs weekly-research # Download logs for specific agentic workflow
322+ ` + constants .CLIExtensionPrefix + ` logs weekly-research # Download logs for specific workflow
323323 ` + constants .CLIExtensionPrefix + ` logs -c 10 # Download last 10 matching runs
324324 ` + constants .CLIExtensionPrefix + ` logs --start-date 2024-01-01 # Download all runs after date
325325 ` + constants .CLIExtensionPrefix + ` logs --end-date 2024-01-31 # Download all runs before date
@@ -345,8 +345,8 @@ Examples:
345345 Run : func (cmd * cobra.Command , args []string ) {
346346 var workflowName string
347347 if len (args ) > 0 && args [0 ] != "" {
348- // Convert agentic workflow ID to GitHub Actions workflow name
349- // First try to resolve as an agentic workflow ID
348+ // Convert workflow ID to GitHub Actions workflow name
349+ // First try to resolve as a workflow ID
350350 resolvedName , err := workflow .ResolveWorkflowName (args [0 ])
351351 if err != nil {
352352 // If that fails, check if it's already a GitHub Actions workflow name
@@ -356,10 +356,10 @@ Examples:
356356 // It's already a valid GitHub Actions workflow name
357357 workflowName = args [0 ]
358358 } else {
359- // Neither agentic workflow ID nor valid GitHub Actions workflow name
359+ // Neither workflow ID nor valid GitHub Actions workflow name
360360 fmt .Fprintln (os .Stderr , console .FormatError (console.CompilerError {
361361 Type : "error" ,
362- Message : fmt .Sprintf ("workflow '%s' not found. Expected either an agentic workflow ID (e.g., 'test-claude') or GitHub Actions workflow name (e.g., 'Test Claude'). Original error: %v" , args [0 ], err ),
362+ Message : fmt .Sprintf ("workflow '%s' not found. Expected either a workflow ID (e.g., 'test-claude') or GitHub Actions workflow name (e.g., 'Test Claude'). Original error: %v" , args [0 ], err ),
363363 }))
364364 os .Exit (1 )
365365 }
0 commit comments