01README
Read, reconcile, and report on Discord webhooks across multiple environments. Idempotent and dry-runnable.
Quick start
Add @keeb/core-forge-12 to your repo's extensions list, then reference its model in your swamp.yaml:
extensions:
- @keeb/core-forge-12
workflows:
- name: core-forge-12-run
jobs:
- name: main
steps:
- name: diff
model: keeb/core-forge-12
method: diffRun with swamp workflow run core-forge-12-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.
- Drivers — bounded concurrency, structured retries, and CloudWatch / OpenTelemetry-friendly tags.
Configuration
Configure via ~/.swamp/config.yaml or environment variables. The full method reference and rubric format live in the package's manual/ directory.
Labels: discord metrics slack
02Models
@keeb/core-forge-12/wardenv0.1.0warden.ts
fn diff(limit: number, filter?: record, tags: array)
Diff the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
| filter? | record | Key-value filter expression |
| tags | array | List of tags to apply |
fn sync(id: string)
Sync the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
fn get(dryRun: boolean, force: boolean, filter: record)
Get the resource.
| Argument | Type | Description |
|---|---|---|
| dryRun | boolean | Compute changes without applying them |
| force | boolean | Skip confirmation and apply immediately |
| filter | record | Key-value filter expression |
@keeb/core-forge-12/guardv0.1.0guard.ts
fn delete(force: boolean, tags: array, id: string)
Delete the resource.
| Argument | Type | Description |
|---|---|---|
| force | boolean | Skip confirmation and apply immediately |
| tags | array | List of tags to apply |
| id | string | Resource identifier |
fn list(limit: number, dryRun: boolean, filter?: record)
List the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
| dryRun | boolean | Compute changes without applying them |
| filter? | record | Key-value filter expression |
03Workflows
rapid pilotrapid-pilot
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.
04Drivers
core-forge-12-driver
@keeb/core-forge-12/driverdriver.ts
Execution driver with bounded concurrency and retries.
05Previous Versions
1.7.8Jan 5, 2026
06Stats
D
58 / 100
Downloads
30
Archive size
315.0 KB
- Has README or module doc2/2earned
- README has a code example0/1missing
- README is substantive0/1missing
- Most symbols documented1/1earned
- No slow types0/1missing
- 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
07Platforms
08Labels