From 44f75cf6e0bb216c8656d584abb91fc640211bdf Mon Sep 17 00:00:00 2001 From: logikonline Date: Sun, 1 Feb 2026 06:46:28 -0500 Subject: [PATCH] docs(ci): add workflow validation tool to documentation - Document new validate_workflow tool in examples and tool table - Update list_workflows description to mention validation status - Add example usage for workflow validation --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 60eacd8..1dc57e0 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,7 @@ Ask Claude things like: - "Trigger the build.yml workflow on the main branch" - "What workflows are available in myorg/myrepo?" - "Show me the build.yml workflow file" +- "Validate the build.yml workflow in myorg/myrepo" - "What artifacts were produced by run #77?" - "What's the queue depth for each runner label?" - "Approve the workflow run from the fork PR" @@ -85,8 +86,9 @@ Ask Claude things like: | Tool | Description | |------|-------------| -| `list_workflows` | List available workflow files in a repository | +| `list_workflows` | List available workflow files in a repository (includes validation status) | | `get_workflow_file` | Get the YAML content of a workflow file | +| `validate_workflow` | Validate a workflow YAML file for parse errors (from repo or raw content) | | `list_workflow_runs` | List workflow runs for a repository | | `get_workflow_run` | Get run details with all jobs | | `get_job_logs` | Get logs from a specific job (auto-extracts errors for failed jobs) |