Core Ledger 09
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: updateRun 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
02Models
@grime_fiend/core-ledger-09/reactorv0.1.0reactor.ts
fn update(filter: record)
Update the resource.
| Argument | Type | Description |
|---|---|---|
| filter | record | Key-value filter expression |
fn sync(limit: number, filter: record, id?: string)
Sync the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
| filter | record | Key-value filter expression |
| id? | string | Resource identifier |
fn delete(id: string, limit: number, dryRun?: boolean)
Delete the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| limit | number | Maximum results to return |
| dryRun? | boolean | Compute changes without applying them |
@grime_fiend/core-ledger-09/weaverv0.1.0weaver.ts
fn list(force: boolean, tags?: array, filter: record)
List the resource.
| Argument | Type | Description |
|---|---|---|
| force | boolean | Skip confirmation and apply immediately |
| tags? | array | List of tags to apply |
| filter | record | Key-value filter expression |
fn sync(id: string, tags: array, dryRun?: boolean)
Sync the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| tags | array | List of tags to apply |
| dryRun? | boolean | Compute changes without applying them |
@grime_fiend/core-ledger-09/nexusv0.1.0nexus.ts
fn list(tags: array, dryRun: boolean)
List the resource.
| Argument | Type | Description |
|---|---|---|
| tags | array | List of tags to apply |
| dryRun | boolean | Compute changes without applying them |
fn diff(filter: record, id: string)
Diff the resource.
| Argument | Type | Description |
|---|---|---|
| filter | record | Key-value filter expression |
| id | string | Resource identifier |
fn create(id: string)
Create the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
fn sync(dryRun: boolean, id?: string)
Sync the resource.
| Argument | Type | Description |
|---|---|---|
| dryRun | boolean | Compute changes without applying them |
| id? | string | Resource identifier |
03Workflows
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.
04Reports
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