@towles/tool 0.0.108 → 0.0.109

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@towles/tool",
3
- "version": "0.0.108",
3
+ "version": "0.0.109",
4
4
  "description": "One off quality of life scripts that I use on a daily basis.",
5
5
  "homepage": "https://github.com/ChrisTowles/towles-tool#readme",
6
6
  "bugs": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tt-ac",
3
3
  "description": "Auto-Claude pipeline: automated issue-to-PR workflows using Claude Code",
4
- "version": "0.0.108",
4
+ "version": "0.0.109",
5
5
  "author": {
6
6
  "name": "Chris Towles"
7
7
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tt",
3
3
  "description": "Core dev workflow commands: interview-me, write-prd, prd-to-issues, tdd, improve-architecture, refine-text, task.",
4
- "version": "0.0.108",
4
+ "version": "0.0.109",
5
5
  "author": {
6
6
  "name": "Chris Towles"
7
7
  }
package/src/cli.ts CHANGED
@@ -1,7 +1,8 @@
1
1
  import { defineCommand } from "citty";
2
+ import { version } from "../package.json";
2
3
 
3
4
  export const main = defineCommand({
4
- meta: { name: "tt", description: "towles-tool — personal CLI utilities" },
5
+ meta: { name: "tt", version, description: "towles-tool — personal CLI utilities" },
5
6
  subCommands: {
6
7
  config: () => import("./commands/config.js").then((m) => m.default),
7
8
  doctor: () => import("./commands/doctor.js").then((m) => m.default),