Skip to main content

Core Ledger 09

@grime_fiend/core-ledger-09v2.9.0· MIT· 28d agoMODELS·WORKFLOWS·REPORTS
01README

Read, reconcile, and report on metrics, logs, and traces across multiple environments. Idempotent and dry-runnable.

Quick start

Add @grime_fiend/core-ledger-09 to your repo's extensions list, then reference its model in your swamp.yaml:

extensions:
  - @grime_fiend/core-ledger-09

workflows:
  - name: core-ledger-09-run
    jobs:
      - name: main
        steps:
          - name: update
            model: grime_fiend/core-ledger-09
            method: update

Run with swamp workflow run core-ledger-09-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.
  • Reports — markdown roll-ups grouped by label and breaking-change flag.

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 security terraform

02Models3
@grime_fiend/core-ledger-09/reactorv0.1.0reactor.ts
fn update(filter: record)
Update the resource.
ArgumentTypeDescription
filterrecordKey-value filter expression
fn sync(limit: number, filter: record, id?: string)
Sync the resource.
ArgumentTypeDescription
limitnumberMaximum results to return
filterrecordKey-value filter expression
id?stringResource identifier
fn delete(id: string, limit: number, dryRun?: boolean)
Delete the resource.
ArgumentTypeDescription
idstringResource identifier
limitnumberMaximum results to return
dryRun?booleanCompute changes without applying them
@grime_fiend/core-ledger-09/weaverv0.1.0weaver.ts
fn list(force: boolean, tags?: array, filter: record)
List the resource.
ArgumentTypeDescription
forcebooleanSkip confirmation and apply immediately
tags?arrayList of tags to apply
filterrecordKey-value filter expression
fn sync(id: string, tags: array, dryRun?: boolean)
Sync the resource.
ArgumentTypeDescription
idstringResource identifier
tagsarrayList of tags to apply
dryRun?booleanCompute changes without applying them
@grime_fiend/core-ledger-09/nexusv0.1.0nexus.ts
fn list(tags: array, dryRun: boolean)
List the resource.
ArgumentTypeDescription
tagsarrayList of tags to apply
dryRunbooleanCompute changes without applying them
fn diff(filter: record, id: string)
Diff the resource.
ArgumentTypeDescription
filterrecordKey-value filter expression
idstringResource identifier
fn create(id: string)
Create the resource.
ArgumentTypeDescription
idstringResource identifier
fn sync(dryRun: boolean, id?: string)
Sync the resource.
ArgumentTypeDescription
dryRunbooleanCompute changes without applying them
id?stringResource identifier
03Workflows2
lite guardlite-guard

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.
open compassopen-compass

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.
04Reports1
core-ledger-09-reportextension
report.ts

Roll-up report grouped by label and breaking-change flag.

auditsummary
05Stats
B
83 / 100
Downloads
12
Archive size
173.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