Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
node-version: 22
registry-url: "https://registry.npmjs.org"
- name: Publish
# --provenance requires a PUBLIC repo; re-add it if/when this repo goes public.
run: npm publish --access public
# Repo is public → emit a signed provenance attestation (sigstore).
run: npm publish --access public --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ All notable changes to `@fusengine/harness`. Format: [Keep a Changelog](https://
## [Unreleased]

### Planned
- Go public → re-enable `--provenance` + Trusted Publishing (OIDC), drop `NPM_TOKEN`
- Trusted Publishing (OIDC) on npmjs → drop the `NPM_TOKEN` secret

## [0.1.23] - 2026-06-24

### Changed
- Repo is now **public** → the publish workflow emits a signed **provenance**
attestation (`npm publish --provenance`, sigstore). First release with provenance.

## [0.1.22] - 2026-06-24

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fusengine/harness",
"version": "0.1.22",
"version": "0.1.23",
"description": "Harness-agnostic toolkit for AI coding agents: runtime harness detection (Claude Code, Codex, Cursor, Cline, Gemini, Aider...), pure policy core (env config, project/framework detection, SOLID/file-size limits, APEX freshness, guard patterns, portable prompts), cache, project memory, ref routing, state/locks, statusline, per-harness adapters (Claude/Cursor/Cline/Gemini) and a cli-mode harness-check binary. Bun-native, with a built dist for Node + bundlers.",
"type": "module",
"module": "src/index.ts",
Expand Down
Loading