smart-commit-copilot-cli 0.1.4 → 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 CHANGED
@@ -6,6 +6,17 @@ 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
+
9
20
  ## [0.1.4] - 2026-04-15
10
21
 
11
22
  ### Added
package/README.md CHANGED
@@ -702,7 +702,7 @@ This sequence keeps the first rollout safe while still letting you validate the
702
702
 
703
703
  For deeper detail after the first successful run:
704
704
 
705
- - getting started from source: [`docs/getting-started.md`](./docs/getting-started.md)
706
- - configuration details: [`docs/configuration.md`](./docs/configuration.md)
707
- - integration patterns: [`docs/integrations.md`](./docs/integrations.md)
708
- - machine-facing contracts: [`docs/contracts.md`](./docs/contracts.md)
705
+ - getting started from source: [`docs/getting-started.md`](https://unpkg.com/smart-commit-copilot-cli/docs/getting-started.md)
706
+ - configuration details: [`docs/configuration.md`](https://unpkg.com/smart-commit-copilot-cli/docs/configuration.md)
707
+ - integration patterns: [`docs/integrations.md`](https://unpkg.com/smart-commit-copilot-cli/docs/integrations.md)
708
+ - machine-facing contracts: [`docs/contracts.md`](https://unpkg.com/smart-commit-copilot-cli/docs/contracts.md)
package/docs/publish.md CHANGED
@@ -21,7 +21,7 @@ Current package name:
21
21
  3. Run `npm run pack:dry-run`
22
22
  4. Review [`CHANGELOG.md`](../CHANGELOG.md)
23
23
  5. Review [`docs/release-checklist.md`](./release-checklist.md)
24
- 6. Review the matching release draft in [`docs/releases/0.1.4-draft.md`](./releases/0.1.4-draft.md)
24
+ 6. Review the matching release draft in [`docs/releases/0.1.5-draft.md`](./releases/0.1.5-draft.md)
25
25
 
26
26
  ## Recommended Release Order
27
27
 
@@ -0,0 +1,44 @@
1
+ # `smart-commit-copilot-cli` 0.1.5 Draft Release Notes
2
+
3
+ ## Summary
4
+
5
+ `smart-commit-copilot-cli` 0.1.5 is a documentation link-fix release for the standalone CLI.
6
+
7
+ This release focuses on making the README's deeper-dive documentation links continue to work correctly from published package surfaces such as npm and unpkg.
8
+
9
+ ## Highlights
10
+
11
+ - README links for `docs/getting-started.md`, `docs/configuration.md`, `docs/integrations.md`, and `docs/contracts.md` now use `unpkg` URLs
12
+ - publish guidance now points to the matching `0.1.5` release draft
13
+
14
+ ## Why This Release Matters
15
+
16
+ This version improves the published-package documentation experience:
17
+
18
+ - users browsing the packaged README can open the deeper guides without relying on repository-relative paths
19
+ - npm and unpkg readers can navigate from the package landing page to the bundled docs more reliably
20
+ - maintainers have a release draft aligned with the new publish target
21
+
22
+ ## Notable Documentation Updates
23
+
24
+ ### README
25
+
26
+ - deeper documentation links now target the bundled files through `unpkg`
27
+ - the package README is more portable across registry and package-browser contexts
28
+
29
+ ### Publish guide
30
+
31
+ - the pre-publish checklist now points at the `0.1.5` draft
32
+
33
+ ## Suggested Upgrade Path
34
+
35
+ 1. update to `0.1.5`
36
+ 2. run `npm test`
37
+ 3. run `npm run smoke:test`
38
+ 4. run `npm run pack:dry-run`
39
+ 5. publish only after all three checks pass
40
+
41
+ ## Known Follow-Up Areas
42
+
43
+ - additional publish-surface validation for README links after npm release
44
+ - broader release automation once the publish flow is fully routine
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smart-commit-copilot-cli",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "private": false,
5
5
  "description": "CLI for AI-assisted commit review, commit message generation, Git workflow automation, and work reports.",
6
6
  "license": "MIT",