@golba98/codexa 1.0.7 → 1.0.8

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.
package/README.md CHANGED
@@ -469,6 +469,7 @@ UI-only preferences are stored in `~/.codexa-settings.json` (separate from runti
469
469
 
470
470
  - [Architecture](docs/ARCHITECTURE.md) explains Codexa's entry points, subsystem boundaries, prompt and rendering flows, provider layers, state model, persistence, and maintenance invariants with diagrams.
471
471
  - [Source Guide](docs/SOURCE_GUIDE.md) catalogs the purpose of every file under `src/` and records the maintenance rules for each source area.
472
+ - [Release Guide](docs/RELEASING.md) documents the validation, version bump, and NPM publishing commands.
472
473
  - [Developer Scripts](scripts/README.md) lists every package command and explains launcher, shim, audit, build-metadata, smoke, and test behavior.
473
474
 
474
475
  ## Local Development
@@ -532,63 +533,6 @@ This replaces the global `codexa` with a symlink to the repo. Undo with `npm unl
532
533
  npm install -g .
533
534
  ```
534
535
 
535
- ## Maintainer release and NPM publishing
536
-
537
- The package name is `@golba98/codexa`. Publish from the repository root, and
538
- increment `version` in `package.json` before each release. NPM versions are
539
- immutable, so never reuse a version that has already been published.
540
-
541
- Check the current local and registry versions:
542
-
543
- ```bash
544
- npm pkg get name version
545
- npm whoami
546
- npm view @golba98/codexa version
547
- npm view @golba98/codexa dist-tags --json
548
- ```
549
-
550
- Run the release checks:
551
-
552
- ```bash
553
- bun install
554
- bun run typecheck
555
- bun test
556
- git diff --check
557
- ```
558
-
559
- Inspect exactly what will be included in the package:
560
-
561
- ```bash
562
- npm pack --dry-run
563
- ```
564
-
565
- Publish the next version publicly:
566
-
567
- ```bash
568
- npm publish --access public
569
- ```
570
-
571
- `npm publish` automatically runs `prepublishOnly`, which regenerates build
572
- metadata, typechecks, and runs the full test suite. Verify the registry and
573
- the installed command after publishing:
574
-
575
- ```bash
576
- npm view @golba98/codexa version
577
- npm view @golba98/codexa dist-tags --json
578
- npm install -g @golba98/codexa@latest
579
- codexa --version
580
- ```
581
-
582
- If the release is tracked in Git, commit the version and generated build-info
583
- change, then tag and push it:
584
-
585
- ```bash
586
- git add package.json src/config/buildInfo.ts README.md scripts/README.md
587
- git commit -m "release: publish Codexa vX.Y.Z"
588
- git tag vX.Y.Z
589
- git push origin main --follow-tags
590
- ```
591
-
592
536
  ## Testing
593
537
 
594
538
  ```bash
@@ -708,9 +652,9 @@ If you expect a notice but don't see one:
708
652
 
709
653
  See [CHANGELOG.md](CHANGELOG.md) for the full release history.
710
654
 
711
- **Current release: v1.0.7**
655
+ **Current release: v1.0.8**
712
656
 
713
- v1.0.7 keeps workspaces clean: provider choices, imported attachments, and default diagnostic logs now live in Codexa user data instead of a project-local `.codexa` directory.
657
+ v1.0.8 is a packaging-maintenance release that normalizes the published executable path without changing runtime behavior.
714
658
 
715
659
  Other recent releases introduce major additions, including:
716
660
  - **Mistral Vibe CLI Routing**: Connect through the `vibe` CLI tool (`vibe --setup`).
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@golba98/codexa",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Terminal UI for Codexa — TypeScript + Bun + Ink",
5
5
  "type": "module",
6
6
  "bin": {
7
- "codexa": "./bin/codexa.js"
7
+ "codexa": "bin/codexa.js"
8
8
  },
9
9
  "scripts": {
10
10
  "start": "bun run --silent src/index.tsx",
@@ -1,3 +1,3 @@
1
1
  // Generated by scripts/gen-build-info.mjs — do not edit manually.
2
- export const BUILD_COMMIT = "c04f84f315a4b2c4b8bea27d41ac370a27467572" as const;
3
- export const APP_VERSION = "1.0.7" as const;
2
+ export const BUILD_COMMIT = "931172a9e537e5e55979677187f4eeaeadcb654a" as const;
3
+ export const APP_VERSION = "1.0.8" as const;