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 pkg/cli/mcp_list_tools.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ The workflow-id-or-file can be:
- A file path (e.g., "weekly-research.md" or ".github/workflows/weekly-research.md")

Examples:
gh aw mcp list-tools --server github # Find workflows with 'github' MCP server
gh aw mcp list-tools --server github # Search for workflows containing the 'github' MCP server
gh aw mcp list-tools weekly-research --server github # List tools for 'github' server in weekly-research.md
gh aw mcp list-tools issue-triage --server safe-outputs # List tools for 'safe-outputs' server in issue-triage.md
gh aw mcp list-tools test-workflow --server playwright -v # Verbose output with tool descriptions
Expand Down
6 changes: 3 additions & 3 deletions pkg/cli/mcp_server_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ secrets are not shared with the MCP server process itself.
The server provides the following tools:
- status - Show status of agentic workflow files
- compile - Compile Markdown workflows to GitHub Actions YAML
- logs - Download and analyze workflow logs (requires write+ access)
- audit - Investigate a workflow run, job, or step and generate a report (requires write+ access)
- logs - Download and analyze workflow logs (requires write access or higher)
- audit - Investigate a workflow run, job, or step and generate a report (requires write access or higher)
- checks - Classify CI check state for a pull request
- mcp-inspect - Inspect MCP servers in workflows and list available tools
- add - Add workflows from remote repositories to .github/workflows
Expand All @@ -43,7 +43,7 @@ Access Control:
The GITHUB_ACTOR environment variable specifies the GitHub username for role-based
access control. The actor's repository role (admin, maintain, write, etc.) determines
which tools are available. Tools requiring elevated permissions (logs, audit) are always
mounted but will return permission denied errors if the actor lacks write+ access.
mounted but will return permission denied errors if the actor lacks write access or higher.
Comment on lines 43 to +46

Use the --validate-actor flag to enforce actor validation. When enabled, logs and audit
tools will return permission denied errors if GITHUB_ACTOR is not set. When disabled
Expand Down
2 changes: 1 addition & 1 deletion pkg/cli/pr_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ to another, including the code changes, title, and body. Useful for
migrating work from trial repositories to production repositories.

Available subcommands:
transfer - Transfer a pull request to another repository
- transfer - Transfer a pull request to another repository

Examples:
gh aw pr transfer https://github.com/trial/repo/pull/234
Expand Down