smart-commit-copilot-cli 0.1.3 → 0.1.5
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 +24 -0
- package/README.md +484 -108
- package/docs/configuration.md +381 -127
- package/docs/getting-started.md +153 -42
- package/docs/publish.md +1 -1
- package/docs/releases/0.1.3-draft.md +1 -0
- package/docs/releases/0.1.4-draft.md +54 -0
- package/docs/releases/0.1.5-draft.md +44 -0
- package/out/cliApp.js +13 -0
- package/out/cliApp.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,29 @@ The format is based on Keep a Changelog, and this project follows Semantic Versi
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.5] - 2026-04-15
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- a dedicated `0.1.5` draft release note for the current publish target
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- published-package README links now point to `unpkg` so the deeper documentation links still work after npm installation and registry browsing
|
|
18
|
+
- publish guidance now points to the `0.1.5` release draft during pre-publish review
|
|
19
|
+
|
|
20
|
+
## [0.1.4] - 2026-04-15
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- expanded `README.md`, `docs/configuration.md`, and `docs/getting-started.md` with more complete setup, configuration, and workflow guidance
|
|
25
|
+
- a dedicated `0.1.4` draft release note for the current publish target
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
|
|
29
|
+
- publish guidance now points to the `0.1.4` release draft during pre-publish review
|
|
30
|
+
- release documentation now better reflects the current CLI surface and onboarding flow
|
|
31
|
+
|
|
9
32
|
## [0.1.3] - 2026-04-14
|
|
10
33
|
|
|
11
34
|
### Added
|
|
@@ -13,6 +36,7 @@ The format is based on Keep a Changelog, and this project follows Semantic Versi
|
|
|
13
36
|
- pass-history event modeling now distinguishes `review_passed`, `commit_completed`, and `commit_push_completed`
|
|
14
37
|
- `bridge` now writes `commit_completed` when a local commit succeeds but automatic push is disabled
|
|
15
38
|
- focused regression coverage for `commit_completed`, pass-history parsing, report totals, and the updated bridge/pass-history interaction
|
|
39
|
+
- CLI now supports `--version`, `-v`, and `version` for installer and automation checks
|
|
16
40
|
|
|
17
41
|
### Changed
|
|
18
42
|
|