Skip to main content

Core Ledger 50

@grime_fiend/core-ledger-50v0.4.0· BSD-3-Clause· 16d agoMODELS·WORKFLOWS
01README

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

Quick start

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

extensions:
  - @grime_fiend/core-ledger-50

workflows:
  - name: core-ledger-50-run
    jobs:
      - name: main
        steps:
          - name: sync
            model: grime_fiend/core-ledger-50
            method: sync

Run with swamp workflow run core-ledger-50-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.

Configuration

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

Labels: infra kubernetes vpn python

02Models1
@grime_fiend/core-ledger-50/compassv0.1.0compass.ts
fn sync(limit: number, id: string)
Sync the resource.
ArgumentTypeDescription
limitnumberMaximum results to return
idstringResource identifier
fn diff(limit: number, dryRun?: boolean, id: string)
Diff the resource.
ArgumentTypeDescription
limitnumberMaximum results to return
dryRun?booleanCompute changes without applying them
idstringResource identifier
fn update(limit: number, force?: boolean)
Update the resource.
ArgumentTypeDescription
limitnumberMaximum results to return
force?booleanSkip confirmation and apply immediately
03Workflows2
lite sentinellite-sentinel

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.
auto weaverauto-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.
04Stats
A
91 / 100
Downloads
30
Archive size
99.0 KB
  • Has README or module doc2/2earned
  • README has a code example1/1earned
  • README is substantive0/1missing
  • 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 repository2/2earned
05Platforms
06Labels