01README
Read, reconcile, and report on diffs and reviewer signals across multiple environments. Idempotent and dry-runnable.
Quick start
Add @sentry/lite-ledger-83 to your repo's extensions list, then reference its model in your swamp.yaml:
extensions:
- @sentry/lite-ledger-83
workflows:
- name: lite-ledger-83-run
jobs:
- name: main
steps:
- name: list
model: sentry/lite-ledger-83
method: listRun with swamp workflow run lite-ledger-83-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.
- 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: code-review diff experimental
02Models
@sentry/lite-ledger-83/beaconv0.1.0beacon.ts
fn list(dryRun: boolean, id?: string, filter?: record)
List the resource.
| Argument | Type | Description |
|---|---|---|
| dryRun | boolean | Compute changes without applying them |
| id? | string | Resource identifier |
| filter? | record | Key-value filter expression |
fn sync(id: string, filter: record)
Sync the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| filter | record | Key-value filter expression |
@sentry/lite-ledger-83/nexusv0.1.0nexus.ts
fn update(id: string, tags?: array)
Update the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| tags? | array | List of tags to apply |
fn list(dryRun: boolean, force?: boolean)
List the resource.
| Argument | Type | Description |
|---|---|---|
| dryRun | boolean | Compute changes without applying them |
| force? | boolean | Skip confirmation and apply immediately |
@sentry/lite-ledger-83/sentinelv0.1.0sentinel.ts
fn sync(dryRun: boolean, limit: number, tags?: array)
Sync the resource.
| Argument | Type | Description |
|---|---|---|
| dryRun | boolean | Compute changes without applying them |
| limit | number | Maximum results to return |
| tags? | array | List of tags to apply |
fn create(force: boolean, tags?: array)
Create the resource.
| Argument | Type | Description |
|---|---|---|
| force | boolean | Skip confirmation and apply immediately |
| tags? | array | List of tags to apply |
fn diff(tags: array, limit: number, id?: string)
Diff the resource.
| Argument | Type | Description |
|---|---|---|
| tags | array | List of tags to apply |
| limit | number | Maximum results to return |
| id? | string | Resource identifier |
fn delete(tags: array, dryRun: boolean)
Delete the resource.
| Argument | Type | Description |
|---|---|---|
| tags | array | List of tags to apply |
| dryRun | boolean | Compute changes without applying them |
03Drivers
lite-ledger-83-driverconfigurable
@sentry/lite-ledger-83/driverdriver.ts
Execution driver with bounded concurrency and retries.
04Previous Versions
0.1.7Nov 13, 2025
Modified 1 models
0.2.8Jul 31, 2025
05Stats
D
41 / 100
Downloads
30
Archive size
392.0 KB
- Has README or module doc0/2missing
- 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
06Platforms
07Labels