Skip to main content

Rapid Reactor 75

@muck_shade/rapid-reactor-75v2.5.8· BSD-3-Clause· 1mo agoMODELS·WORKFLOWS
01README

release notes and changelogs orchestration with retry/backoff, structured logs, and per-step idempotency keys.

Quick start

Add @muck_shade/rapid-reactor-75 to your repo's extensions list, then reference its model in your swamp.yaml:

extensions:
  - @muck_shade/rapid-reactor-75

workflows:
  - name: rapid-reactor-75-run
    jobs:
      - name: main
        steps:
          - name: sync
            model: muck_shade/rapid-reactor-75
            method: sync

Run with swamp workflow run rapid-reactor-75-run. The first invocation prints what it would change; pass --apply to commit.

What's inside

  • Typed models — Zod-validated arguments, structured outputs, and a manifest the agent can reason about.
  • Composable workflows — wire methods into multi-step DAGs with retry, idempotency, and per-step logs.

Configuration

Configure via ~/.swamp/config.yaml or environment variables. The full method reference and rubric format live in the package's manual/ directory.

Labels: release code-review terraform

02Models2
@muck_shade/rapid-reactor-75/latticev0.1.0lattice.ts
fn sync(filter: record, limit: number)
Sync the resource.
ArgumentTypeDescription
filterrecordKey-value filter expression
limitnumberMaximum results to return
fn list(id: string)
List the resource.
ArgumentTypeDescription
idstringResource identifier
fn diff(dryRun: boolean, filter?: record)
Diff the resource.
ArgumentTypeDescription
dryRunbooleanCompute changes without applying them
filter?recordKey-value filter expression
@muck_shade/rapid-reactor-75/forgev0.1.0forge.ts
fn diff(id: string, filter?: record)
Diff the resource.
ArgumentTypeDescription
idstringResource identifier
filter?recordKey-value filter expression
fn get(dryRun: boolean)
Get the resource.
ArgumentTypeDescription
dryRunbooleanCompute changes without applying them
fn list(force: boolean)
List the resource.
ArgumentTypeDescription
forcebooleanSkip confirmation and apply immediately
fn update(id: string, filter: record, limit?: number)
Update the resource.
ArgumentTypeDescription
idstringResource identifier
filterrecordKey-value filter expression
limit?numberMaximum results to return
03Workflows1
swift scoutswift-scout

Composed workflow with retry and idempotency.

mainPrimary execution path.
1.preparecore/state.load— Validate inputs and pull current state.
2.applycore/state.apply— Apply the desired state.
04Stats
A
100 / 100
Downloads
30
Archive size
97.0 KB
  • Has README or module doc2/2earned
  • README has a code example1/1earned
  • README is substantive1/1earned
  • Most symbols documented1/1earned
  • No slow types1/1earned
  • Has description1/1earned
  • At least one platform tag (or universal)1/1earned
  • Two or more platform tags (or universal)1/1earned
  • License declared1/1earned
  • Verified public repository2/2earned
05Platforms
06Labels