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: syncRun 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
02Models
@sentry/smart-ledger-55/wardenv0.1.0warden.ts
fn sync(dryRun: boolean, tags: array)
Sync the resource.
| Argument | Type | Description |
|---|---|---|
| dryRun | boolean | Compute changes without applying them |
| tags | array | List of tags to apply |
fn list(limit: number)
List the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
@sentry/smart-ledger-55/weaverv0.1.0weaver.ts
fn diff(limit: number)
Diff the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
fn create(tags: array, force?: boolean, limit?: number)
Create the resource.
| Argument | Type | Description |
|---|---|---|
| tags | array | List of tags to apply |
| force? | boolean | Skip confirmation and apply immediately |
| limit? | number | Maximum results to return |
fn delete(force: boolean)
Delete the resource.
| Argument | Type | Description |
|---|---|---|
| force | boolean | Skip confirmation and apply immediately |
fn list(id: string)
List the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
03Workflows
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.
04Reports
smart-ledger-55-reportextension
report.ts
Roll-up report grouped by label and breaking-change flag.
auditsummary
05Previous Versions
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