rfe.speedrun — for Claude Code rfe.speedrun, rfe-creator, community, for Claude Code, ide skills, Jira ticket automation, RFE pipeline management, YAML file parsing, Batch processing, Automated workflow management, Claude Code

v1.0.0

关于此技能

Perfect for Development Agents needing automated Jira ticket creation and workflow management via YAML input files and headless mode. rfe.speedrun automates the RFE pipeline, creating and submitting Jira tickets with minimal interaction, benefiting developers and teams. It orchestrates tasks using other skills, ensuring efficient workflow management.

功能特性

Parse arguments using YAML files
Orchestrate tasks using other skills
Create and submit Jira tickets automatically
Supports batch mode for multiple entries
Handles different pipeline modes for various use cases

# 核心主题

jwforres jwforres
[6]
[11]
更新于: 4/8/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for operators, 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
Review Score
8/11
Quality Score
45
Canonical Locale
en
Detected Body Locale
en

Perfect for Development Agents needing automated Jira ticket creation and workflow management via YAML input files and headless mode. rfe.speedrun automates the RFE pipeline, creating and submitting Jira tickets with minimal interaction, benefiting developers and teams. It orchestrates tasks using other skills, ensuring efficient workflow management.

核心价值

Empowers agents to orchestrate the RFE pipeline using Python scripts, creating and submitting Jira tickets with minimal interaction, leveraging flags like --headless, --dry-run, and batch processing with --batch-size, while handling various input formats including free-text ideas and existing Jira keys.

适用 Agent 类型

Perfect for Development Agents needing automated Jira ticket creation and workflow management via YAML input files and headless mode.

赋予的主要能力 · rfe.speedrun

Automating Jira ticket creation from YAML batch files
Streamlining RFE pipeline management with headless mode and batch processing
Submitting Jira tickets with pre-assigned IDs and configurable priority, size, and labels

! 使用限制与门槛

  • Requires Python 3 and specific scripts like state.py and next_rfe_id.py
  • Limited to Jira ticket creation and management within the RFE pipeline
  • Dependent on flags and input formats for different modes of operation

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

实验室 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

rfe.speedrun 是什么?

Perfect for Development Agents needing automated Jira ticket creation and workflow management via YAML input files and headless mode. rfe.speedrun automates the RFE pipeline, creating and submitting Jira tickets with minimal interaction, benefiting developers and teams. It orchestrates tasks using other skills, ensuring efficient workflow management.

如何安装 rfe.speedrun?

运行命令:npx killer-skills add jwforres/rfe-creator/rfe.speedrun。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

rfe.speedrun 适用于哪些场景?

典型场景包括:Automating Jira ticket creation from YAML batch files、Streamlining RFE pipeline management with headless mode and batch processing、Submitting Jira tickets with pre-assigned IDs and configurable priority, size, and labels。

rfe.speedrun 支持哪些 IDE 或 Agent?

该技能兼容 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。可使用 Killer-Skills CLI 一条命令通用安装。

rfe.speedrun 有哪些限制?

Requires Python 3 and specific scripts like state.py and next_rfe_id.py;Limited to Jira ticket creation and management within the RFE pipeline;Dependent on flags and input formats for different modes of operation。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add jwforres/rfe-creator/rfe.speedrun。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    rfe.speedrun 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

rfe.speedrun

Streamline your workflow with rfe.speedrun, an AI agent skill that automates Jira ticket creation and submission for developers, saving time and increasing

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
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

相关技能

寻找 rfe.speedrun 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具