Skip to main content

Smart Reactor 79

@sludge_ghoul/smart-reactor-79v1.7.2· 25d agoMODELS·WORKFLOWS·DATASTORES
01README

metrics, logs, and traces orchestration with retry/backoff, structured logs, and per-step idempotency keys.

Quick start

Add @sludge_ghoul/smart-reactor-79 to your repo's extensions list, then reference its model in your swamp.yaml:

extensions:
  - @sludge_ghoul/smart-reactor-79

workflows:
  - name: smart-reactor-79-run
    jobs:
      - name: main
        steps:
          - name: list
            model: sludge_ghoul/smart-reactor-79
            method: list

Run with swamp workflow run smart-reactor-79-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.
  • Datastore provider — collection-level Zod schemas, change-stream subscriptions, TTL indexes.

Configuration

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

Labels: observability notifications

02Models3
@sludge_ghoul/smart-reactor-79/sentinelv0.1.0sentinel.ts
fn list(force: boolean, id?: string, limit?: number)
List the resource.
ArgumentTypeDescription
forcebooleanSkip confirmation and apply immediately
id?stringResource identifier
limit?numberMaximum results to return
fn update(tags: array)
Update the resource.
ArgumentTypeDescription
tagsarrayList of tags to apply
@sludge_ghoul/smart-reactor-79/pulsev0.1.0pulse.ts
fn list(filter: record, id: string)
List the resource.
ArgumentTypeDescription
filterrecordKey-value filter expression
idstringResource identifier
fn sync(filter: record, tags: array, force?: boolean)
Sync the resource.
ArgumentTypeDescription
filterrecordKey-value filter expression
tagsarrayList of tags to apply
force?booleanSkip confirmation and apply immediately
fn create(id: string, tags?: array, force: boolean)
Create the resource.
ArgumentTypeDescription
idstringResource identifier
tags?arrayList of tags to apply
forcebooleanSkip confirmation and apply immediately
fn get(id: string, limit?: number, dryRun?: boolean)
Get the resource.
ArgumentTypeDescription
idstringResource identifier
limit?numberMaximum results to return
dryRun?booleanCompute changes without applying them
@sludge_ghoul/smart-reactor-79/weaverv0.1.0weaver.ts
fn delete(dryRun: boolean, limit?: number, id: string)
Delete the resource.
ArgumentTypeDescription
dryRunbooleanCompute changes without applying them
limit?numberMaximum results to return
idstringResource identifier
fn create(force: boolean, id: string)
Create the resource.
ArgumentTypeDescription
forcebooleanSkip confirmation and apply immediately
idstringResource identifier
03Workflows2
live nexuslive-nexus

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.
core weavercore-weaver

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.
04Datastores1
smart-reactor-79-storeconfigurable
@sludge_ghoul/smart-reactor-79/datastoredatastore.ts

Document datastore with TTL indexes and change streams.

Config Fields

FieldTypeDescription
uristringConnection URI
05Stats
B
83 / 100
Downloads
30
Archive size
365.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 repository0/2missing
06Platforms
07Labels