Skip to content
Draft
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 docs/workflows/gh-agent-workflows/bugs.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Bug Hunting

Find reproducible bugs and automatically fix them.
Find reproducible bugs, with optional automated fixes via detector-fixer chaining.

**Bug Hunter** finds user-impacting bugs by reviewing recent git history, writing minimal reproduction scripts, and filing a report issue only when the bug is concretely confirmed. Chain it to [Create PR from Issue](../detector-fixer-chaining.md) for a fully autonomous detect-and-fix loop. Most runs end with `noop`.

Expand Down
2 changes: 1 addition & 1 deletion docs/workflows/gh-agent-workflows/code-duplication.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Code Duplication

Find duplicate and misplaced functions, then consolidate them automatically.
Find duplicate and misplaced functions, with optional automated consolidation via detector-fixer chaining.

**Code Duplication Detector** scans source files to find semantically related functions that live in different files, duplicate implementations of the same logic, and functions that belong in a different module. Chain it to [Create PR from Issue](../detector-fixer-chaining.md) for a fully autonomous detect-and-fix loop. Most runs end with `noop`.

Expand Down
2 changes: 1 addition & 1 deletion docs/workflows/gh-agent-workflows/newbie-contributor.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Newbie Contributor

Review documentation from a new contributor's perspective and automatically fix gaps.
Review documentation from a new contributor's perspective, with optional fixes via detector-fixer chaining.

**Newbie Contributor Patrol** reads all contributor-facing documentation as if it were a new contributor's first encounter with the project — following getting-started paths, checking for missing prerequisites, and flagging blocking gaps. An **Elastic-specific** variant also cross-references published Elastic documentation. Chain it to [Create PR from Issue](../detector-fixer-chaining.md) for a fully autonomous detect-and-fix loop. Most runs end with `noop`.

Expand Down
2 changes: 1 addition & 1 deletion docs/workflows/gh-agent-workflows/test-coverage.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Test Coverage

Find under-tested code and automatically add focused tests.
Find under-tested code, with optional focused test additions via detector-fixer chaining.

**Test Coverage Detector** identifies code paths with no or minimal test coverage by running coverage tools (when available) and analyzing recent changes for missing tests. Chain it to [Create PR from Issue](../detector-fixer-chaining.md) for a fully autonomous detect-and-fix loop. Most runs end with `noop`.

Expand Down
2 changes: 1 addition & 1 deletion docs/workflows/gh-agent-workflows/text-quality.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Text Quality

Find text issues and automatically fix them.
Find text issues, with optional auto-fixes via detector-fixer chaining.

**Text Auditor** scans user-facing text sources — CLI output, error messages, documentation, and help text — for typos, grammatical errors, unclear messages, and inconsistent terminology. You can [chain it to Create PR from Issue](../detector-fixer-chaining.md) for a fully autonomous detect-and-fix loop. Most runs end with `noop`.

Expand Down
2 changes: 1 addition & 1 deletion scripts/trigger-ci-workflows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ FIXERS=(

MONITORS=(
"Trigger Agent Suggestions"
"Trigger Estc Downstream Health"
"Trigger Internal Downstream Health"
"Trigger Product Manager Impersonator"
"Trigger Project Summary"
)
Expand Down