Skip to content

Releases: systeminit/swamp

swamp 20260313.235152.0-sha.bb94615c

13 Mar 23:52
Immutable release. Only release title and notes can be modified.
bb94615

Choose a tag to compare

What's Changed

  • fix: add 'install' as alias for 'extension pull' (#704)

Summary

  • Add .alias("install") to the extension pull command so swamp extension install works as expected
  • AI agents naturally try swamp extension install which previously failed with a confusing error

Closes #702

Test plan

  • deno check passes
  • deno lint passes
  • swamp extension --help shows pull, install in the command list
  • swamp extension install <ext> routes to the pull handler

🤖 Generated with Claude Code


Installation

macOS (Apple Silicon):

curl -L https://github.com/systeminit/swamp/releases/download/v20260313.235152.0-sha.bb94615c/swamp-darwin-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

macOS (Intel):

curl -L https://github.com/systeminit/swamp/releases/download/v20260313.235152.0-sha.bb94615c/swamp-darwin-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (x86_64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260313.235152.0-sha.bb94615c/swamp-linux-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (aarch64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260313.235152.0-sha.bb94615c/swamp-linux-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

swamp 20260313.230033.0-sha.9ad8cbad

13 Mar 23:01
Immutable release. Only release title and notes can be modified.
9ad8cba

Choose a tag to compare

What's Changed

  • feat: pluggable execution drivers with Docker support (#703)

Fixes: #701

Summary

  • Pluggable execution driver abstraction — a new ExecutionDriver interface that decouples where a model method runs from what it does. Two built-in drivers: raw (in-process, the default) and docker (containerized).
  • Docker bundle mode — extension models (TypeScript) can now run inside Docker containers with no code changes. Swamp auto-generates a self-contained JavaScript bundle (zod inlined) and executes it via an embedded runner script inside the container.
  • Comprehensive documentation — design doc (design/execution-drivers.md), skill reference files for swamp-model, swamp-workflow, and swamp-extension-model, all registered in BUNDLED_SKILLS for repo init/repo upgrade.

User Impact

New CLI flags

swamp model method run my-model execute --driver docker
swamp workflow run my-workflow --driver docker

Definition-level driver config

Models and workflows can declare their driver in YAML:

driver: docker
driverConfig:
  image: "alpine:latest"
  bundleImage: "denoland/deno:alpine"
  timeout: 30000
  memory: "512m"

Multi-level configuration

Driver config can be set at workflow, job, or step level. Resolution priority (first match wins): CLI flag > step > job > workflow > definition > raw default.

Podman / nerdctl support

Set command: "podman" (or nerdctl) in driverConfig to use alternative container runtimes.

Extension model Docker execution

TypeScript extension models work in Docker with zero changes — context.writeResource(), context.createFileWriter(), and context.logger all behave identically. The only limitation: getFilePath() throws in Docker mode.

No breaking changes

Existing models, workflows, and extensions continue to work unchanged. The default driver remains raw (in-process).

Commits

  1. 6d24aed4feat: add pluggable execution driver abstraction
    Core ExecutionDriver interface, ExecutionRequest/DriverOutput/ExecutionResult types, raw and docker drivers, driver type registry, multi-level config resolution, CLI --driver flag, and integration with the method execution service.

  2. 13bc6443feat: add Docker bundle mode for TypeScript extension models
    Self-contained bundling (bundleExtension({ selfContained: true })), embedded Docker runner script, bundleImage config field, ModelDefinition.bundleSource, dual-mode detection (command vs bundle), and full test coverage.

  3. fb3ca28fdocs: add execution driver documentation and skill references
    Design doc with ASCII flow diagrams and implementation file tables, three skill reference files (model, workflow, extension-model), --driver rows in SKILL.md option tables, BUNDLED_SKILLS registration.

Test plan

  • deno check — type checking passes
  • deno lint — no lint errors
  • deno fmt — all files formatted
  • deno run test — 2952 tests pass
  • deno run compile — binary compiles with new skill files embedded
  • Manual: swamp model method run <model> <method> --driver docker with a command/shell model
  • Manual: swamp model method run <model> <method> --driver docker with an extension model (bundle mode)
  • Manual: verify --driver flag on swamp workflow run

🤖 Generated with Claude Code


Installation

macOS (Apple Silicon):

curl -L https://github.com/systeminit/swamp/releases/download/v20260313.230033.0-sha.9ad8cbad/swamp-darwin-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

macOS (Intel):

curl -L https://github.com/systeminit/swamp/releases/download/v20260313.230033.0-sha.9ad8cbad/swamp-darwin-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (x86_64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260313.230033.0-sha.9ad8cbad/swamp-linux-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (aarch64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260313.230033.0-sha.9ad8cbad/swamp-linux-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

swamp 20260312.232506.0-sha.dfa7c4e9

12 Mar 23:26
Immutable release. Only release title and notes can be modified.
dfa7c4e

Choose a tag to compare

What's Changed

  • fix: warn when check has empty appliesTo array (#698)

Summary

  • Adds validation warning when a check has appliesTo: [] (empty array), which silently disables the check since no method name can match
  • The warning message tells the author to either remove appliesTo or populate it with method names

Addresses review feedback from #697.

Review comment #2 (execution order)

The second comment about non-deterministic check execution order across extension loads is acknowledged but not actioned. Checks are documented as stateless and independent — order should not matter. Object.entries preserves insertion order per spec, and extension merging via spread is deterministic for a given set of extensions.

Test plan

  • New test: validateModel warns when appliesTo is empty array
  • All 56 validation service tests pass

🤖 Generated with Claude Code


Installation

macOS (Apple Silicon):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.232506.0-sha.dfa7c4e9/swamp-darwin-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

macOS (Intel):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.232506.0-sha.dfa7c4e9/swamp-darwin-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (x86_64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.232506.0-sha.dfa7c4e9/swamp-linux-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (aarch64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.232506.0-sha.dfa7c4e9/swamp-linux-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

swamp 20260312.231622.0-sha.27c95bb0

12 Mar 23:17
Immutable release. Only release title and notes can be modified.
27c95bb

Choose a tag to compare

What's Changed

  • feat: add pre-flight checks for model method execution (#697)

Summary

Adds pre-flight checks that run automatically before mutating model methods (create/update/delete/action), catching invalid inputs early with clear error messages instead of letting them fail as raw API errors.

Closes #619

Core Implementation

  • CheckDefinition interface with description, labels, appliesTo, and execute(context) => CheckResult
  • CheckResult with pass: boolean and optional errors: string[]
  • Checks run automatically before mutating methods; read/list methods skip checks
  • isMutatingKind() helper for method kind classification

Extension Checks

  • ModelRegistry.extend() accepts optional third checks parameter
  • Extension checks merge with model-type checks; conflicts throw at registration time
  • Extension checks format matches methods: array of Record<string, CheckDefinition>

Definition-Level Check Selection

  • CheckSelection type: { require?: string[]; skip?: string[] } on definitions
  • skip always wins (even over require)
  • require checks are immune to CLI skip flags (--skip-checks, --skip-check, --skip-check-label)
  • Validation warns on nonexistent check names and require/skip overlap

CLI Flags

  • model method run: --skip-checks, --skip-check <name>, --skip-check-label <label>
  • model validate: --label <label>, --method <method> for check filtering

Validation Service

  • Check results appear alongside schema validations in model validate output
  • Label and method filtering for targeted check execution
  • Definition-level skip lists honored during validation

Test plan

  • 17 new unit tests covering all check behaviors (pass/fail, filtering, skip flags, extension merging, definition-level selection)
  • Integration tests updated for new validation count
  • All 2875 tests pass
  • deno check, deno lint, deno fmt pass
  • End-to-end tested with command/shell model extension checks:
    • Check pass/fail on method execution
    • Label-based filtering (--skip-check-label)
    • Named check skipping (--skip-check)
    • Skip all checks (--skip-checks)
    • Definition-level require (immune to skip flags)
    • Definition-level skip (overrides require)
    • model validate with --label and --method filtering
    • Invalid check selection validation warnings

🤖 Generated with Claude Code


Installation

macOS (Apple Silicon):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.231622.0-sha.27c95bb0/swamp-darwin-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

macOS (Intel):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.231622.0-sha.27c95bb0/swamp-darwin-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (x86_64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.231622.0-sha.27c95bb0/swamp-linux-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (aarch64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.231622.0-sha.27c95bb0/swamp-linux-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

swamp 20260312.014128.0-sha.a040be69

12 Mar 01:42
Immutable release. Only release title and notes can be modified.
a040be6

Choose a tag to compare

What's Changed

  • fix: use write lock for evaluate commands (#695)

Summary

Follow-up to #694model evaluate and workflow evaluate were incorrectly migrated to the read-only path, but both commands persist evaluated definitions/workflows via .save() that are consumed by subsequent run commands. They must hold the datastore lock.

Fixes the blocking review feedback from #694.

Test Plan

  • deno check passes
  • deno lint passes
  • deno fmt --check passes
  • deno run test — all 2839 tests pass

🤖 Generated with Claude Code


Installation

macOS (Apple Silicon):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.014128.0-sha.a040be69/swamp-darwin-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

macOS (Intel):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.014128.0-sha.a040be69/swamp-darwin-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (x86_64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.014128.0-sha.a040be69/swamp-linux-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (aarch64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.014128.0-sha.a040be69/swamp-linux-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

swamp 20260312.011512.0-sha.4fc37f53

12 Mar 01:16
Immutable release. Only release title and notes can be modified.
4fc37f5

Choose a tag to compare

What's Changed

  • fix: skip datastore lock for read-only CLI commands (#694)

Summary

Fixes #692 — read-only CLI commands no longer acquire the exclusive datastore lock, allowing them to run concurrently with write operations like workflow runs.

Previously, every CLI command went through requireInitializedRepo() which acquired an exclusive distributed lock. This meant that running swamp workflow search or swamp data list while a workflow was executing would block for ~60 seconds then fail with a lock timeout error.

Changes

  • New function requireInitializedRepoReadOnly() in repo_context.ts — builds the full RepositoryContext but skips lock acquisition and datastore sync. This follows the existing pattern where breakglass commands (datastore lock status) already bypass locking via resolveDatastoreForRepo().
  • 33 read-only commands migrated to use the new function: all search, get, list, validate, evaluate, describe, history, logs, data, schema, summarise, audit, telemetry stats, datastore status, and extension list/search commands.
  • Write commands unchangedcreate, edit, delete, run, gc, rename, setup, sync, pull, push, rm, update, fmt continue to acquire the lock via requireInitializedRepo().
  • Updated design docs (design/datastores.md) and skills (.claude/skills/swamp-repo/SKILL.md) to document the read-only vs write distinction.
  • 4 new tests including a concurrency test that proves the read-only path succeeds while the write lock is held.

Why this is safe

All file writes in the codebase use atomic write-to-temp-then-rename (atomicWriteTextFile), so concurrent reads never see partial or corrupt files. The lock's purpose is to prevent concurrent writes from corrupting state — concurrent reads are inherently safe.

Trade-offs

Filesystem datastores: No trade-off. Both read and write paths access the same .swamp/ directory, so reads see writes immediately.

S3 datastores: Read-only commands read from the local S3 cache without pulling latest from S3 first. This means during a running workflow, a concurrent read in another terminal sees the cache as it was before the workflow started. This is acceptable because:

  • Write commands always call pullChanged() before executing, so data is fresh when it matters (during execution)
  • Once a write command finishes, the next write in any terminal pulls the latest
  • Users can run swamp datastore sync --pull to explicitly refresh the cache
  • The alternative (blocking all reads for 60s+ during any write) is a much worse UX than slightly stale read results

Test Plan

  • deno check — type checking passes
  • deno lint — no lint errors
  • deno fmt --check — formatting clean
  • deno run test — all 2839 tests pass
  • New test: requireInitializedRepoReadOnly - does not block concurrent access verifies read-only path succeeds while write lock is held
  • Manual: run swamp workflow run <workflow> --json then concurrently run swamp workflow search <query> --json — search should return immediately instead of blocking

🤖 Generated with Claude Code


Installation

macOS (Apple Silicon):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.011512.0-sha.4fc37f53/swamp-darwin-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

macOS (Intel):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.011512.0-sha.4fc37f53/swamp-darwin-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (x86_64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.011512.0-sha.4fc37f53/swamp-linux-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (aarch64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260312.011512.0-sha.4fc37f53/swamp-linux-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

swamp 20260311.230128.0-sha.9641c815

11 Mar 23:02
Immutable release. Only release title and notes can be modified.
9641c81

Choose a tag to compare

What's Changed

  • docs: document instance name uniqueness constraint (#661) (#691)

Summary

  • Documents that instance names must be unique across all specs within a method execution, since they map directly to storage paths on disk with no spec component
  • Adds a "Duplicate data instance name" troubleshooting entry with the fix pattern (prefix instance names)
  • Updates the writeResource API docs to call out the uniqueness constraint

This is a skills/docs-only change — no code changes. After investigating #661, we determined this is by-design behavior: instance names map to storage paths on disk (.swamp/data/{type}/{model}/{instanceName}/), and there's no spec component in the path. The duplicate name validation exists to catch collisions before they silently overwrite data. The gap was in our documentation, not the code.

Test plan

  • Verify skill docs render correctly
  • No code changes, no tests to run

🤖 Generated with Claude Code


Installation

macOS (Apple Silicon):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.230128.0-sha.9641c815/swamp-darwin-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

macOS (Intel):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.230128.0-sha.9641c815/swamp-darwin-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (x86_64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.230128.0-sha.9641c815/swamp-linux-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (aarch64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.230128.0-sha.9641c815/swamp-linux-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

swamp 20260311.215040.0-sha.719c1b5b

11 Mar 21:51
Immutable release. Only release title and notes can be modified.
719c1b5

Choose a tag to compare

What's Changed

  • fix: add rollback and depth warning to data rename (#690)

Summary

Addresses two findings from the adversarial review of #689 (data rename feature):

  • Non-atomic rename rollback: The rename operation has two write phases — save new data, then write tombstone. If the tombstone write fails (e.g., disk full, permission error), the system was left with both names pointing to valid active data and no forward reference. Now wraps the tombstone phase in try/catch and rolls back the newly saved data on failure, removing the version directory and cleaning up the data name directory if it was the only version.

  • Deep rename chain warning: When forward-reference depth exceeds 5 (e.g., A→B→C→D→E→F), findByName was silently returning null. Now logs a warning: Rename chain depth exceeded for "<name>" (model <id>). Data exists but is unreachable — simplify the rename chain. This applies to both the async and sync code paths.

Test plan

  • deno fmt — passed
  • deno lint — passed
  • deno check — passed
  • deno run test — 2835 passed, 0 failed
  • deno run compile — successful

🤖 Generated with Claude Code


Installation

macOS (Apple Silicon):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.215040.0-sha.719c1b5b/swamp-darwin-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

macOS (Intel):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.215040.0-sha.719c1b5b/swamp-darwin-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (x86_64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.215040.0-sha.719c1b5b/swamp-linux-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (aarch64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.215040.0-sha.719c1b5b/swamp-linux-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

swamp 20260311.210849.0-sha.1db81d92

11 Mar 21:09
Immutable release. Only release title and notes can be modified.
1db81d9

Choose a tag to compare

What's Changed

  • feat: add data rename command with forward-reference resolution (#689)

Closes #621

Summary

Adds swamp data rename <model> <old_name> <new_name> — a non-destructive rename command that preserves version history and maintains backwards compatibility through forward-reference resolution.

Why this is useful

Data instance names in swamp are permanent once created. Before this change, renaming a data instance (e.g., web-vpcdev-web-vpc) required deleting the old data and recreating it under the new name. This is destructive: you lose all version history, and any workflows, CEL expressions, or model inputs referencing the old name break immediately.

Scenarios where rename is needed

  • Refactoring naming conventions — As a project grows, early naming choices (vpc, subnet) need to become more specific (dev-web-vpc, prod-private-subnet) to avoid ambiguity
  • Reorganizing after a model's purpose evolves — A model initially managing one resource expands scope, and its data names no longer reflect what they contain
  • Fixing typos — A misspelled data name (deplyoment-state) can be corrected without losing history or breaking consumers
  • Multi-environment setups — When splitting a single model into per-environment variants, existing data needs environment-prefixed names

How it works

The implementation uses a Copy + Tombstone with Forward Reference strategy:

  1. Copy: The latest version of the old data is copied to the new name as version 1
  2. Tombstone: A new version is written on the old name with lifecycle: "deleted" and a renamedTo metadata field pointing to the new name
  3. Forward resolution: When any consumer looks up the old name (via findByName, CEL expressions like data.latest(), or model.* expressions), the repository layer detects the tombstone and transparently follows the forward reference to the new name
  4. History preserved: Version-specific lookups (data.version("model", "old-name", 2)) bypass forwarding and return the original historical data

User impact

  • Zero-downtime rename: Existing workflows and expressions referencing the old name continue to work immediately after rename — no manual updates required for things to keep running
  • Gradual migration: Users can update references at their own pace; the forward reference handles the transition
  • Full audit trail: The old name's version history is preserved; the tombstone version clearly marks when the rename occurred
  • CEL expression compatibility: data.latest(), data.version(), data.findByTag(), and model.* resource expressions all work transparently

Design decisions

  • Forward reference depth limit of 5: Prevents infinite loops from chained renames (A→B→C→D→E→F stops resolving)
  • Repository-level resolution: Forwarding happens in UnifiedDataRepository.findByName(), so every consumer benefits without code changes
  • Deduplication in list operations: After rename, directory scans would return both old (forwarded) and new names; findAllForModel deduplicates by resolved name using a Set
  • Tombstone skipping in expressions: The model resolver's eager population loop skips renamed tombstones to avoid polluting expression contexts
  • Warning on rename: Users are warned that re-running a model that writes to the old name will overwrite the forward reference

What changed

New files

  • src/cli/commands/data_rename.ts — CLI command definition
  • src/cli/commands/data_rename_test.ts — CLI command unit tests
  • src/domain/data/data_rename_service.ts — Domain service orchestrating the rename
  • src/presentation/output/data_rename_output.ts — Output rendering (logger for log mode, JSON for json mode)

Modified files

  • src/domain/data/data.ts — Added renamedTo field, isRenamed getter, withRenameMarker() factory method
  • src/domain/data/data_metadata.ts — Added renamedTo to Zod schema
  • src/infrastructure/persistence/unified_data_repository.ts — Added rename() method, forward-reference following in findByName/findByNameSync, deduplication in findAllForModel/findAllForModelSync
  • src/cli/commands/data.ts — Registered rename subcommand
  • src/cli/commands/data_get.ts — Fixed content path to use resolved name after forwarding
  • src/domain/expressions/model_resolver.ts — Skip renamed tombstones in eager population
  • integration/ddd_layer_rules_test.ts — Bumped ratchet counts for new service/output files
  • 5 test mock files — Added rename stub to mock UnifiedDataRepository implementations

Skill documentation

  • .claude/skills/swamp-data/SKILL.md — Added rename to quick reference, new "Rename Data" section
  • .claude/skills/swamp-data/references/examples.md — Added rename scenarios
  • .claude/skills/swamp-data/references/troubleshooting.md — Added rename troubleshooting, removed defunct index/symlink section

Test plan

Unit tests added (in data_test.ts)

  • withRenameMarker creates correct tombstone with lifecycle: "deleted" and renamedTo
  • isRenamed returns true only for deleted data with renamedTo set
  • isRenamed returns false for deleted data without renamedTo
  • isRenamed returns false for active data with renamedTo (edge case)
  • toData/fromData roundtrip preserves renamedTo
  • toData omits renamedTo when not set
  • withNewVersion preserves renamedTo field

CLI tests added (in data_rename_test.ts)

  • Module loads without error
  • Command has correct description
  • Command is registered as rename subcommand of data
  • --repo-dir option is available
  • Command requires three positional arguments

E2E testing performed manually

  • swamp data rename copies data to new name correctly
  • Forward reference resolves: swamp data get model old-name returns new name's data
  • swamp data list shows renamed data only once (no duplicates)
  • Historical version access: swamp data get model old-name --version 1 returns original
  • data.latest() in CEL expressions resolves through forward reference
  • Workflow re-run after rename produces data under new name correctly

Verification

  • deno fmt — passed
  • deno lint — passed
  • deno check — passed
  • deno run test — 2835 passed, 0 failed
  • deno run compile — successful

🤖 Generated with Claude Code


Installation

macOS (Apple Silicon):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.210849.0-sha.1db81d92/swamp-darwin-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

macOS (Intel):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.210849.0-sha.1db81d92/swamp-darwin-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (x86_64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.210849.0-sha.1db81d92/swamp-linux-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (aarch64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.210849.0-sha.1db81d92/swamp-linux-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

swamp 20260311.190346.0-sha.980e703f

11 Mar 19:04
Immutable release. Only release title and notes can be modified.
980e703

Choose a tag to compare

What's Changed

  • ci: add skill review CI step (#688)

Summary

  • Add scripts/review_skills.ts — reviews all bundled skills via npx tessl skill review, builds a markdown summary table for GITHUB_STEP_SUMMARY, and exits 1 if any skill's average score drops below 90%
  • Add review-skills task to deno.json
  • Add skill-review CI job (Deno + Node.js) to .github/workflows/ci.yml
  • Update needs arrays for claude-review, claude-adversarial-review, and auto-merge to gate on skill-review
  • Update skill descriptions and add data-ownership.md and expressions.md reference docs to swamp-data and swamp-model skills
  • Register new reference files in skill_assets.ts and update tests

Test plan

  • Ran deno run review-skills locally — all 8 skills pass at 100%
  • CI skill-review job passes on this PR
  • Existing test, deps-audit, and review jobs still pass

🤖 Generated with Claude Code


Installation

macOS (Apple Silicon):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.190346.0-sha.980e703f/swamp-darwin-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

macOS (Intel):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.190346.0-sha.980e703f/swamp-darwin-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (x86_64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.190346.0-sha.980e703f/swamp-linux-x86_64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/

Linux (aarch64):

curl -L https://github.com/systeminit/swamp/releases/download/v20260311.190346.0-sha.980e703f/swamp-linux-aarch64 -o swamp
chmod +x swamp && sudo mv swamp /usr/local/bin/