Skip to main content

Swift Anchor 91

@bayou_crawler/swift-anchor-91v1.0.6· MIT· 1mo agoMODELS·WORKFLOWS·DRIVERS
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: create

Run 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

02Models3
@bayou_crawler/swift-anchor-91/anchorv0.1.0anchor.ts
fn create(limit: number)
Create the resource.
ArgumentTypeDescription
limitnumberMaximum results to return
fn sync(id: string, dryRun: boolean)
Sync the resource.
ArgumentTypeDescription
idstringResource identifier
dryRunbooleanCompute changes without applying them
fn delete(tags: array, dryRun?: boolean)
Delete the resource.
ArgumentTypeDescription
tagsarrayList of tags to apply
dryRun?booleanCompute changes without applying them
@bayou_crawler/swift-anchor-91/weaverv0.1.0weaver.ts
fn get(limit: number, dryRun: boolean)
Get the resource.
ArgumentTypeDescription
limitnumberMaximum results to return
dryRunbooleanCompute changes without applying them
fn create(dryRun: boolean)
Create the resource.
ArgumentTypeDescription
dryRunbooleanCompute changes without applying them
@bayou_crawler/swift-anchor-91/harvestv0.1.0harvest.ts
fn list(force: boolean, id?: string, tags?: array)
List the resource.
ArgumentTypeDescription
forcebooleanSkip confirmation and apply immediately
id?stringResource identifier
tags?arrayList of tags to apply
fn create(filter: record)
Create the resource.
ArgumentTypeDescription
filterrecordKey-value filter expression
fn diff(id: string)
Diff the resource.
ArgumentTypeDescription
idstringResource identifier
fn get(limit: number, filter: record)
Get the resource.
ArgumentTypeDescription
limitnumberMaximum results to return
filterrecordKey-value filter expression
03Workflows1
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.
04Drivers1
swift-anchor-91-driverconfigurable
@bayou_crawler/swift-anchor-91/driverdriver.ts

Execution driver with bounded concurrency and retries.

05Previous Versions2
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