Skip to content

v2.0.0 — agent-toolkit repo split

Choose a tag to compare

@alexherrero alexherrero released this 13 May 05:57
· 382 commits to main since this release

BREAKING: The dependabot-fixer and ship-release skills have moved out of this repo into the new sibling repo agent-toolkit. The harness itself still works on its own for the phase-gated workflow (setup / plan / work / review / release / bugfix); only the two migrated skills are affected.

Migration

# Clone agent-toolkit as a sibling of agentic-harness:
gh repo clone alexherrero/agent-toolkit ../agent-toolkit

# Refresh harness state (auto-cleans orphaned dependabot-fixer + ship-release
# paths from the v1.x install via the true-sync --update mechanism shipped in v1.0.0):
bash /path/to/agentic-harness/install.sh --update /path/to/your-project

# Install the migrated skills into the same target:
bash ../agent-toolkit/install.sh /path/to/your-project

doctor and migrate-to-diataxis remain in this repo — they are harness-setup-specific and harness-shaped, not personal customizations. Phase specs (/release, /work) reference ship-release with graceful-skip framing ("install agent-toolkit to enable; otherwise cut release manually with gh release create"), so a v2.0.0 install without the toolkit still functions.

Released alongside agent-toolkit v0.5.0.

Highlights

  • Two skills migrated outdependabot-fixer + ship-release now at agent-toolkit/skills/. Harness shared-skills surface narrows from 4 to 2.
  • New shared lib/install/ byte-identical with agent-toolkit/lib/install/ (6 bash + 8 pwsh functions + CONTRACT.md). Cross-repo updates flow through scripts/sync-lib.sh; check-lib-parity.sh asserts self-consistency in CI.
  • PII + lib-parity CI gates added to all three per-OS workflows.
  • Cross-platform byte-identity work surfaced four real Mac + Windows bugs (locale-dependent sort, $host collision in PowerShell, missing shasum in Git Bash, autocrlf + binary-mode SHA-256 differences) — all fixed before tag.
  • ADR 0006 — agent-toolkit split captures parity-tax + harness-identity rationale. Cross-references the toolkit's ADR 0001.

See CHANGELOG.md for the full v2.0.0 entry.