Swift Anchor 91
01README
Compose Cloudflare zones reports from a single YAML source. Includes diff-vs-previous and breaking-change detection.
Quick start
Add @bayou_crawler/swift-anchor-91 to your repo's extensions list, then reference its model in your swamp.yaml:
extensions:
- @bayou_crawler/swift-anchor-91
workflows:
- name: swift-anchor-91-run
jobs:
- name: main
steps:
- name: create
model: bayou_crawler/swift-anchor-91
method: createRun with swamp workflow run swift-anchor-91-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.
- 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: cloudflare kubernetes dns typescript
02Models
@bayou_crawler/swift-anchor-91/anchorv0.1.0anchor.ts
fn create(limit: number)
Create the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
fn sync(id: string, dryRun: boolean)
Sync the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| dryRun | boolean | Compute changes without applying them |
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 |
@bayou_crawler/swift-anchor-91/weaverv0.1.0weaver.ts
fn get(limit: number, dryRun: boolean)
Get the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
| dryRun | boolean | Compute changes without applying them |
fn create(dryRun: boolean)
Create the resource.
| Argument | Type | Description |
|---|---|---|
| dryRun | boolean | Compute changes without applying them |
@bayou_crawler/swift-anchor-91/harvestv0.1.0harvest.ts
fn list(force: boolean, id?: string, tags?: array)
List the resource.
| Argument | Type | Description |
|---|---|---|
| force | boolean | Skip confirmation and apply immediately |
| id? | string | Resource identifier |
| tags? | array | List of tags to apply |
fn create(filter: record)
Create the resource.
| Argument | Type | Description |
|---|---|---|
| filter | record | Key-value filter expression |
fn diff(id: string)
Diff the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
fn get(limit: number, filter: record)
Get the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
| filter | record | Key-value filter expression |
03Workflows
core forgecore-forge
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.
04Drivers
swift-anchor-91-driverconfigurable
@bayou_crawler/swift-anchor-91/driverdriver.ts
Execution driver with bounded concurrency and retries.
05Previous Versions
1.1.4Oct 20, 2025
Modified 1 models
2.6.0May 27, 2025
06Stats
A
91 / 100
Downloads
22
Archive size
161.0 KB
- Has README or module doc2/2earned
- README has a code example1/1earned
- README is substantive0/1missing
- 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 repository2/2earned
07Platforms
08Labels