Skip to main content
CORE:C:0007 mechanical medium coherence core

Workflow Definitions

The instruction file must contain a heading matching workflow terms (Workflow, Process, Pipeline, or Steps). Defining repeatable workflows with ordered steps helps the agent follow consistent processes for common tasks.

Antipatterns

  • Listing commands without a heading that matches workflow terms. The check requires a heading containing Workflow, Process, Pipeline, or Steps -- not just numbered lists of commands.
  • Using a heading like "## How To" or "## Procedures" that describes workflow content but does not match the expected terms.
  • Documenting workflows only in external runbooks or CI configuration without a corresponding section in the instruction file.

Pass / Fail

Pass

# Project

## Workflow

1. Run `uv run poe qa_fast` for pre-commit checks.
2. Create a PR with `gh pr create`.
3. Wait for CI to pass before merging.

Fail

# Project

## Setup

Install with `uv sync` and start developing.

Limitations

Checks for a heading containing "Workflow", "Process", "Pipeline", or "Steps". Does not verify the section defines repeatable processes with ordered steps.