smart-commit-copilot-cli 0.1.2 → 0.1.4
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/CHANGELOG.md +33 -0
- package/README.md +489 -98
- package/docs/configuration.md +385 -121
- package/docs/contracts.md +26 -0
- package/docs/getting-started.md +159 -39
- package/docs/publish.md +1 -1
- package/docs/releases/0.1.3-draft.md +70 -0
- package/docs/releases/0.1.4-draft.md +54 -0
- package/out/cliApp.js +13 -0
- package/out/cliApp.js.map +1 -1
- package/out/commands/bridge.js +1 -1
- package/out/commands/bridge.js.map +1 -1
- package/out/contracts.js +1 -1
- package/out/contracts.js.map +1 -1
- package/out/passHistory/index.js +2 -3
- package/out/passHistory/index.js.map +1 -1
- package/out/passHistory/store.js +4 -5
- package/out/passHistory/store.js.map +1 -1
- package/out/reporting/aggregate.js +2 -1
- package/out/reporting/aggregate.js.map +1 -1
- package/out/reporting/render.js +3 -0
- package/out/reporting/render.js.map +1 -1
- package/out/reporting/types.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,39 @@ The format is based on Keep a Changelog, and this project follows Semantic Versi
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.4] - 2026-04-15
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- expanded `README.md`, `docs/configuration.md`, and `docs/getting-started.md` with more complete setup, configuration, and workflow guidance
|
|
14
|
+
- a dedicated `0.1.4` draft release note for the current publish target
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- publish guidance now points to the `0.1.4` release draft during pre-publish review
|
|
19
|
+
- release documentation now better reflects the current CLI surface and onboarding flow
|
|
20
|
+
|
|
21
|
+
## [0.1.3] - 2026-04-14
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
|
|
25
|
+
- pass-history event modeling now distinguishes `review_passed`, `commit_completed`, and `commit_push_completed`
|
|
26
|
+
- `bridge` now writes `commit_completed` when a local commit succeeds but automatic push is disabled
|
|
27
|
+
- focused regression coverage for `commit_completed`, pass-history parsing, report totals, and the updated bridge/pass-history interaction
|
|
28
|
+
- CLI now supports `--version`, `-v`, and `version` for installer and automation checks
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
|
|
32
|
+
- pass-history records now store `autoCommit` and `autoPush` directly instead of `autoCommitAndPush`
|
|
33
|
+
- report totals now distinguish `commitCompleted` from `commitPushCompleted`
|
|
34
|
+
- reporting now aligns more closely with the VS Code plugin by counting successful review passes from the final pass decision model
|
|
35
|
+
- user-facing docs and machine-facing contract docs now describe the updated pass-history and reporting model
|
|
36
|
+
|
|
37
|
+
### Fixed
|
|
38
|
+
|
|
39
|
+
- successful local-commit-only runs are now recorded separately from review-only runs and commit-plus-push runs
|
|
40
|
+
- report summaries no longer collapse local commit completion and commit + push completion into the same bucket
|
|
41
|
+
|
|
9
42
|
## [0.1.2] - 2026-04-14
|
|
10
43
|
|
|
11
44
|
### Added
|