skills/workflows
dan 9624873dc2 update: code-review proto with LLM-in-the-loop pattern
- Emphasize agent judgment at filing step (not mechanical parsing)
- Add exploration step for directory targets
- Document synthesis across lenses
- Clarify prioritization and grouping guidance

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-26 01:51:10 -05:00
..
molecules.jsonl update: code-review proto with LLM-in-the-loop pattern 2025-12-26 01:51:10 -05:00
README.md refactor: restructure for cross-repo deployment 2025-12-26 01:18:19 -05:00

Workflows

Beads molecule templates (protos) for structured agent workflows.

Concept

  • Proto: A template workflow that can be instantiated
  • Molecule: A persistent instance of a proto
  • Wisp: An ephemeral instance (local-only, not synced)

Available Protos

ID Name Variables
skills-fvc Code Review: {{target}} target

Usage

Spawn as wisp (ephemeral):

bd wisp create skills-fvc --var target=src/main.py

Pour as molecule (persistent):

bd pour skills-fvc --var target=src/main.py

After completion:

bd mol squash <molecule-id>  # Compress to digest
bd mol burn <molecule-id>    # Delete without trace

Deployment

These protos are deployed to ~/.beads/molecules.jsonl via home-manager, making them available in any repository.

Creating New Protos

  1. Create an epic with child tasks using bd create
  2. Use {{variable}} placeholders in titles/descriptions
  3. Add the template label: bd label add <epic-id> template
  4. Export to workflows/molecules.jsonl