01README
counters, gauges, and distributions orchestration with retry/backoff, structured logs, and per-step idempotency keys.
Quick start
Add @discord/core-anchor-114 to your repo's extensions list, then reference its model in your swamp.yaml:
extensions:
- @discord/core-anchor-114
workflows:
- name: core-anchor-114-run
jobs:
- name: main
steps:
- name: delete
model: discord/core-anchor-114
method: deleteRun with swamp workflow run core-anchor-114-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.
- 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: metrics cost experimental
02Models
@discord/core-anchor-114/sentinelv0.1.0sentinel.ts
fn delete(id: string, force?: boolean)
Delete the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| force? | boolean | Skip confirmation and apply immediately |
fn get(tags: array)
Get the resource.
| Argument | Type | Description |
|---|---|---|
| tags | array | List of tags to apply |
fn diff(id: string, force?: boolean, limit?: number)
Diff the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| force? | boolean | Skip confirmation and apply immediately |
| limit? | number | Maximum results to return |
fn list(id: string, limit: number)
List the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| limit | number | Maximum results to return |
@discord/core-anchor-114/pulsev0.1.0pulse.ts
fn diff(dryRun: boolean, force?: boolean)
Diff the resource.
| Argument | Type | Description |
|---|---|---|
| dryRun | boolean | Compute changes without applying them |
| force? | boolean | Skip confirmation and apply immediately |
fn create(id: string, filter: record)
Create the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| filter | record | Key-value filter expression |
fn list(id: string, tags?: array, dryRun?: boolean)
List the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| tags? | array | List of tags to apply |
| dryRun? | boolean | Compute changes without applying them |
fn delete(force: boolean, tags?: array, id?: string)
Delete the resource.
| Argument | Type | Description |
|---|---|---|
| force | boolean | Skip confirmation and apply immediately |
| tags? | array | List of tags to apply |
| id? | string | Resource identifier |
03Reports
core-anchor-114-reportextension
report.ts
Roll-up report grouped by label and breaking-change flag.
auditsummary
04Stats
A
91 / 100
Downloads
7
Archive size
145.0 KB
- Has README or module doc2/2earned
- README has a code example1/1earned
- README is substantive1/1earned
- 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 repository2/2earned
05Platforms
06Labels