Smart Reactor 79
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: listRun 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
02Models
@sludge_ghoul/smart-reactor-79/sentinelv0.1.0sentinel.ts
fn list(force: boolean, id?: string, limit?: number)
List the resource.
| Argument | Type | Description |
|---|---|---|
| force | boolean | Skip confirmation and apply immediately |
| id? | string | Resource identifier |
| limit? | number | Maximum results to return |
fn update(tags: array)
Update the resource.
| Argument | Type | Description |
|---|---|---|
| tags | array | List of tags to apply |
@sludge_ghoul/smart-reactor-79/pulsev0.1.0pulse.ts
fn list(filter: record, id: string)
List the resource.
| Argument | Type | Description |
|---|---|---|
| filter | record | Key-value filter expression |
| id | string | Resource identifier |
fn sync(filter: record, tags: array, force?: boolean)
Sync the resource.
| Argument | Type | Description |
|---|---|---|
| filter | record | Key-value filter expression |
| tags | array | List of tags to apply |
| force? | boolean | Skip confirmation and apply immediately |
fn create(id: string, tags?: array, force: boolean)
Create the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| tags? | array | List of tags to apply |
| force | boolean | Skip confirmation and apply immediately |
fn get(id: string, limit?: number, dryRun?: boolean)
Get the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| limit? | number | Maximum results to return |
| dryRun? | boolean | Compute changes without applying them |
@sludge_ghoul/smart-reactor-79/weaverv0.1.0weaver.ts
fn delete(dryRun: boolean, limit?: number, id: string)
Delete the resource.
| Argument | Type | Description |
|---|---|---|
| dryRun | boolean | Compute changes without applying them |
| limit? | number | Maximum results to return |
| id | string | Resource identifier |
fn create(force: boolean, id: string)
Create the resource.
| Argument | Type | Description |
|---|---|---|
| force | boolean | Skip confirmation and apply immediately |
| id | string | Resource identifier |
03Workflows
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.
04Datastores
smart-reactor-79-storeconfigurable
@sludge_ghoul/smart-reactor-79/datastoredatastore.ts
Document datastore with TTL indexes and change streams.
Config Fields
| Field | Type | Description |
|---|---|---|
| uri | string | Connection 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