@masslessai/push-todo 4.2.6 → 4.2.7

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 (2) hide show
  1. package/lib/daemon.js +2 -0
  2. package/package.json +1 -1
package/lib/daemon.js CHANGED
@@ -2136,6 +2136,7 @@ function extractSemanticSummary(worktreePath, sessionId) {
2136
2136
  const result = execFileSync('claude', [
2137
2137
  '--resume', sessionId,
2138
2138
  '--print',
2139
+ '--output-format', 'text',
2139
2140
  'Summarize what you accomplished in 1-2 sentences. Be specific about outcomes (what was built, fixed, drafted), not process. If you failed or got stuck, explain what went wrong. If no code changes were made, say so. Do not use markdown.'
2140
2141
  ], {
2141
2142
  cwd: worktreePath,
@@ -2170,6 +2171,7 @@ function extractVisualArtifact(worktreePath, sessionId) {
2170
2171
  const result = execFileSync('claude', [
2171
2172
  '--resume', sessionId,
2172
2173
  '--print',
2174
+ '--output-format', 'text',
2173
2175
  'Generate a Mermaid diagram showing the key architectural change or flow you implemented. ' +
2174
2176
  'Use graph LR for component relationships, sequenceDiagram for API/data flow, ' +
2175
2177
  'or gitGraph for branch operations. Keep it simple (5-10 nodes max). ' +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@masslessai/push-todo",
3
- "version": "4.2.6",
3
+ "version": "4.2.7",
4
4
  "description": "Voice tasks from Push iOS app for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {