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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 0.1.2 — 2026-09-04

This patch release improves task-context relevance and makes setup, learning, and review state
clearer without widening Noxroot's execution authority.

### Improved

- Rank focused implementation and test files ahead of broad historical acceptance harnesses for
Expand All @@ -11,6 +16,14 @@
- Distinguish learning that was not assessed from an approved assessment with no reusable result.
- Expose prepared independent-review packages through the read-only `review` command.

### Validated

- Focused owners and related tests stay selected across the 30-case cross-stack context benchmark.
- The packed CLI lifecycle passes on Windows, macOS, Linux, and supported Node.js versions in CI.

No configuration migration, background service, telemetry, or new agent framework is introduced by
`0.1.2`.

## 0.1.1 — 2026-09-04

This patch release strengthens the existing Noxroot workflow without adding a new command or
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ Not assessed
No files changed. No project commands or agents ran. No network requests were made.

Next
npx --yes noxroot@0.1.1 preview --diff
npx --yes noxroot@0.1.2 preview --diff
```

</details>
Expand Down
2 changes: 1 addition & 1 deletion docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ From your repository directory, run `npx noxroot@latest preview` to inspect setu
files, then `npx noxroot@latest init` when ready. Requires Node.js `>=22.12 <27` and npm.

Commands below use `noxroot` as shorthand. Without a global installation, use
`npx --yes noxroot@0.1.1` in its place, or the version pinned in your repository instructions.
`npx --yes noxroot@0.1.2` in its place, or the version pinned in your repository instructions.
Compatible agents handle `start` and `finish`; you do not need to type them for each conversation.

## Global behavior
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ for ordinary questions. Local task state is not chat restoration or cross-machin
Use the pinned version from your repository instructions. For the current release:

```bash
npx --yes noxroot@0.1.1 doctor
npx --yes noxroot@0.1.1 status
npx --yes noxroot@0.1.2 doctor
npx --yes noxroot@0.1.2 status
```

`doctor` checks configuration; it does not prove your agent follows instructions. `status` shows
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "noxroot",
"version": "0.1.1",
"version": "0.1.2",
"description": "Noxroot gives coding agents relevant repository context, checks each change, and proposes validated lessons as reusable project documentation.",
"type": "module",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion src/invocation.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const VERSION = "0.1.1";
export const VERSION = "0.1.2";

export const CLI_INVOCATION = `npx --yes noxroot@${VERSION}`;

Expand Down