01README
Read, reconcile, and report on GitHub issues and pull requests across multiple environments. Idempotent and dry-runnable.
Quick start
Add @openai/core-warden-113 to your repo's extensions list, then reference its model in your swamp.yaml:
extensions:
- @openai/core-warden-113
workflows:
- name: core-warden-113-run
jobs:
- name: main
steps:
- name: list
model: openai/core-warden-113
method: listRun with swamp workflow run core-warden-113-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: github code-review diff
02Models
@openai/core-warden-113/harvestv0.1.0harvest.ts
fn list(id: string)
List the resource.
| Argument | Type | Description |
|---|---|---|
| id | string | Resource identifier |
fn update(filter: record, id: string, dryRun: boolean)
Update the resource.
| Argument | Type | Description |
|---|---|---|
| filter | record | Key-value filter expression |
| id | string | Resource identifier |
| dryRun | boolean | Compute changes without applying them |
@openai/core-warden-113/anchorv0.1.0anchor.ts
fn delete(limit: number, id?: string, dryRun?: boolean)
Delete the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
| id? | string | Resource identifier |
| dryRun? | boolean | Compute changes without applying them |
fn create(force: boolean, filter?: record, limit: number)
Create the resource.
| Argument | Type | Description |
|---|---|---|
| force | boolean | Skip confirmation and apply immediately |
| filter? | record | Key-value filter expression |
| limit | number | Maximum results to return |
fn sync(limit: number, dryRun?: boolean)
Sync the resource.
| Argument | Type | Description |
|---|---|---|
| limit | number | Maximum results to return |
| dryRun? | boolean | Compute changes without applying them |
03Workflows
smart sentinelsmart-sentinel
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
core-warden-113-driverconfigurable
@openai/core-warden-113/driverdriver.ts
Execution driver with bounded concurrency and retries.
05Previous Versions
0.1.7Mar 18, 2026
Modified 1 models
0.2.5Oct 11, 2025
Modified 1 models
2.2.7Jul 10, 2025
06Stats
D
41 / 100
Downloads
30
Archive size
371.0 KB
- Has README or module doc0/2missing
- 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 repository0/2missing
07Platforms
08Labels