Rapid Reactor 75
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: syncRun 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
02Models
@muck_shade/rapid-reactor-75/latticev0.1.0lattice.ts
fn sync(filter: record, limit: number)
Sync the resource.
| Argument | Type | Description |
|---|---|---|
| filter | record | Key-value filter expression |
| limit | number | Maximum results to return |
fn list(id: string)
List the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
fn diff(dryRun: boolean, filter?: record)
Diff the resource.
| Argument | Type | Description |
|---|---|---|
| dryRun | boolean | Compute changes without applying them |
| filter? | record | Key-value filter expression |
@muck_shade/rapid-reactor-75/forgev0.1.0forge.ts
fn diff(id: string, filter?: record)
Diff the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| filter? | record | Key-value filter expression |
fn get(dryRun: boolean)
Get the resource.
| Argument | Type | Description |
|---|---|---|
| dryRun | boolean | Compute changes without applying them |
fn list(force: boolean)
List the resource.
| Argument | Type | Description |
|---|---|---|
| force | boolean | Skip confirmation and apply immediately |
fn update(id: string, filter: record, limit?: number)
Update the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| filter | record | Key-value filter expression |
| limit? | number | Maximum results to return |
03Workflows
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