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.
@@ -1,61 +1,106 @@
1
1
  # Getting Started
2
2
 
3
- This guide is the fastest path from a fresh checkout to a successful `bridge` run.
3
+ This guide is the fastest safe path from a fresh setup to a successful `smart-commit bridge` run.
4
4
 
5
- ## Goal
5
+ It is written for first-time users who want to:
6
+
7
+ - get the CLI working quickly
8
+ - understand what each step proves
9
+ - avoid accidental commit or push side effects
10
+
11
+ ## What You Will Accomplish
6
12
 
7
13
  By the end of this guide, you will:
8
14
 
9
- 1. build the CLI
10
- 2. prepare a config file
11
- 3. validate the merged config
15
+ 1. choose how you want to run the CLI
16
+ 2. prepare a minimal config
17
+ 3. validate the final merged config
12
18
  4. run a safe bridge preflight
13
19
  5. run review-only mode
20
+ 6. optionally enable pass history and reporting
14
21
 
15
22
  ## Prerequisites
16
23
 
17
- - Node.js 20+
18
- - Git repository with staged changes
19
- - an OpenAI-compatible API endpoint and API key
24
+ Before you start, make sure you have:
25
+
26
+ - `Node.js >= 20`
27
+ - `git` available in your shell
28
+ - a Git repository to operate on
29
+ - staged changes, or a config that allows auto-stage
30
+ - an OpenAI-compatible API endpoint, model, and API key
31
+
32
+ Important command requirements:
33
+
34
+ - `bridge` requires `--repo`
35
+ - `report generate` requires `--repo`
36
+ - `config resolve` does not require `--repo`
37
+ - `bridge` requires a valid connection config
38
+
39
+ ## Choose How To Run The CLI
40
+
41
+ You have three common options.
42
+
43
+ ### Option 1: Use the published package
44
+
45
+ Install globally:
46
+
47
+ ```bash
48
+ npm install -g smart-commit-copilot-cli
49
+ smart-commit --help
50
+ ```
51
+
52
+ Or use `npx` directly:
53
+
54
+ ```bash
55
+ npx smart-commit-copilot-cli --help
56
+ ```
20
57
 
21
- ## Step 1: Install And Build
58
+ ### Option 2: Run from a local checkout
22
59
 
23
60
  From the repository root:
24
61
 
25
62
  ```bash
26
63
  npm install
27
64
  npm run build
65
+ node out/cli.js --help
28
66
  ```
29
67
 
30
- Optional, if you want the `smart-commit` binary available globally in your shell:
68
+ If you want the `smart-commit` command in your shell while developing locally:
31
69
 
32
70
  ```bash
33
71
  npm link
72
+ smart-commit --help
73
+ ```
74
+
75
+ ### Option 3: Decide once, use one command form everywhere
76
+
77
+ All examples below use:
78
+
79
+ ```bash
80
+ smart-commit
34
81
  ```
35
82
 
36
- If you do not run `npm link`, replace `smart-commit` in the examples below with:
83
+ If you did not install or link the binary, replace it with:
37
84
 
38
85
  ```bash
39
86
  node out/cli.js
40
87
  ```
41
88
 
42
- ## Step 2: Export Your API Key
89
+ ## Step 1: Export Your API Key
43
90
 
44
91
  ```bash
45
92
  export SMART_COMMIT_API_KEY="your-api-key"
46
93
  ```
47
94
 
48
- The example config uses `env:SMART_COMMIT_API_KEY`, so this environment variable must exist before validation.
95
+ Why this matters:
49
96
 
50
- ## Step 3: Create A Config File
97
+ - the config examples in this guide reference `env:SMART_COMMIT_API_KEY`
98
+ - environment references are resolved before validation
99
+ - if the variable is missing, `bridge` cannot start
51
100
 
52
- Start from the example:
53
-
54
- ```bash
55
- cp examples/config/smart-commit.json ./smart-commit.json
56
- ```
101
+ ## Step 2: Create A Minimal Config File
57
102
 
58
- You can keep the example mostly as-is for first use. The important part is:
103
+ In your target repository, create `smart-commit.json`:
59
104
 
60
105
  ```json
61
106
  {
@@ -64,20 +109,37 @@ You can keep the example mostly as-is for first use. The important part is:
64
109
  "baseUrl": "https://api.openai.com/v1",
65
110
  "apiKey": "env:SMART_COMMIT_API_KEY",
66
111
  "model": "gpt-5"
112
+ },
113
+ "git": {
114
+ "autoCommit": false,
115
+ "autoPush": false
67
116
  }
68
117
  }
69
118
  }
70
119
  ```
71
120
 
72
- ## Step 4: Validate The Final Config
121
+ The three most important fields are:
122
+
123
+ - `connection.baseUrl`
124
+ - `connection.apiKey`
125
+ - `connection.model`
126
+
127
+ This config is intentionally conservative:
128
+
129
+ - `autoCommit=false` prevents creating a local commit
130
+ - `autoPush=false` prevents pushing to remote
131
+
132
+ If you want a fuller example, see `examples/config/smart-commit.json`, but do not copy its side-effect settings blindly for first use.
133
+
134
+ ## Step 3: Validate The Final Config
73
135
 
74
136
  ```bash
75
137
  smart-commit config resolve --config ./smart-commit.json
76
138
  ```
77
139
 
78
- This command is important because it shows:
140
+ This is the recommended first real command because it shows:
79
141
 
80
- - merged values after precedence rules
142
+ - merged config after CLI args, env vars, file config, and defaults
81
143
  - secret redaction
82
144
  - validation errors before execution
83
145
 
@@ -87,27 +149,43 @@ For a more readable terminal view:
87
149
  smart-commit config resolve --config ./smart-commit.json --output text
88
150
  ```
89
151
 
90
- ## Step 5: Prepare Some Staged Changes
152
+ You should expect:
153
+
154
+ - a valid merged config
155
+ - no missing environment variable errors
156
+ - no invalid numbers, booleans, regex patterns, or protocol values
91
157
 
92
- Inside your target repo:
158
+ ## Step 4: Prepare Some Staged Changes
159
+
160
+ Inside your target repository:
93
161
 
94
162
  ```bash
95
163
  git add -A
96
164
  git status --short
97
165
  ```
98
166
 
99
- `bridge` works on staged changes, so this step matters.
167
+ `bridge` works on staged content, so this step matters.
168
+
169
+ If nothing is staged and `git.autoStageWhenNothingStaged` is disabled, `bridge` will block.
100
170
 
101
- ## Step 6: Run A Safe Preflight
171
+ ## Step 5: Run A Safe Preflight
102
172
 
103
173
  ```bash
104
174
  smart-commit bridge --repo . --config ./smart-commit.json --dry-run
105
175
  ```
106
176
 
177
+ This checks:
178
+
179
+ - repository path is valid
180
+ - current path is inside Git
181
+ - staged diff input exists, or whether auto-stage would apply
182
+ - commit-message logic can resolve
183
+ - bridge input is ready for execution
184
+
107
185
  Expected result:
108
186
 
109
187
  - `status: "ready"` if everything is prepared
110
- - `status: "blocked"` if changes are missing or staging rules prevent execution
188
+ - `status: "blocked"` if input is missing or staging rules prevent execution
111
189
  - `status: "error"` if config or runtime setup is invalid
112
190
 
113
191
  Human-readable version:
@@ -116,7 +194,7 @@ Human-readable version:
116
194
  smart-commit bridge --repo . --config ./smart-commit.json --dry-run --output text
117
195
  ```
118
196
 
119
- ## Step 7: Run Review-Only Mode
197
+ ## Step 6: Run Review-Only Mode
120
198
 
121
199
  This is the safest way to onboard the CLI into a real workflow:
122
200
 
@@ -126,18 +204,20 @@ smart-commit bridge --repo . --config ./smart-commit.json --no-commit --no-push
126
204
 
127
205
  This lets you verify:
128
206
 
129
- - review path
130
- - commit-message generation path
207
+ - review execution
208
+ - commit-message generation or validation
131
209
  - threshold behavior
132
210
  - structured JSON output
133
211
 
134
212
  without creating a commit or pushing to remote.
135
213
 
136
- When the review returns a numeric score, the final pass or block result is determined by comparing that score with the configured threshold.
214
+ When the review returns a numeric score, the final pass or block result is determined by comparing that score with the configured `review.threshold`.
215
+
216
+ ## Step 7: Enable Pass History When You Are Ready
137
217
 
138
- ## Step 8: Enable Pass History
218
+ If you want reporting later, enable pass history in config or with flags.
139
219
 
140
- If you want reporting later, enable pass history:
220
+ Example:
141
221
 
142
222
  ```bash
143
223
  smart-commit bridge \
@@ -156,33 +236,64 @@ The stored event type depends on what the bridge actually completed:
156
236
  - `commit_completed` when a local commit succeeds but automatic push is disabled
157
237
  - `commit_push_completed` when both local commit and push succeed
158
238
 
159
- ## Step 9: Generate A Report
239
+ ## Step 8: Generate A Report
160
240
 
161
241
  ```bash
162
242
  smart-commit report generate --repo . --config ./smart-commit.json --period weekly
163
243
  ```
164
244
 
245
+ Supported periods:
246
+
247
+ - `daily`
248
+ - `weekly`
249
+ - `monthly`
250
+ - `quarterly`
251
+ - `yearly`
252
+
253
+ If `--period` is omitted, the CLI defaults to `weekly`.
254
+
165
255
  Useful follow-up checks:
166
256
 
167
257
  - confirm `outputFilePath`
168
258
  - confirm `renderMode`
169
- - inspect generated Markdown
170
- - inspect `facts.totals.reviewPassed`
171
- - inspect `facts.totals.commitCompleted`
172
- - inspect `facts.totals.commitPushCompleted`
259
+ - inspect the generated Markdown
260
+ - inspect summary facts in the JSON payload
261
+
262
+ Optional AI-enhanced reporting:
263
+
264
+ ```bash
265
+ smart-commit report generate --repo . --config ./smart-commit.json --period weekly --report-ai
266
+ ```
173
267
 
174
- ## Recommended First Production Rollout
268
+ If AI report generation fails, the CLI falls back to local Markdown generation automatically.
269
+
270
+ ## Suggested First Rollout
271
+
272
+ For a new repository or team, use this order:
175
273
 
176
274
  1. validate config with `config resolve`
177
275
  2. run `bridge --dry-run`
178
276
  3. run `bridge --no-commit --no-push`
179
- 4. wire the same review-only command into Husky or Cursor hook
277
+ 4. wire the same review-only command into Husky, Cursor hooks, or scripts
180
278
  5. enable pass history
181
279
  6. add reporting
182
- 7. only then enable automatic commit or push if you really want the CLI to own those side effects
280
+ 7. only then consider automatic commit or push
281
+
282
+ This rollout keeps the first adoption phase safe while still validating the full workflow.
283
+
284
+ ## Troubleshooting Checklist
285
+
286
+ If your first run fails, check these in order:
287
+
288
+ 1. Is `SMART_COMMIT_API_KEY` exported in the current shell?
289
+ 2. Did you pass `--repo` for `bridge` or `report generate`?
290
+ 3. Are there staged changes?
291
+ 4. Does `smart-commit config resolve --config ./smart-commit.json` succeed?
292
+ 5. Are `autoCommit` and `autoPush` still disabled while you test?
183
293
 
184
294
  ## Where To Go Next
185
295
 
296
+ - broader overview and safe rollout guidance: [`../README.md`](../README.md)
186
297
  - configuration details: [`configuration.md`](./configuration.md)
187
298
  - integration patterns: [`integrations.md`](./integrations.md)
188
299
  - machine-facing contracts: [`contracts.md`](./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.3-draft.md`](./releases/0.1.3-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
 
@@ -13,6 +13,7 @@ This release focuses on bringing the CLI event model and report summaries closer
13
13
  - pass-history records now store `autoCommit` and `autoPush` directly
14
14
  - report totals now distinguish `commitCompleted` from `commitPushCompleted`
15
15
  - report success counts now align with the final pass decision model used by the VS Code plugin
16
+ - CLI now supports `--version`, `-v`, and `version` for installer and postinstall checks
16
17
  - bridge, pass-history, reporting, and documentation coverage were updated together for this behavior change
17
18
 
18
19
  ## Why This Release Matters
@@ -0,0 +1,54 @@
1
+ # `smart-commit-copilot-cli` 0.1.4 Draft Release Notes
2
+
3
+ ## Summary
4
+
5
+ `smart-commit-copilot-cli` 0.1.4 is a documentation and release-readiness update for the standalone CLI.
6
+
7
+ This release focuses on making the project easier to install, configure, and publish by expanding the primary user guides and aligning the release workflow with the current publish target.
8
+
9
+ ## Highlights
10
+
11
+ - expanded `README.md` with clearer command usage, setup guidance, and integration-oriented examples
12
+ - expanded `docs/configuration.md` with more detailed configuration behavior and option explanations
13
+ - expanded `docs/getting-started.md` with a more complete onboarding flow for first-time CLI usage
14
+ - publish guidance now points to the matching `0.1.4` release draft
15
+
16
+ ## Why This Release Matters
17
+
18
+ This version improves day-to-day usability around adoption and release preparation:
19
+
20
+ - new users can get from install to first successful run with less guesswork
21
+ - configuration behavior is easier to understand before wiring the CLI into hooks or external agents
22
+ - release preparation is more straightforward because the publish checklist now points at the current draft
23
+ - maintainers have a clearer baseline for future publish iterations
24
+
25
+ ## Notable Documentation Updates
26
+
27
+ ### README
28
+
29
+ - installation, command usage, and integration guidance were expanded
30
+ - examples now give better context for common CLI workflows
31
+
32
+ ### Configuration guide
33
+
34
+ - configuration concepts and options are described in more operational detail
35
+ - readers now have a clearer reference when deciding how to supply config through files, env vars, or CLI flags
36
+
37
+ ### Getting started guide
38
+
39
+ - onboarding steps now provide more complete setup and verification guidance
40
+ - first-run expectations are documented more clearly for local validation
41
+
42
+ ## Suggested Upgrade Path
43
+
44
+ 1. update to `0.1.4`
45
+ 2. run `npm test`
46
+ 3. run `npm run smoke:test`
47
+ 4. run `npm run pack:dry-run`
48
+ 5. publish only after all three checks pass
49
+
50
+ ## Known Follow-Up Areas
51
+
52
+ - additional publish automation once the release flow is fully routine
53
+ - continued expansion of end-to-end integration examples for external agents and hooks
54
+ - broader release validation if publish-time verification grows beyond the current local command set
@@ -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/out/cliApp.js CHANGED
@@ -10,6 +10,7 @@ const contracts_1 = require("./contracts");
10
10
  const logger_1 = require("./logger");
11
11
  const output_1 = require("./output");
12
12
  const renderOutput_1 = require("./renderOutput");
13
+ const SMART_COMMIT_CLI_PACKAGE_VERSION = require("../package.json").version ?? "0.0.0";
13
14
  function runCli(argv, env = process.env) {
14
15
  try {
15
16
  const command = parseCommand(argv);
@@ -20,6 +21,13 @@ function runCli(argv, env = process.env) {
20
21
  stderr: ""
21
22
  };
22
23
  }
24
+ if (command.kind === "version") {
25
+ return {
26
+ exitCode: 0,
27
+ stdout: `${SMART_COMMIT_CLI_PACKAGE_VERSION}\n`,
28
+ stderr: ""
29
+ };
30
+ }
23
31
  if (command.kind === "config-resolve") {
24
32
  const resolved = (0, config_1.resolveCliConfig)({
25
33
  argv: command.flags,
@@ -123,6 +131,10 @@ async function runCliAsync(argv, env = process.env) {
123
131
  }
124
132
  function parseCommand(argv) {
125
133
  const positional = argv.filter((token) => !token.startsWith("--"));
134
+ if ((argv.length === 1 && (argv[0] === "--version" || argv[0] === "-v")) ||
135
+ (positional.length === 1 && positional[0] === "version")) {
136
+ return { kind: "version", raw: positional.join(" ") || argv[0] || "version" };
137
+ }
126
138
  if (argv.length === 0 || argv.includes("--help") || argv.includes("-h") || positional[0] === "help") {
127
139
  return { kind: "help", raw: positional.join(" ") };
128
140
  }
@@ -184,6 +196,7 @@ function buildHelpText() {
184
196
  " smart-commit bridge [flags]",
185
197
  " smart-commit report generate [flags]",
186
198
  " smart-commit schema print --target <config-file|config-resolve|bridge|report-generate>",
199
+ " smart-commit --version",
187
200
  " smart-commit --help",
188
201
  "",
189
202
  "Current commands:",
package/out/cliApp.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"cliApp.js","sourceRoot":"","sources":["../src/cliApp.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"cliApp.js","sourceRoot":"","sources":["../src/cliApp.ts"],"names":[],"mappings":";;AAyBA,wBA0EC;AAED,kCAmEC;AA+DD,0CAEC;AAzOD,8CAA6E;AAC7E,8CAA6D;AAC7D,qCAA4C;AAC5C,2CAIqB;AACrB,qCAAoD;AACpD,qCAA2C;AAC3C,iDAKwB;AAExB,MAAM,gCAAgC,GAAI,OAAO,CAAC,iBAAiB,CAA0B,CAAC,OAAO,IAAI,OAAO,CAAC;AAQjH,SAAgB,MAAM,CAAC,IAAuB,EAAE,MAAyB,OAAO,CAAC,GAAG;IAClF,IAAI,CAAC;QACH,MAAM,OAAO,GAAG,YAAY,CAAC,IAAI,CAAC,CAAC;QAEnC,IAAI,OAAO,CAAC,IAAI,KAAK,MAAM,EAAE,CAAC;YAC5B,OAAO;gBACL,QAAQ,EAAE,CAAC;gBACX,MAAM,EAAE,aAAa,EAAE;gBACvB,MAAM,EAAE,EAAE;aACX,CAAC;QACJ,CAAC;QAED,IAAI,OAAO,CAAC,IAAI,KAAK,SAAS,EAAE,CAAC;YAC/B,OAAO;gBACL,QAAQ,EAAE,CAAC;gBACX,MAAM,EAAE,GAAG,gCAAgC,IAAI;gBAC/C,MAAM,EAAE,EAAE;aACX,CAAC;QACJ,CAAC;QAED,IAAI,OAAO,CAAC,IAAI,KAAK,gBAAgB,EAAE,CAAC;YACtC,MAAM,QAAQ,GAAG,IAAA,yBAAgB,EAAC;gBAChC,IAAI,EAAE,OAAO,CAAC,KAAK;gBACnB,GAAG;gBACH,QAAQ,EAAE,IAAI;gBACd,iBAAiB,EAAE,KAAK;aACzB,CAAC,CAAC;YAEH,MAAM,OAAO,GAAG;gBACd,aAAa,EAAE,2CAA+B;gBAC9C,MAAM,EAAE,IAAa;gBACrB,OAAO,EAAE,gBAAyB;gBAClC,OAAO,EAAE,QAAQ,CAAC,OAAO;gBACzB,MAAM,EAAE,IAAA,wBAAe,EAAC,QAAQ,CAAC,MAAM,CAAC;aACzC,CAAC;YAEF,OAAO;gBACL,QAAQ,EAAE,CAAC;gBACX,MAAM,EAAE,IAAA,wCAAyB,EAAC,OAAO,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC;gBACzE,MAAM,EAAE,IAAA,kBAAS,EAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE,OAAO,CAAC;oBACzD,CAAC,CAAC,IAAA,sBAAa,EAAC,OAAO,EAAE,kDAAkD,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC;oBAC5G,CAAC,CAAC,EAAE;aACP,CAAC;QACJ,CAAC;QAED,IAAI,OAAO,CAAC,IAAI,KAAK,QAAQ,EAAE,CAAC;YAC9B,MAAM,IAAI,KAAK,CAAC,gEAAgE,CAAC,CAAC;QACpF,CAAC;QAED,IAAI,OAAO,CAAC,IAAI,KAAK,iBAAiB,EAAE,CAAC;YACvC,MAAM,IAAI,KAAK,CAAC,yEAAyE,CAAC,CAAC;QAC7F,CAAC;QAED,IAAI,OAAO,CAAC,IAAI,KAAK,cAAc,EAAE,CAAC;YACpC,OAAO;gBACL,QAAQ,EAAE,CAAC;gBACX,MAAM,EAAE,GAAG,IAAI,CAAC,SAAS,CAAC,IAAA,6BAAiB,EAAC,OAAO,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC,IAAI;gBACzE,MAAM,EAAE,EAAE;aACX,CAAC;QACJ,CAAC;QAED,OAAO;YACL,QAAQ,EAAE,+BAAsB;YAChC,MAAM,EAAE,EAAE;YACV,MAAM,EAAE,oBAAoB,OAAO,CAAC,GAAG,KAAK,aAAa,EAAE,EAAE;SAC9D,CAAC;IACJ,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,MAAM,OAAO,GAAG,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QACvE,OAAO;YACL,QAAQ,EAAE,CAAC;YACX,MAAM,EAAE,EAAE;YACV,MAAM,EAAE,GAAG,OAAO,IAAI;SACvB,CAAC;IACJ,CAAC;AACH,CAAC;AAEM,KAAK,UAAU,WAAW,CAC/B,IAAuB,EACvB,MAAyB,OAAO,CAAC,GAAG;IAEpC,IAAI,CAAC;QACH,MAAM,OAAO,GAAG,YAAY,CAAC,IAAI,CAAC,CAAC;QACnC,IAAI,OAAO,CAAC,IAAI,KAAK,QAAQ,EAAE,CAAC;YAC9B,IAAI,OAAO,CAAC,IAAI,KAAK,iBAAiB,EAAE,CAAC;gBACvC,OAAO,MAAM,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;YAC3B,CAAC;QACH,CAAC;QAED,IAAI,OAAO,CAAC,IAAI,KAAK,iBAAiB,EAAE,CAAC;YACvC,MAAM,MAAM,GAAG,MAAM,IAAA,iCAAwB,EAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;YAClE,MAAM,YAAY,GAAG,IAAA,2CAA4B,EAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YAC3G,IAAI,MAAM,GAAG,EAAE,CAAC;YAEhB,IAAI,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,IAAI,IAAA,kBAAS,EAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC,EAAE,CAAC;gBACnG,MAAM,IAAI,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,IAAA,sBAAa,EAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;YAC9F,CAAC;YAED,IAAI,IAAA,kBAAS,EAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE,OAAO,CAAC,EAAE,CAAC;gBAC9D,MAAM,IAAI,IAAA,sBAAa,EACrB,OAAO,EACP,yCAAyC,MAAM,CAAC,OAAO,CAAC,MAAM,gBAAgB,MAAM,CAAC,OAAO,CAAC,UAAU,YAAY,YAAY,GAAG,CACnI,CAAC;YACJ,CAAC;YAED,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,KAAK,OAAO,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC;gBAC9D,MAAM,IAAI,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,IAAI,CAAC;YAChD,CAAC;YAED,OAAO;gBACL,QAAQ,EAAE,MAAM,CAAC,QAAQ;gBACzB,MAAM,EAAE,IAAA,iCAAkB,EAAC,MAAM,CAAC,OAAO,EAAE,YAAY,CAAC;gBACxD,MAAM;aACP,CAAC;QACJ,CAAC;QAED,MAAM,MAAM,GAAG,MAAM,IAAA,yBAAgB,EAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;QAC1D,MAAM,YAAY,GAAG,IAAA,2CAA4B,EAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;QAC3G,IAAI,MAAM,GAAG,EAAE,CAAC;QAEhB,IAAI,IAAA,kBAAS,EAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE,OAAO,CAAC,EAAE,CAAC;YAC9D,MAAM,IAAI,IAAA,sBAAa,EACrB,OAAO,EACP,gCAAgC,MAAM,CAAC,OAAO,CAAC,MAAM,WAAW,MAAM,CAAC,OAAO,CAAC,KAAK,YAAY,YAAY,GAAG,CAChH,CAAC;QACJ,CAAC;QAED,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,KAAK,OAAO,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC;YAC9D,MAAM,IAAI,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,IAAI,CAAC;QAChD,CAAC;QAED,OAAO;YACL,QAAQ,EAAE,MAAM,CAAC,QAAQ;YACzB,MAAM,EAAE,IAAA,iCAAkB,EAAC,MAAM,CAAC,OAAO,EAAE,YAAY,CAAC;YACxD,MAAM;SACP,CAAC;IACJ,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,MAAM,OAAO,GAAG,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QACvE,OAAO;YACL,QAAQ,EAAE,CAAC;YACX,MAAM,EAAE,EAAE;YACV,MAAM,EAAE,GAAG,OAAO,IAAI;SACvB,CAAC;IACJ,CAAC;AACH,CAAC;AAWD,SAAS,YAAY,CAAC,IAAuB;IAC3C,MAAM,UAAU,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC;IAEnE,IACE,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,WAAW,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC;QACpE,CAAC,UAAU,CAAC,MAAM,KAAK,CAAC,IAAI,UAAU,CAAC,CAAC,CAAC,KAAK,SAAS,CAAC,EACxD,CAAC;QACD,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,EAAE,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,SAAS,EAAE,CAAC;IAChF,CAAC;IAED,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,UAAU,CAAC,CAAC,CAAC,KAAK,MAAM,EAAE,CAAC;QACpG,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;IACrD,CAAC;IAED,IAAI,UAAU,CAAC,CAAC,CAAC,KAAK,QAAQ,IAAI,UAAU,CAAC,CAAC,CAAC,KAAK,SAAS,EAAE,CAAC;QAC9D,OAAO;YACL,IAAI,EAAE,gBAAgB;YACtB,GAAG,EAAE,gBAAgB;YACrB,KAAK,EAAE,mBAAmB,CAAC,IAAI,EAAE,CAAC,CAAC;SACpC,CAAC;IACJ,CAAC;IAED,IAAI,UAAU,CAAC,CAAC,CAAC,KAAK,QAAQ,EAAE,CAAC;QAC/B,OAAO;YACL,IAAI,EAAE,QAAQ;YACd,GAAG,EAAE,QAAQ;YACb,KAAK,EAAE,mBAAmB,CAAC,IAAI,EAAE,CAAC,CAAC;SACpC,CAAC;IACJ,CAAC;IAED,IAAI,UAAU,CAAC,CAAC,CAAC,KAAK,QAAQ,IAAI,UAAU,CAAC,CAAC,CAAC,KAAK,UAAU,EAAE,CAAC;QAC/D,OAAO;YACL,IAAI,EAAE,iBAAiB;YACvB,GAAG,EAAE,iBAAiB;YACtB,KAAK,EAAE,mBAAmB,CAAC,IAAI,EAAE,CAAC,CAAC;SACpC,CAAC;IACJ,CAAC;IAED,IAAI,UAAU,CAAC,CAAC,CAAC,KAAK,QAAQ,IAAI,UAAU,CAAC,CAAC,CAAC,KAAK,OAAO,EAAE,CAAC;QAC5D,OAAO;YACL,IAAI,EAAE,cAAc;YACpB,GAAG,EAAE,cAAc;YACnB,MAAM,EAAE,iBAAiB,CAAC,IAAI,CAAC;SAChC,CAAC;IACJ,CAAC;IAED,OAAO;QACL,IAAI,EAAE,SAAS;QACf,GAAG,EAAE,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,SAAS;KAClD,CAAC;AACJ,CAAC;AAED,SAAgB,eAAe,CAAC,IAAuB;IACrD,OAAO,YAAY,CAAC,IAAI,CAAC,CAAC;AAC5B,CAAC;AAED,SAAS,mBAAmB,CAAC,IAAuB,EAAE,eAAuB;IAC3E,MAAM,MAAM,GAAa,EAAE,CAAC;IAC5B,IAAI,kBAAkB,GAAG,CAAC,CAAC;IAE3B,KAAK,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC,MAAM,EAAE,KAAK,IAAI,CAAC,EAAE,CAAC;QACpD,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;QAC1B,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,kBAAkB,GAAG,eAAe,EAAE,CAAC;YACpE,kBAAkB,IAAI,CAAC,CAAC;YACxB,SAAS;QACX,CAAC;QAED,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IACrB,CAAC;IAED,OAAO,MAAM,CAAC;AAChB,CAAC;AAED,SAAS,aAAa;IACpB,OAAO;QACL,kBAAkB;QAClB,EAAE;QACF,QAAQ;QACR,uCAAuC;QACvC,+BAA+B;QAC/B,wCAAwC;QACxC,0FAA0F;QAC1F,0BAA0B;QAC1B,uBAAuB;QACvB,EAAE;QACF,mBAAmB;QACnB,+DAA+D;QAC/D,2EAA2E;QAC3E,sEAAsE;QACtE,4EAA4E;QAC5E,EAAE;QACF,eAAe;QACf,mBAAmB;QACnB,iBAAiB;QACjB,oBAAoB;QACpB,mBAAmB;QACnB,sBAAsB;QACtB,wBAAwB;QACxB,4BAA4B;QAC5B,4BAA4B;QAC5B,+CAA+C;QAC/C,iDAAiD;QACjD,oDAAoD;QACpD,eAAe;QACf,kBAAkB;QAClB,eAAe;QACf,aAAa;QACb,aAAa;KACd,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;AACtB,CAAC;AAED,SAAS,iBAAiB,CAAC,IAAuB;IAChD,KAAK,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC,MAAM,EAAE,KAAK,IAAI,CAAC,EAAE,CAAC;QACpD,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;QAC1B,IAAI,KAAK,KAAK,UAAU,EAAE,CAAC;YACzB,OAAO,oBAAoB,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC;QAC/C,CAAC;QAED,IAAI,KAAK,CAAC,UAAU,CAAC,WAAW,CAAC,EAAE,CAAC;YAClC,OAAO,oBAAoB,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAC;QAC/D,CAAC;IACH,CAAC;IAED,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;AAC5D,CAAC;AAED,SAAS,oBAAoB,CAAC,KAAyB;IACrD,IAAI,CAAC,KAAK,EAAE,CAAC;QACX,MAAM,IAAI,KAAK,CAAC,4BAA4B,CAAC,CAAC;IAChD,CAAC;IAED,MAAM,UAAU,GAAG,KAAK,CAAC,IAAI,EAAE,CAAC,WAAW,EAAE,CAAC;IAC9C,IACE,UAAU,KAAK,aAAa;QAC5B,UAAU,KAAK,gBAAgB;QAC/B,UAAU,KAAK,QAAQ;QACvB,UAAU,KAAK,iBAAiB,EAChC,CAAC;QACD,OAAO,UAAU,CAAC;IACpB,CAAC;IAED,MAAM,IAAI,KAAK,CAAC,gFAAgF,CAAC,CAAC;AACpG,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smart-commit-copilot-cli",
3
- "version": "0.1.3",
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",