ralph-tui-create-beads

ralph-tui-create-beads is a skill for Claude Code, Codex from subsy/ralph-tui. It costs 75 tokens per session (2,644 once invoked), scanned A, original, MIT.

A converter that turns a product requirements document, or PRD, into beads: an epic and smaller dependent tasks for ralph-tui. Ralph-tui is an autonomous task runner, while beads are its structured task records.

In plain words
What is it for?
Use it to extract quality gates, create tasks for each user story, connect work in an order such as schema then backend then UI, and write the result to .beads/beads.jsonl.
Why use it?
It turns feature requirements into an execution-ready task list with quality checks and dependencies between tasks.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

not rated 2.4krepo +5 5d ago A scan Socket: passSnyk: passSkillSpector: pass 75 tokens original MIT

Good fit Use it to extract quality gates, create tasks for each user story, connect work in an order such as schema then backend then UI, and write the result to .beads/beads.jsonl.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/subsy/ralph-tui/ralph-tui-create-beads
About the project

Ralph TUI is a terminal interface that repeatedly sends tasks from a task tracker to AI coding agents, monitors their work, and moves through the list autonomously. Developers use it to run agents such as Claude Code, Codex, Cursor CLI, or Gemini CLI across ordered tasks, with persistence and progress visibility; catalogue entries add skills and instructions for that workflow.

subsy/ralph-tui · 2,438 stars · on GitHub · ralph-tui.com

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add subsy/ralph-tui --skill ralph-tui-create-beads
Clone the repo
git clone --depth 1 https://github.com/subsy/ralph-tui

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ralph-tui-create-beads

README.md
[![agentmods](https://agentmods.dev/badge/skills/subsy/ralph-tui/ralph-tui-create-beads/github.svg)](https://agentmods.dev/skills/subsy/ralph-tui/ralph-tui-create-beads)
Your own site
<a href="https://agentmods.dev/skills/subsy/ralph-tui/ralph-tui-create-beads"><img src="https://agentmods.dev/badge/skills/subsy/ralph-tui/ralph-tui-create-beads/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ralph-tui-create-beads

Your own site · 80×15
<a href="https://agentmods.dev/skills/subsy/ralph-tui/ralph-tui-create-beads"><img src="https://agentmods.dev/badge/skills/subsy/ralph-tui/ralph-tui-create-beads.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,644 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 18 Mar 2026
  • Snyk pass 17 Feb 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00075 $0.02644
Opus 5 $0.00037 $0.01322
Sonnet 5 $0.00015 $0.00529
Haiku 4.5 $0.00007 $0.00264

Measured 10d ago against content hash 4ba48c976234, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

ralph-tui-create-beads scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/ralph-tui-create-beads/SKILL.md · 338 lines

How it starts

The opening of the file, as written. The whole thing — 338 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Ralph TUI - Create Beads

Converts PRDs to beads (epic + child tasks) for ralph-tui autonomous execution.

Note: This skill is bundled with ralph-tui's Beads tracker plugin. Future tracker plugins (Linear, GitHub Issues, etc.) will bundle their own task creation skills.


The Job

Take a PRD (markdown file or text) and create beads in .beads/beads.jsonl:

  1. Extract Quality Gates from the PRD's "Quality Gates" section
  2. Create an epic bead for the feature
  3. Create child beads for each user story (with quality gates appended)
  4. Set up dependencies between beads (schema → backend → UI)
  5. Output ready for ralph-tui run --tracker beads

Step 1: Extract Quality Gates

Look for the "Quality Gates" section in the PRD:

## Quality Gates

These commands must pass for every user story:
- `pnpm typecheck` - Type checking
- `pnpm lint` - Linting

For UI stories, also include:
- Verify in browser using dev-browser skill

Extract:

  • Universal gates: Commands that apply to ALL stories (e.g., pnpm typecheck)
  • UI gates: Commands that apply only to UI stories (e.g., browser verification)

If no Quality Gates section exists: Ask the user what commands should pass, or use a sensible default like npm run typecheck.


Output Format

Beads use bd create command with HEREDOC syntax to safely handle special characters:

# Create epic (link back to source PRD)
bd create --type=epic \
  --title="[Feature Name]" \
  --description="$(cat <<'EOF'
[Feature description from PRD]
EOF
)" \
  --external-ref="prd:./tasks/feature-name-prd.md"

# Create child bead (with quality gates in acceptance criteria)
bd create \
  --parent=EPIC_ID \
  --title="[Story Title]" \
  --description="$(cat <<'EOF'
[Story description with acceptance criteria INCLUDING quality gates]
EOF
)" \
  --priority=[1-4]

CRITICAL: Always use <<'EOF' (single-quoted) for the HEREDOC delimiter. This prevents shell interpretation of backticks, $variables, and () in descriptions.

Read the full file on GitHub · 338 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 338 lines · 75 tokens per session scan A 4ba48c976234

Subscribe to this mod's changes

ralph-tui-create-beads is a skill published in the GitHub repository subsy/ralph-tui (2,438 stars, last pushed 5d ago), licensed MIT. It adds 75 tokens to every session and 2,644 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories