Rapid Tracer 119
01README
Sync state of diffs and reviewer signals against a desired-state YAML. Diffs are previewed before any mutation.
Quick start
Add @tailscale/rapid-tracer-119 to your repo's extensions list, then reference its model in your swamp.yaml:
extensions:
- @tailscale/rapid-tracer-119
workflows:
- name: rapid-tracer-119-run
jobs:
- name: main
steps:
- name: diff
model: tailscale/rapid-tracer-119
method: diffRun with swamp workflow run rapid-tracer-119-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.
- Datastore provider — collection-level Zod schemas, change-stream subscriptions, TTL indexes.
Configuration
Configure via ~/.swamp/config.yaml or environment variables. The full method reference and rubric format live in the package's manual/ directory.
Labels: code-review release diff
02Models
@tailscale/rapid-tracer-119/anchorv0.1.0anchor.ts
fn diff(id: string, limit: number, tags?: array)
Diff the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| limit | number | Maximum results to return |
| tags? | array | List of tags to apply |
fn list(dryRun: boolean, force?: boolean)
List the resource.
| Argument | Type | Description |
|---|---|---|
| dryRun | boolean | Compute changes without applying them |
| force? | boolean | Skip confirmation and apply immediately |
fn get(limit: number, filter: record, force: boolean)
Get the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
| filter | record | Key-value filter expression |
| force | boolean | Skip confirmation and apply immediately |
fn delete(limit: number, filter?: record, force: boolean)
Delete the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
| filter? | record | Key-value filter expression |
| force | boolean | Skip confirmation and apply immediately |
@tailscale/rapid-tracer-119/harvestv0.1.0harvest.ts
fn sync(limit: number, tags: array)
Sync the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
| tags | array | List of tags to apply |
fn get(tags: array, id: string, dryRun?: boolean)
Get the resource.
| Argument | Type | Description |
|---|---|---|
| tags | array | List of tags to apply |
| id | string | Resource identifier |
| dryRun? | boolean | Compute changes without applying them |
fn list(force: boolean)
List the resource.
| Argument | Type | Description |
|---|---|---|
| force | boolean | Skip confirmation and apply immediately |
fn diff(limit: number, tags?: array, dryRun: boolean)
Diff the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
| tags? | array | List of tags to apply |
| dryRun | boolean | Compute changes without applying them |
@tailscale/rapid-tracer-119/compassv0.1.0compass.ts
fn get(id: string)
Get the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
fn delete(id: string)
Delete the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
fn sync(tags: array, filter: record)
Sync the resource.
| Argument | Type | Description |
|---|---|---|
| tags | array | List of tags to apply |
| filter | record | Key-value filter expression |
03Datastores
rapid-tracer-119-storeconfigurable
@tailscale/rapid-tracer-119/datastoredatastore.ts
Document datastore with TTL indexes and change streams.
Config Fields
| Field | Type | Description |
|---|---|---|
| uri | string | Connection URI |
04Stats
A
91 / 100
Downloads
30
Archive size
157.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 declared0/1missing
- Verified public repository2/2earned
05Platforms
06Labels