rfe.speedrun — for Claude Code rfe.speedrun, rfe-creator, community, for Claude Code, ide skills, $ARGUMENTS, input <path>, headless, announce-complete, dry-run

v1.0.0

Acerca de este Skill

Escenario recomendado: Ideal for AI agents that need step 0: parse arguments and persist flags. Resumen localizado: You are running the full RFE pipeline in speedrun mode. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Características

Step 0: Parse Arguments and Persist Flags
Parse $ARGUMENTS for:
--input <path : Path to a YAML file with batch entries
--headless: Suppress questions and confirmations (for CI / eval)
--announce-complete: Print completion marker when done (for CI / eval harnesses)

# Core Topics

jwforres jwforres
[6]
[11]
Updated: 4/8/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
55
Canonical Locale
en
Detected Body Locale
en

Escenario recomendado: Ideal for AI agents that need step 0: parse arguments and persist flags. Resumen localizado: You are running the full RFE pipeline in speedrun mode. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

¿Por qué usar esta habilidad?

Recomendacion: rfe.speedrun helps agents step 0: parse arguments and persist flags. You are running the full RFE pipeline in speedrun mode. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Mejor para

Escenario recomendado: Ideal for AI agents that need step 0: parse arguments and persist flags.

Casos de uso accionables for rfe.speedrun

Caso de uso: Applying Step 0: Parse Arguments and Persist Flags
Caso de uso: Applying Parse $ARGUMENTS for:
Caso de uso: Applying --input <path : Path to a YAML file with batch entries

! Seguridad y limitaciones

  • Limitacion: RFE count : Single RFE per entry, unless an entry describes multiple distinct business needs
  • Limitacion: prompt: "Users need to verify model signatures at serving time"
  • Limitacion: You must have exactly N RFE IDs — if fewer were created, retry the missing entries

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is rfe.speedrun?

Escenario recomendado: Ideal for AI agents that need step 0: parse arguments and persist flags. Resumen localizado: You are running the full RFE pipeline in speedrun mode. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install rfe.speedrun?

Run the command: npx killer-skills add jwforres/rfe-creator/rfe.speedrun. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for rfe.speedrun?

Key use cases include: Caso de uso: Applying Step 0: Parse Arguments and Persist Flags, Caso de uso: Applying Parse $ARGUMENTS for:, Caso de uso: Applying --input <path : Path to a YAML file with batch entries.

Which IDEs are compatible with rfe.speedrun?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for rfe.speedrun?

Limitacion: RFE count : Single RFE per entry, unless an entry describes multiple distinct business needs. Limitacion: prompt: "Users need to verify model signatures at serving time". Limitacion: You must have exactly N RFE IDs — if fewer were created, retry the missing entries.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add jwforres/rfe-creator/rfe.speedrun. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use rfe.speedrun immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

rfe.speedrun

You are running the full RFE pipeline in speedrun mode. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows. Step 0: Parse Arguments and

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

You are running the full RFE pipeline in speedrun mode. Your goal is to go from problem statements to submitted Jira tickets with minimal interaction. You orchestrate by calling other skills — never duplicate their work.

Step 0: Parse Arguments and Persist Flags

Parse $ARGUMENTS for:

  • --input <path>: Path to a YAML file with batch entries
  • --headless: Suppress questions and confirmations (for CI / eval)
  • --announce-complete: Print completion marker when done (for CI / eval harnesses)
  • --dry-run: Skip Jira writes in submit
  • --batch-size N: Override batch size (default 5), passed to auto-fix
  • Remaining arguments: either a single Jira key (RHAIRFE-NNNN) or a free-text idea

Clean temp state and persist parsed flags:

bash
1python3 scripts/state.py clean 2python3 scripts/state.py init tmp/speedrun-config.yaml headless=<true/false> announce_complete=<true/false> dry_run=<true/false> batch_size=<N> input_file=<path or null>

Determine pipeline mode:

  • Mode A (Batch YAML): --input flag present → batch create + auto-fix + submit
  • Mode B (Existing RFE): argument is a Jira key (RHAIRFE-NNNN) → skip create, auto-fix + submit
  • Mode C (Single idea): free-text argument, no --input → single create + auto-fix + submit

If no arguments provided, stop with usage instructions.

Defaults

When the user doesn't specify, use these defaults:

  • Priority: Normal
  • Size: S or M (unless the input clearly describes a large initiative)
  • RFE count: Single RFE per entry, unless an entry describes multiple distinct business needs
  • Labels: None unless specified

Phase 1: Create

Mode A (Batch YAML): Read the YAML input file. Format:

yaml
1- prompt: "Users need to verify model signatures at serving time" 2 priority: Critical 3 labels: [candidate-3.5] 4- prompt: "TrustyAI operator crashes on large clusters" 5 priority: Major

Count entries and pre-allocate all IDs upfront:

bash
1N=$(python3 -c "import yaml; print(len(yaml.safe_load(open('batch.yaml'))))") 2python3 scripts/next_rfe_id.py $N # prints RFE-001 through RFE-<N>

For each entry, launch an Agent to invoke /rfe.create. Pass the pre-assigned ID so each Agent knows which ID to use:

Agent for entry 1:  /rfe.create --headless --rfe-id RFE-001 [--priority <priority>] <prompt>
Agent for entry 2:  /rfe.create --headless --rfe-id RFE-002 [--priority <priority>] <prompt>
...
Agent for entry N:  /rfe.create --headless --rfe-id RFE-<N> [--priority <priority>] <prompt>

Each entry is a single business need — /rfe.create must produce exactly one RFE per invocation. Wait for all N agents to complete. You must have exactly N RFE IDs — if fewer were created, retry the missing entries. Never delete or re-create task files during Phase 1 — quality issues are addressed in Phase 2 (Auto-fix).

Mode B (Existing RFE): Skip Phase 1. The Jira key(s) from arguments become the processing list.

Mode C (Single idea): Invoke /rfe.create with the user's input:

/rfe.create [--headless] <idea_text>

If not headless, /rfe.create will ask clarifying questions. Collect created RFE IDs.

After Phase 1 (all modes), persist the ID list to disk:

bash
1python3 scripts/state.py write-ids tmp/speedrun-all-ids.txt <all_IDs>

Phase 2: Auto-fix

Re-read config and ID list from disk (in case context was compressed during Phase 1):

bash
1python3 scripts/state.py read tmp/speedrun-config.yaml 2python3 scripts/state.py read-ids tmp/speedrun-all-ids.txt

Build the auto-fix command using flags from the config file:

/rfe.auto-fix [--headless] [--announce-complete] [--batch-size N] <all_IDs_from_file>

Pass --headless and --announce-complete through if set. Pass --batch-size if provided.

Auto-fix handles: assessment, feasibility checks, review, auto-revision, re-assessment, splitting oversized RFEs, retry queue, and report generation. Wait for it to complete.

Phase 3: Submit

Re-read flags (in case context was compressed):

bash
1python3 scripts/state.py read tmp/speedrun-config.yaml

Re-read ID list from disk:

bash
1python3 scripts/state.py read-ids tmp/speedrun-all-ids.txt

Collect passing IDs:

bash
1python3 scripts/collect_recommendations.py <all_IDs_from_file>

Parse the SUBMIT= line for IDs ready to submit.

If no IDs are ready to submit, skip to Phase 4.

If IDs are ready:

/rfe.submit [--dry-run] <passing_IDs>

If not headless: /rfe.submit will show a confirmation table before writing to Jira — this is the one mandatory interaction point.

If headless: pass --headless so submit skips confirmation.

Phase 4: Summary

Re-read flags:

bash
1python3 scripts/state.py read tmp/speedrun-config.yaml

If headless, output a brief machine-readable summary. If interactive, output:

## Speedrun Complete

### Created
- RFE-NNN: <title> (Priority: Normal)

### Review Results
- Passed: N
- Failed: N
- Split: N (into M children)

### Submitted
- RHAIRFE-NNNN: <title> [created/updated/dry-run]

### Reports
- Run report: artifacts/auto-fix-runs/<timestamp>.yaml
- Review report: artifacts/auto-fix-runs/<timestamp>-report.html

### Remaining Issues
<Any RFEs that could not be auto-fixed, or "None">

$ARGUMENTS

Habilidades relacionadas

Looking for an alternative to rfe.speedrun or another community skill for your workflow? Explore these related open-source skills.

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

Resumen localizado: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
Inteligencia Artificial

widget-generator

Logo of f
f

Resumen localizado: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

Resumen localizado: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Resumen localizado: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Desarrollador