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
30 changes: 18 additions & 12 deletions .github/workflows/gh-aw-docs-applies-to-sweep.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion .github/workflows/gh-aw-docs-applies-to-sweep.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,13 @@ Invoke `skill(skill: docs-applies-to-tagging)` against `/tmp/gh-aw/sweep-data/sc

**Audit mode only — do not write any files.** The skill defaults to validation when not asked to fix; reinforce that intent in the call. This sweep produces an issue, not edits.

If the skill fails, abort the run by calling `noop` with `"docs-applies-to-tagging skill unavailable"` — there is no fallback heuristic worth filing as findings.
**Only treat the skill as unavailable after a confirmed exact-form failure.** Stochastic agent retries sometimes invoke the skill with a shortened form (e.g., `skill(docs-applies-to-tagging)` without the `skill:` prefix) which fails before the exact form is tried. Procedure:

1. Invoke with the exact form `skill(skill: docs-applies-to-tagging)`.
2. If the result is "Skill not found", retry once more with the same exact form.
3. Only after a second exact-form failure, abort the run by calling `noop` with `"docs-applies-to-tagging skill unavailable"` — there is no fallback heuristic worth filing as findings.

A single first-attempt failure (especially with a non-exact form) is **not** sufficient evidence to noop.

## Step 2: Build the findings list

Expand Down
30 changes: 18 additions & 12 deletions .github/workflows/gh-aw-docs-openings-sweep.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion .github/workflows/gh-aw-docs-openings-sweep.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,13 @@ Invoke `skill(skill: docs-page-opening-optimizer)` against `/tmp/gh-aw/sweep-dat

**Suggest only — do not produce edits to repo originals.** This sweep emits an issue, not a PR. The skill may modify files inside the scope copy directory; that is fine — the changes are scratch. To recover the suggestion, diff each modified scope file against the original at `${{ github.workspace }}/<path>`.

If the skill fails, abort by calling `noop` with `"docs-page-opening-optimizer skill unavailable"`.
**Only treat the skill as unavailable after a confirmed exact-form failure.** Stochastic agent retries sometimes invoke the skill with a shortened form (e.g., `skill(docs-page-opening-optimizer)` without the `skill:` prefix) which fails before the exact form is tried. Procedure:

1. Invoke with the exact form `skill(skill: docs-page-opening-optimizer)`.
2. If the result is "Skill not found", retry once more with the same exact form.
3. Only after a second exact-form failure, abort by calling `noop` with `"docs-page-opening-optimizer skill unavailable"`.

A single first-attempt failure (especially with a non-exact form) is **not** sufficient evidence to noop.

## Optional: cross-check H1 specificity via the Elastic Docs MCP server

Expand Down
Loading
Loading