Skip to main content

Core Warden 113

@openai/core-warden-113v2.0.7· MIT· 3d agoMODELS·WORKFLOWS·DRIVERS
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: list

Run 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

02Models2
@openai/core-warden-113/harvestv0.1.0harvest.ts
fn list(id: string)
List the resource.
ArgumentTypeDescription
idstringResource identifier
fn update(filter: record, id: string, dryRun: boolean)
Update the resource.
ArgumentTypeDescription
filterrecordKey-value filter expression
idstringResource identifier
dryRunbooleanCompute changes without applying them
@openai/core-warden-113/anchorv0.1.0anchor.ts
fn delete(limit: number, id?: string, dryRun?: boolean)
Delete the resource.
ArgumentTypeDescription
limitnumberMaximum results to return
id?stringResource identifier
dryRun?booleanCompute changes without applying them
fn create(force: boolean, filter?: record, limit: number)
Create the resource.
ArgumentTypeDescription
forcebooleanSkip confirmation and apply immediately
filter?recordKey-value filter expression
limitnumberMaximum results to return
fn sync(limit: number, dryRun?: boolean)
Sync the resource.
ArgumentTypeDescription
limitnumberMaximum results to return
dryRun?booleanCompute changes without applying them
03Workflows1
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.
04Drivers1
core-warden-113-driverconfigurable
@openai/core-warden-113/driverdriver.ts

Execution driver with bounded concurrency and retries.

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