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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"packages/gittensory-mcp": "0.7.0",
"packages/gittensory-engine": "0.1.0"
"packages/gittensory-engine": "0.2.0"
}
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions packages/gittensory-engine/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [0.2.0](https://github.com/JSONbored/gittensory/compare/engine-v0.1.0...engine-v0.2.0) (2026-07-08)


### Features

* **review:** add REES complexity and Go/Python error-defect analyzers ([#4155](https://github.com/JSONbored/gittensory/issues/4155)) ([f5c5c52](https://github.com/JSONbored/gittensory/commit/f5c5c5237da04910688369dbf0cf2a1d9371593e))
* **review:** per-repo opt-in to let a confident AI-judgment blocker gate the merge ([#4171](https://github.com/JSONbored/gittensory/issues/4171)) ([4664ad2](https://github.com/JSONbored/gittensory/commit/4664ad25f4c729ded6a37c3d5d6d5a56857d73e7))


### Fixes

* **engine:** fix stale test fixtures, wire the suite into test:ci ([#4150](https://github.com/JSONbored/gittensory/issues/4150)) ([5a4de69](https://github.com/JSONbored/gittensory/commit/5a4de69a67ae0d1704284d6237cd70d34ee2461a))

## Changelog

## engine-v0.1.0 - 2026-07-01

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/gittensory-engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jsonbored/gittensory-engine",
"version": "0.1.0",
"version": "0.2.0",
"license": "AGPL-3.0-only",
"type": "module",
"description": "Shared deterministic engine logic for the Gittensory review stack and gittensory-miner.",
Expand Down
9 changes: 4 additions & 5 deletions packages/gittensory-engine/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/**
* Published semver of `@jsonbored/gittensory-engine`. Keep in lockstep with `package.json` `version`
* (enforced by `test/unit/engine-version.test.ts`).
*/
export const ENGINE_VERSION = "0.1.0";
import ownPackageJson from "../package.json" with { type: "json" };

/** Published semver of `@jsonbored/gittensory-engine`, derived from this package's own package.json. */
export const ENGINE_VERSION: string = ownPackageJson.version;
2 changes: 1 addition & 1 deletion packages/gittensory-mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"build": "node --check bin/gittensory-mcp.js && node --check lib/local-branch.js && node --check scripts/gittensor-score-preview.mjs"
},
"dependencies": {
"@jsonbored/gittensory-engine": "^0.1.0",
"@jsonbored/gittensory-engine": ">=0.1.0 <1.0.0",
"@modelcontextprotocol/sdk": "1.29.0",
"zod": "^4.4.3"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/gittensory-miner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"build": "node --check bin/gittensory-miner.js && node --check lib/cli.js && node --check lib/deny-check.js && node --check lib/run-state-cli.js && node --check lib/update-check.js && node --check lib/opportunity-fanout.js && node --check lib/ci-poller.js && node --check lib/run-state.js && node --check lib/deny-hooks.js && node --check lib/event-ledger.js && node --check lib/event-ledger-cli.js && node --check lib/claim-ledger.js && node --check lib/claim-ledger-expiry.js && node --check lib/portfolio-queue.js && node --check lib/portfolio-queue-cli.js && node --check lib/portfolio-discovery.js && node --check lib/opportunity-ranker.js && node --check lib/plan-store.js && node --check lib/plan-store-cli.js && node --check lib/rejection-templates.js && node --check lib/governor-ledger.js && node --check lib/governor-ledger-cli.js && node --check lib/manage-status.js && node --check lib/manage-poll.js && node --check lib/status.js && node --check lib/laptop-init.js && node --check lib/replay-objective-anchor.js && node --check lib/replay-task-generation.js && node --check lib/calibration-types.js && node --check lib/calibration.js"
},
"dependencies": {
"@jsonbored/gittensory-engine": "0.1.0"
"@jsonbored/gittensory-engine": ">=0.1.0 <1.0.0"
},
"engines": {
"node": ">=22.13.0"
Expand Down
2 changes: 1 addition & 1 deletion test/unit/gittensory-engine-scaffold.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import enginePkg from "../../packages/gittensory-engine/package.json";
describe("gittensory-engine package scaffold", () => {
it("declares the published package identity", () => {
expect(enginePkg.name).toBe("@jsonbored/gittensory-engine");
expect(enginePkg.version).toBe("0.1.0");
expect(enginePkg.version).toMatch(/^\d+\.\d+\.\d+$/);
expect(enginePkg.type).toBe("module");
expect(enginePkg.license).toBe("AGPL-3.0-only");
expect(enginePkg.publishConfig?.access).toBe("public");
Expand Down
Loading