@dreb/coding-agent 2.38.0 → 2.39.0

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 (33) hide show
  1. package/README.md +0 -1
  2. package/dist/config.d.ts +3 -5
  3. package/dist/config.d.ts.map +1 -1
  4. package/dist/config.js +16 -11
  5. package/dist/config.js.map +1 -1
  6. package/dist/core/export-html/template.css +31 -0
  7. package/dist/core/settings-manager.d.ts +0 -6
  8. package/dist/core/settings-manager.d.ts.map +1 -1
  9. package/dist/core/settings-manager.js +0 -16
  10. package/dist/core/settings-manager.js.map +1 -1
  11. package/dist/core/slash-commands.d.ts.map +1 -1
  12. package/dist/core/slash-commands.js +0 -1
  13. package/dist/core/slash-commands.js.map +1 -1
  14. package/dist/migrations.d.ts.map +1 -1
  15. package/dist/migrations.js +1 -3
  16. package/dist/migrations.js.map +1 -1
  17. package/dist/modes/interactive/components/settings-selector.d.ts +0 -2
  18. package/dist/modes/interactive/components/settings-selector.d.ts.map +1 -1
  19. package/dist/modes/interactive/components/settings-selector.js +0 -10
  20. package/dist/modes/interactive/components/settings-selector.js.map +1 -1
  21. package/dist/modes/interactive/interactive-mode.d.ts +0 -7
  22. package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  23. package/dist/modes/interactive/interactive-mode.js +2 -85
  24. package/dist/modes/interactive/interactive-mode.js.map +1 -1
  25. package/docs/mach6.md +1 -1
  26. package/docs/settings.md +0 -1
  27. package/docs/version-history.md +9 -0
  28. package/package.json +3 -4
  29. package/CHANGELOG.md +0 -3371
  30. package/dist/utils/changelog.d.ts +0 -21
  31. package/dist/utils/changelog.d.ts.map +0 -1
  32. package/dist/utils/changelog.js +0 -87
  33. package/dist/utils/changelog.js.map +0 -1
package/docs/mach6.md CHANGED
@@ -105,7 +105,7 @@ Pre-merge checks, version bump, docs update, merge, tag, and release.
105
105
  ```
106
106
 
107
107
  - Verifies CI passing, no merge conflicts, all findings addressed
108
- - Runs pre-merge checklist (version bump, changelog, tests)
108
+ - Runs pre-merge checklist (version bump, tests)
109
109
  - Applies version bump on the feature branch
110
110
  - Proactively reviews and updates ALL documentation affected by the PR's changes
111
111
  - Merges with `--squash --delete-branch`
package/docs/settings.md CHANGED
@@ -85,7 +85,6 @@ current model supports adaptive thinking).
85
85
  |---------|------|---------|-------------|
86
86
  | `theme` | string | `"dark"` | Theme name (`"dark"`, `"light"`, or custom) |
87
87
  | `quietStartup` | boolean | `false` | Hide startup header |
88
- | `collapseChangelog` | boolean | `false` | Show condensed changelog after updates |
89
88
  | `doubleEscapeAction` | string | `"tree"` | Action for double-escape: `"tree"`, `"fork"`, or `"none"` |
90
89
  | `treeFilterMode` | string | `"default"` | Default filter for `/tree`: `"default"`, `"no-tools"`, `"user-only"`, `"labeled-only"`, `"all"` |
91
90
  | `editorPaddingX` | number | `0` | Horizontal padding for input editor (0-3) |
@@ -0,0 +1,9 @@
1
+ # Version History
2
+
3
+ dreb does not maintain `CHANGELOG.md` files. All version history is tracked in git. Use [GitHub Releases](https://github.com/aebrer/dreb/releases) and `git log` for the canonical changelog.
4
+
5
+ ## Finding Changes
6
+
7
+ - **Recent releases**: Browse the [Releases page](https://github.com/aebrer/dreb/releases) for release notes and associated commits
8
+ - **Specific version**: `git log v2.38.0..v2.38.1` shows changes between versions
9
+ - **Detailed history**: `git log --oneline` for a compact view of all changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dreb/coding-agent",
3
- "version": "2.38.0",
3
+ "version": "2.39.0",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "drebConfig": {
@@ -38,8 +38,7 @@
38
38
  "agents",
39
39
  "skills",
40
40
  "docs",
41
- "examples",
42
- "CHANGELOG.md"
41
+ "examples"
43
42
  ],
44
43
  "scripts": {
45
44
  "clean": "shx rm -rf dist",
@@ -47,7 +46,7 @@
47
46
  "build": "tsgo -p tsconfig.build.json && shx chmod +x dist/cli.js && npm run copy-assets",
48
47
  "build:binary": "npm --prefix ../tui run build && npm --prefix ../ai run build && npm --prefix ../agent run build && npm run build && bun build --compile ./dist/bun/cli.js --outfile dist/dreb && npm run copy-binary-assets",
49
48
  "copy-assets": "shx mkdir -p dist/modes/interactive/theme && shx cp src/modes/interactive/theme/*.json dist/modes/interactive/theme/ && shx mkdir -p dist/core/export-html/vendor && shx cp src/core/export-html/template.html src/core/export-html/template.css src/core/export-html/template.js dist/core/export-html/ && shx cp src/core/export-html/vendor/*.js dist/core/export-html/vendor/",
50
- "copy-binary-assets": "shx cp package.json dist/ && shx cp README.md dist/ && shx cp CHANGELOG.md dist/ && shx mkdir -p dist/theme && shx cp src/modes/interactive/theme/*.json dist/theme/ && shx mkdir -p dist/export-html/vendor && shx cp src/core/export-html/template.html dist/export-html/ && shx cp src/core/export-html/vendor/*.js dist/export-html/vendor/ && shx cp -r docs dist/ && shx cp -r examples dist/ && shx cp ../../node_modules/@silvia-odwyer/photon-node/photon_rs_bg.wasm dist/",
49
+ "copy-binary-assets": "shx cp package.json dist/ && shx cp README.md dist/ && shx mkdir -p dist/theme && shx cp src/modes/interactive/theme/*.json dist/theme/ && shx mkdir -p dist/export-html/vendor && shx cp src/core/export-html/template.html dist/export-html/ && shx cp src/core/export-html/vendor/*.js dist/export-html/vendor/ && shx cp -r docs dist/ && shx cp -r examples dist/ && shx cp ../../node_modules/@silvia-odwyer/photon-node/photon_rs_bg.wasm dist/",
51
50
  "test": "vitest --run",
52
51
  "prepublishOnly": "npm run clean && npm run build"
53
52
  },