skilly. Buy ad slot
All skills
Community / AGENT SKILL

pr-ready

flowexec/flow
0 installs 136 GitHub stars
0

Run a pre-PR readiness check and report READY or NOT READY.

BEFORE YOU INSTALL

Understand the trade-offs.

SECURITY REVIEW

Not yet assessed

Review the original instructions and requested permissions before installing.

No security review is available for this catalog entry yet.

SKILL QUALITY

Not yet assessed

How clearly the skill guides your agent, how complete its workflow is, and how you can check the outcome.

No quality assessment is available for this catalog entry yet.

The full skill.

Original instructions from the publisher’s SKILL.md

Check whether the current branch is ready to open a PR. Work through each item and report PASS or FAIL:

1. **No focus markers** — `grep -rn "FDescribe\|FIt\|FEntry\|FContext\|FWhen" --include="*.go" .`
   Any match is a FAIL — these silently exclude all other tests in the suite.

2. **Validation passes** — run the `validate` executable via `mcp__flow__execute` (ref: `validate`).
   All steps must pass. Use `mcp__flow__run_command` for the `git`/`grep` checks below so they land
   in flow's history alongside it.

3. **No debug artifacts** — grep for `fmt.Println`, `spew.Dump` in `cmd/`, `internal/`, `pkg/`.
   Flag anything that looks like leftover debug output (not legitimate logging).

4. **Commit message format** — `git log main..HEAD --oneline`.
   Each commit should be: imperative, lowercase, ≤72 chars (`fix: ...`, `feat: ...`, `refactor: ...`).

5. **No direct edits to generated files** — `git diff main...HEAD --name-only` should not show changes to `types/**/*.go`, `docs/cli/*.md`, or `docs/types/*.md` in isolation (without a corresponding schema change).

After all checks: report overall **READY** or **NOT READY** with a concise summary of what needs fixing. Do not open a PR automatically — let the user decide.