@towles/tool 0.0.114 → 0.0.116

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.114",
3
+ "version": "0.0.116",
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": {
@@ -78,7 +78,7 @@
78
78
  "vitest": "^4.0.17"
79
79
  },
80
80
  "simple-git-hooks": {
81
- "pre-commit": "bun run format && bun run lint:fix && bun run typecheck && claude plugin validate ."
81
+ "pre-commit": "bun run format && bun run lint:fix && git add -u && bun run typecheck && claude plugin validate ."
82
82
  },
83
83
  "patchedDependencies": {
84
84
  "prompts@2.4.2": "patches/prompts.patch"
@@ -1,4 +1,11 @@
1
- export type AgentStatus = "idle" | "running" | "done" | "error" | "waiting" | "question" | "interrupted";
1
+ export type AgentStatus =
2
+ | "idle"
3
+ | "running"
4
+ | "done"
5
+ | "error"
6
+ | "waiting"
7
+ | "question"
8
+ | "interrupted";
2
9
 
3
10
  export interface AgentEvent {
4
11
  agent: string;