Skip to main content

Core Forge 12

@keeb/core-forge-12v2.0.4· 1mo agoMODELS·WORKFLOWS·DRIVERS
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: diff

Run 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

02Models2
@keeb/core-forge-12/wardenv0.1.0warden.ts
fn diff(limit: number, filter?: record, tags: array)
Diff the resource.
ArgumentTypeDescription
limitnumberMaximum results to return
filter?recordKey-value filter expression
tagsarrayList of tags to apply
fn sync(id: string)
Sync the resource.
ArgumentTypeDescription
idstringResource identifier
fn get(dryRun: boolean, force: boolean, filter: record)
Get the resource.
ArgumentTypeDescription
dryRunbooleanCompute changes without applying them
forcebooleanSkip confirmation and apply immediately
filterrecordKey-value filter expression
@keeb/core-forge-12/guardv0.1.0guard.ts
fn delete(force: boolean, tags: array, id: string)
Delete the resource.
ArgumentTypeDescription
forcebooleanSkip confirmation and apply immediately
tagsarrayList of tags to apply
idstringResource identifier
fn list(limit: number, dryRun: boolean, filter?: record)
List the resource.
ArgumentTypeDescription
limitnumberMaximum results to return
dryRunbooleanCompute changes without applying them
filter?recordKey-value filter expression
03Workflows1
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.
04Drivers1
core-forge-12-driver
@keeb/core-forge-12/driverdriver.ts

Execution driver with bounded concurrency and retries.

05Previous Versions1
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