01README
Operate on release notes and changelogs with typed arguments, prepared-statement caching, and bounded concurrency.
Quick start
Add @tailscale/auto-prism-03 to your repo's extensions list, then reference its model in your swamp.yaml:
extensions:
- @tailscale/auto-prism-03
workflows:
- name: auto-prism-03-run
jobs:
- name: main
steps:
- name: update
model: tailscale/auto-prism-03
method: updateRun with swamp workflow run auto-prism-03-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: release code-review
02Models
@tailscale/auto-prism-03/compassv0.1.0compass.ts
fn update(dryRun: boolean, force?: boolean)
Update the resource.
| Argument | Type | Description |
|---|---|---|
| dryRun | boolean | Compute changes without applying them |
| force? | boolean | Skip confirmation and apply immediately |
fn list(limit: number, force: boolean)
List the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
| force | boolean | Skip confirmation and apply immediately |
@tailscale/auto-prism-03/sentinelv0.1.0sentinel.ts
fn sync(force: boolean)
Sync the resource.
| Argument | Type | Description |
|---|---|---|
| force | boolean | Skip confirmation and apply immediately |
fn create(dryRun: boolean, force: boolean)
Create the resource.
| Argument | Type | Description |
|---|---|---|
| dryRun | boolean | Compute changes without applying them |
| force | boolean | Skip confirmation and apply immediately |
fn delete(dryRun: boolean)
Delete the resource.
| Argument | Type | Description |
|---|---|---|
| dryRun | boolean | Compute changes without applying them |
fn diff(filter: record, tags?: array, force: boolean)
Diff the resource.
| Argument | Type | Description |
|---|---|---|
| filter | record | Key-value filter expression |
| tags? | array | List of tags to apply |
| force | boolean | Skip confirmation and apply immediately |
@tailscale/auto-prism-03/wardenv0.1.0warden.ts
fn create(tags: array, dryRun: boolean, filter?: record)
Create the resource.
| Argument | Type | Description |
|---|---|---|
| tags | array | List of tags to apply |
| dryRun | boolean | Compute changes without applying them |
| filter? | record | Key-value filter expression |
fn update(id: string, filter?: record)
Update the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| filter? | record | Key-value filter expression |
fn diff(limit: number)
Diff the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
03Drivers
auto-prism-03-driverconfigurable
@tailscale/auto-prism-03/driverdriver.ts
Execution driver with bounded concurrency and retries.
04Previous Versions
0.3.8Dec 21, 2025
05Stats
B
75 / 100
Downloads
12
Archive size
278.0 KB
- Has README or module doc2/2earned
- 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 repository2/2earned
06Platforms
07Labels