Skip to main content

Swift Warden 118

@murk_skull/swift-warden-118v2.0.8· BSD-3-Clause· 22d agoMODELS·WORKFLOWS·DRIVERS·SKILLS
01README

Compose developer tooling reports from a single YAML source. Includes diff-vs-previous and breaking-change detection.

Quick start

Add @murk_skull/swift-warden-118 to your repo's extensions list, then reference its model in your swamp.yaml:

extensions:
  - @murk_skull/swift-warden-118

workflows:
  - name: swift-warden-118-run
    jobs:
      - name: main
        steps:
          - name: diff
            model: murk_skull/swift-warden-118
            method: diff

Run with swamp workflow run swift-warden-118-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.
  • Skills — Claude Code skills with tool whitelists and trigger-phrase manifests.

Configuration

Configure via ~/.swamp/config.yaml or environment variables. The full method reference and rubric format live in the package's manual/ directory.

Labels: tooling llm

02Models3
@murk_skull/swift-warden-118/anchorv0.1.0anchor.ts
fn diff(filter: record, tags?: array, dryRun?: boolean)
Diff the resource.
ArgumentTypeDescription
filterrecordKey-value filter expression
tags?arrayList of tags to apply
dryRun?booleanCompute changes without applying them
fn delete(force: boolean, filter: record)
Delete the resource.
ArgumentTypeDescription
forcebooleanSkip confirmation and apply immediately
filterrecordKey-value filter expression
fn create(tags: array, filter?: record, id?: string)
Create the resource.
ArgumentTypeDescription
tagsarrayList of tags to apply
filter?recordKey-value filter expression
id?stringResource identifier
fn list(dryRun: boolean, force?: boolean, filter?: record)
List the resource.
ArgumentTypeDescription
dryRunbooleanCompute changes without applying them
force?booleanSkip confirmation and apply immediately
filter?recordKey-value filter expression
@murk_skull/swift-warden-118/guardv0.1.0guard.ts
fn list(dryRun: boolean, limit?: number, force?: boolean)
List the resource.
ArgumentTypeDescription
dryRunbooleanCompute changes without applying them
limit?numberMaximum results to return
force?booleanSkip confirmation and apply immediately
fn update(id: string, limit?: number)
Update the resource.
ArgumentTypeDescription
idstringResource identifier
limit?numberMaximum results to return
fn get(tags: array, force?: boolean)
Get the resource.
ArgumentTypeDescription
tagsarrayList of tags to apply
force?booleanSkip confirmation and apply immediately
fn delete(limit: number, tags?: array, dryRun: boolean)
Delete the resource.
ArgumentTypeDescription
limitnumberMaximum results to return
tags?arrayList of tags to apply
dryRunbooleanCompute changes without applying them
@murk_skull/swift-warden-118/compassv0.1.0compass.ts
fn create(id: string, dryRun?: boolean, limit?: number)
Create the resource.
ArgumentTypeDescription
idstringResource identifier
dryRun?booleanCompute changes without applying them
limit?numberMaximum results to return
fn get(tags: array, id?: string)
Get the resource.
ArgumentTypeDescription
tagsarrayList of tags to apply
id?stringResource identifier
fn list(dryRun: boolean, tags: array)
List the resource.
ArgumentTypeDescription
dryRunbooleanCompute changes without applying them
tagsarrayList of tags to apply
03Workflows1
lite ledgerlite-ledger

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-warden-118-driverconfigurable
@murk_skull/swift-warden-118/driverdriver.ts

Execution driver with bounded concurrency and retries.

05Skills1
swift-warden-1182 files

Claude Code skill bundling tool whitelists and triggers.

06Previous Versions3
2.1.2Dec 23, 2025

Modified 1 models

0.2.6Sep 2, 2025

Modified 1 models

1.8.1Aug 3, 2025
07Stats
B
75 / 100
Downloads
30
Archive size
255.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 repository0/2missing
08Security Notice

This extension includes AI agent skills that can modify AI assistant behavior. Review the skill files before installing.

09Platforms
10Labels