tissues 0.4.0 → 0.4.1

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 (3) hide show
  1. package/README.md +6 -0
  2. package/package.json +1 -1
  3. package/src/cli.js +3 -1
package/README.md CHANGED
@@ -12,6 +12,12 @@ Create structured, deduplicated GitHub issues from the command line — with cir
12
12
 
13
13
  ## Install
14
14
 
15
+ **Homebrew (recommended):**
16
+ ```bash
17
+ brew install calebogden/tap/tissues
18
+ ```
19
+
20
+ **npm:**
15
21
  ```bash
16
22
  npm install -g tissues
17
23
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tissues",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "AI-enhanced GitHub issue creation with built-in safety guardrails. Wraps gh CLI with circuit breakers, rate limiting, dedup, and templates.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -1,4 +1,6 @@
1
1
  import { Command } from 'commander'
2
+ import { createRequire } from 'module'
3
+ const { version } = createRequire(import.meta.url)('../package.json')
2
4
  import { authCommand } from './commands/auth.js'
3
5
  import { openCommand } from './commands/open.js'
4
6
  import { createCommand } from './commands/create.js'
@@ -26,7 +28,7 @@ function authDescription() {
26
28
  program
27
29
  .name('tissues')
28
30
  .description('AI-enhanced GitHub issue creation from the command line.')
29
- .version('0.3.0')
31
+ .version(version)
30
32
  .hook('preAction', (_thisCommand, actionCommand) => {
31
33
  const name = actionCommand.name()
32
34