Skip to main content

Smart Ledger 55

@sentry/smart-ledger-55v2.0.0· 1mo agoMODELS·WORKFLOWS·REPORTS
01README

Sync state of metrics, logs, and traces against a desired-state YAML. Diffs are previewed before any mutation.

Quick start

Add @sentry/smart-ledger-55 to your repo's extensions list, then reference its model in your swamp.yaml:

extensions:
  - @sentry/smart-ledger-55

workflows:
  - name: smart-ledger-55-run
    jobs:
      - name: main
        steps:
          - name: sync
            model: sentry/smart-ledger-55
            method: sync

Run with swamp workflow run smart-ledger-55-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 metrics slack

02Models2
@sentry/smart-ledger-55/wardenv0.1.0warden.ts
fn sync(dryRun: boolean, tags: array)
Sync the resource.
ArgumentTypeDescription
dryRunbooleanCompute changes without applying them
tagsarrayList of tags to apply
fn list(limit: number)
List the resource.
ArgumentTypeDescription
limitnumberMaximum results to return
@sentry/smart-ledger-55/weaverv0.1.0weaver.ts
fn diff(limit: number)
Diff the resource.
ArgumentTypeDescription
limitnumberMaximum results to return
fn create(tags: array, force?: boolean, limit?: number)
Create the resource.
ArgumentTypeDescription
tagsarrayList of tags to apply
force?booleanSkip confirmation and apply immediately
limit?numberMaximum results to return
fn delete(force: boolean)
Delete the resource.
ArgumentTypeDescription
forcebooleanSkip confirmation and apply immediately
fn list(id: string)
List the resource.
ArgumentTypeDescription
idstringResource identifier
03Workflows1
swift weaverswift-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.
04Reports1
smart-ledger-55-reportextension
report.ts

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

auditsummary
05Previous Versions2
1.1.3Jan 26, 2026

Modified 1 models

2.6.4Nov 7, 2025
06Stats
C
66 / 100
Downloads
11
Archive size
45.0 KB
  • Has README or module doc2/2earned
  • README has a code example1/1earned
  • 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