@just-every/code 0.6.1 → 0.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +17 -9
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -9,17 +9,15 @@
9
9
  **Every Code** (Code for short) is a fast, local coding agent for your terminal. It's a community-driven fork of `openai/codex` focused on real developer ergonomics: Browser integration, multi-agents, theming, and reasoning control — all while staying compatible with upstream.
10
10
 
11
11
   
12
- ## What's new in v0.5.0 (November 21st 2025)
12
+ ## What's new in v0.6.0 (December 2025)
13
13
 
14
- - **Renamed to Every Code** – new name for better discoverability while keeping the `code` shorthand.
15
- - **Auto Drive upgraded** – hand `/auto` a task and it now plans, coordinates agents, reruns checks, and recovers from hiccups without babysitting.
16
- - **Many QoL improvements** – `/resume` and `/undo` work reliably. All major upstream features have been ported across including compaction v2 and -max and -mini models.
17
- - **Unified settings** – `/settings` centralizes limits, model routing, themes, and CLI integrations so you can audit configuration in one place.
18
- - **Card-based activity** Agents, browser sessions, web search, and Auto Drive render as compact cards with drill-down overlays for full logs.
19
- - **Turbocharged performance** – History rendering and streaming were optimized to stay smooth even during long multi-agent sessions.
20
- - **Smarter agents** – Mix and match orchestrator CLIs (Claude, Gemini, GPT-5, Qwen, and more) per `/plan`, `/code`, or `/solve` run.
14
+ - **Auto Review** – background ghost-commit watcher runs reviews in a separate worktree whenever a turn changes code; uses `codex-5.1-mini-high` and reports issues plus ready-to-apply fixes without blocking the main thread.
15
+ - **Code Bridge** – Sentry-style local bridge that streams errors, console, screenshots, and control from running apps into Code; ships an MCP server; install by asking Code to pull `https://github.com/just-every/code-bridge`.
16
+ - **Plays well with Auto Drive** – reviews run in parallel with long Auto Drive tasks so quality checks land while the flow keeps moving.
17
+ - **Quality-first focus** – the release shifts emphasis from "can the model write this file" to "did we verify it works".
18
+ - _From v0.5.0:_ rename to Every Code, upgraded `/auto` planning/recovery, unified `/settings`, faster streaming/history with card-based activity, and more reliable `/resume` + `/undo`.
21
19
 
22
- Read the full notes in `docs/release-notes/RELEASE_NOTES.md`.
20
+ [Read the full notes in RELEASE_NOTES.md](docs/release-notes/RELEASE_NOTES.md)
23
21
 
24
22
   
25
23
  ## Why Every Code
@@ -301,6 +299,16 @@ npm install
301
299
  ./code-rs/target/dev-fast/code
302
300
  ```
303
301
 
302
+ #### Git hooks
303
+
304
+ This repo ships shared hooks under `.githooks/`. To enable them locally:
305
+
306
+ ```bash
307
+ git config core.hooksPath .githooks
308
+ ```
309
+
310
+ The `pre-push` hook runs `./pre-release.sh` automatically when pushing to `main`.
311
+
304
312
  ### Opening a pull request
305
313
 
306
314
  1. Fork the repository
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@just-every/code",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Lightweight coding agent that runs in your terminal - fork of OpenAI Codex",
6
6
  "bin": {
@@ -35,10 +35,10 @@
35
35
  "prettier": "^3.3.3"
36
36
  },
37
37
  "optionalDependencies": {
38
- "@just-every/code-darwin-arm64": "0.6.1",
39
- "@just-every/code-darwin-x64": "0.6.1",
40
- "@just-every/code-linux-x64-musl": "0.6.1",
41
- "@just-every/code-linux-arm64-musl": "0.6.1",
42
- "@just-every/code-win32-x64": "0.6.1"
38
+ "@just-every/code-darwin-arm64": "0.6.2",
39
+ "@just-every/code-darwin-x64": "0.6.2",
40
+ "@just-every/code-linux-x64-musl": "0.6.2",
41
+ "@just-every/code-linux-arm64-musl": "0.6.2",
42
+ "@just-every/code-win32-x64": "0.6.2"
43
43
  }
44
44
  }