@pkprosol/coach 1.0.3 → 1.0.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.
@@ -2,7 +2,7 @@ import { spawn } from "node:child_process";
2
2
  import { DIMENSIONS } from "./types.js";
3
3
  export function runClaude(prompt) {
4
4
  return new Promise((resolve, reject) => {
5
- const proc = spawn("claude", ["-p", "--output-format", "text", "--max-tokens", "1024"], {
5
+ const proc = spawn("claude", ["-p", "--output-format", "text"], {
6
6
  stdio: ["pipe", "pipe", "pipe"],
7
7
  });
8
8
  let stdout = "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pkprosol/coach",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "Daily AI work coach — analyzes your Claude Code & Claude App sessions to deliver one lesson + one tip daily",
5
5
  "type": "module",
6
6
  "bin": {