voice-mode 4.3.2__py3-none-any.whl → 4.5.0__py3-none-any.whl

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 (80) hide show
  1. voice_mode/__version__.py +1 -1
  2. voice_mode/cli.py +82 -5
  3. voice_mode/cli_commands/claude.py +6 -199
  4. voice_mode/cli_commands/hook.py +13 -16
  5. voice_mode/cli_commands/transcribe.py +7 -6
  6. voice_mode/config.py +1 -1
  7. voice_mode/conversation_logger.py +6 -0
  8. voice_mode/core.py +9 -2
  9. voice_mode/frontend/.next/BUILD_ID +1 -1
  10. voice_mode/frontend/.next/app-build-manifest.json +5 -5
  11. voice_mode/frontend/.next/build-manifest.json +3 -3
  12. voice_mode/frontend/.next/next-minimal-server.js.nft.json +1 -1
  13. voice_mode/frontend/.next/next-server.js.nft.json +1 -1
  14. voice_mode/frontend/.next/prerender-manifest.json +1 -1
  15. voice_mode/frontend/.next/required-server-files.json +1 -1
  16. voice_mode/frontend/.next/server/app/_not-found/page.js +1 -1
  17. voice_mode/frontend/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  18. voice_mode/frontend/.next/server/app/_not-found.html +1 -1
  19. voice_mode/frontend/.next/server/app/_not-found.rsc +1 -1
  20. voice_mode/frontend/.next/server/app/api/connection-details/route.js +2 -2
  21. voice_mode/frontend/.next/server/app/favicon.ico/route.js +2 -2
  22. voice_mode/frontend/.next/server/app/index.html +1 -1
  23. voice_mode/frontend/.next/server/app/index.rsc +2 -2
  24. voice_mode/frontend/.next/server/app/page.js +2 -2
  25. voice_mode/frontend/.next/server/app/page_client-reference-manifest.js +1 -1
  26. voice_mode/frontend/.next/server/chunks/994.js +2 -2
  27. voice_mode/frontend/.next/server/middleware-build-manifest.js +1 -1
  28. voice_mode/frontend/.next/server/next-font-manifest.js +1 -1
  29. voice_mode/frontend/.next/server/next-font-manifest.json +1 -1
  30. voice_mode/frontend/.next/server/pages/404.html +1 -1
  31. voice_mode/frontend/.next/server/pages/500.html +1 -1
  32. voice_mode/frontend/.next/server/server-reference-manifest.json +1 -1
  33. voice_mode/frontend/.next/standalone/.next/BUILD_ID +1 -1
  34. voice_mode/frontend/.next/standalone/.next/app-build-manifest.json +5 -5
  35. voice_mode/frontend/.next/standalone/.next/build-manifest.json +3 -3
  36. voice_mode/frontend/.next/standalone/.next/prerender-manifest.json +1 -1
  37. voice_mode/frontend/.next/standalone/.next/required-server-files.json +1 -1
  38. voice_mode/frontend/.next/standalone/.next/server/app/_not-found/page.js +1 -1
  39. voice_mode/frontend/.next/standalone/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  40. voice_mode/frontend/.next/standalone/.next/server/app/_not-found.html +1 -1
  41. voice_mode/frontend/.next/standalone/.next/server/app/_not-found.rsc +1 -1
  42. voice_mode/frontend/.next/standalone/.next/server/app/api/connection-details/route.js +2 -2
  43. voice_mode/frontend/.next/standalone/.next/server/app/favicon.ico/route.js +2 -2
  44. voice_mode/frontend/.next/standalone/.next/server/app/index.html +1 -1
  45. voice_mode/frontend/.next/standalone/.next/server/app/index.rsc +2 -2
  46. voice_mode/frontend/.next/standalone/.next/server/app/page.js +2 -2
  47. voice_mode/frontend/.next/standalone/.next/server/app/page_client-reference-manifest.js +1 -1
  48. voice_mode/frontend/.next/standalone/.next/server/chunks/994.js +2 -2
  49. voice_mode/frontend/.next/standalone/.next/server/middleware-build-manifest.js +1 -1
  50. voice_mode/frontend/.next/standalone/.next/server/next-font-manifest.js +1 -1
  51. voice_mode/frontend/.next/standalone/.next/server/next-font-manifest.json +1 -1
  52. voice_mode/frontend/.next/standalone/.next/server/pages/404.html +1 -1
  53. voice_mode/frontend/.next/standalone/.next/server/pages/500.html +1 -1
  54. voice_mode/frontend/.next/standalone/.next/server/server-reference-manifest.json +1 -1
  55. voice_mode/frontend/.next/standalone/server.js +1 -1
  56. voice_mode/frontend/.next/static/chunks/app/layout-d3ec7f6f14ea7396.js +1 -0
  57. voice_mode/frontend/.next/static/chunks/app/{page-728ce55710c9bd80.js → page-471796963fb1a4bd.js} +1 -1
  58. voice_mode/frontend/.next/static/chunks/{main-app-991c8c54319817e0.js → main-app-78da5e437b6a2a9f.js} +1 -1
  59. voice_mode/frontend/.next/trace +43 -43
  60. voice_mode/frontend/.next/types/app/api/connection-details/route.ts +1 -1
  61. voice_mode/frontend/.next/types/app/layout.ts +1 -1
  62. voice_mode/frontend/.next/types/app/page.ts +1 -1
  63. voice_mode/frontend/package-lock.json +26 -15
  64. voice_mode/provider_discovery.py +55 -79
  65. voice_mode/providers.py +61 -45
  66. voice_mode/simple_failover.py +41 -12
  67. voice_mode/statistics_tracking.py +42 -0
  68. voice_mode/tools/__init__.py +150 -16
  69. voice_mode/tools/converse.py +149 -338
  70. voice_mode/tools/diagnostics.py +2 -1
  71. voice_mode/tools/statistics.py +0 -33
  72. voice_mode/tools/voice_registry.py +24 -28
  73. {voice_mode-4.3.2.dist-info → voice_mode-4.5.0.dist-info}/METADATA +36 -41
  74. {voice_mode-4.3.2.dist-info → voice_mode-4.5.0.dist-info}/RECORD +78 -78
  75. voice_mode/frontend/.next/static/chunks/app/layout-d89915a94cb8f604.js +0 -1
  76. voice_mode/tools/claude_thinking.py +0 -285
  77. /voice_mode/frontend/.next/static/{-9MkXl-xGB2BLmGEAZVmg → Ni4GIqyDdn0QehvmlLBZg}/_buildManifest.js +0 -0
  78. /voice_mode/frontend/.next/static/{-9MkXl-xGB2BLmGEAZVmg → Ni4GIqyDdn0QehvmlLBZg}/_ssgManifest.js +0 -0
  79. {voice_mode-4.3.2.dist-info → voice_mode-4.5.0.dist-info}/WHEEL +0 -0
  80. {voice_mode-4.3.2.dist-info → voice_mode-4.5.0.dist-info}/entry_points.txt +0 -0
@@ -1,285 +0,0 @@
1
- """Claude Code message extraction tools for Think Out Loud mode and conversation analysis."""
2
-
3
- import json
4
- import logging
5
- import os
6
- from pathlib import Path
7
- from typing import Optional, List, Dict, Any
8
- from datetime import datetime
9
-
10
- from voice_mode.server import mcp
11
- from voice_mode.config import THINK_OUT_LOUD_ENABLED
12
-
13
- logger = logging.getLogger("voice-mode")
14
-
15
-
16
- def find_claude_log_file(working_dir: Optional[str] = None) -> Optional[Path]:
17
- """Find the current Claude Code conversation log file.
18
-
19
- Args:
20
- working_dir: The working directory (defaults to CWD)
21
-
22
- Returns:
23
- Path to the most recent JSONL log file, or None if not found
24
- """
25
- if working_dir is None:
26
- working_dir = os.getcwd()
27
-
28
- logger.debug(f"Looking for Claude logs in working_dir: {working_dir}")
29
-
30
- # Transform path: /Users/admin/Code/github.com/project → -Users-admin-Code-github-com-project
31
- # Note: Both slashes and dots are replaced with hyphens
32
- project_dir = working_dir.replace('/', '-').replace('.', '-')
33
- logger.debug(f"Transformed project dir: {project_dir}")
34
-
35
- # Build path to Claude logs
36
- claude_base = Path.home() / '.claude' / 'projects'
37
- log_dir = claude_base / project_dir
38
- logger.debug(f"Claude log directory: {log_dir}")
39
-
40
- if not log_dir.exists():
41
- logger.warning(f"Claude log directory does not exist: {log_dir}")
42
- return None
43
-
44
- # Find most recent .jsonl file
45
- log_files = sorted(
46
- log_dir.glob('*.jsonl'),
47
- key=lambda p: p.stat().st_mtime,
48
- reverse=True
49
- )
50
-
51
- if log_files:
52
- logger.info(f"Found {len(log_files)} Claude log files, using most recent: {log_files[0].name}")
53
- return log_files[0]
54
- else:
55
- logger.warning(f"No .jsonl files found in {log_dir}")
56
- return None
57
-
58
-
59
- def extract_messages_from_log(log_file: Path, last_n: int = 2, message_types: Optional[List[str]] = None) -> List[Dict[str, Any]]:
60
- """Extract messages from Claude Code JSONL log.
61
-
62
- Args:
63
- log_file: Path to the JSONL log file
64
- last_n: Number of most recent messages to return (default: 2)
65
- message_types: Optional list of message types to filter ('user', 'assistant', 'system')
66
- If None, returns all message types
67
-
68
- Returns:
69
- List of messages with metadata
70
- """
71
- logger.debug(f"Extracting {last_n} messages from {log_file}, types={message_types}")
72
- messages = []
73
-
74
- try:
75
- with open(log_file, 'r') as f:
76
- lines = f.readlines()
77
-
78
- logger.debug(f"Read {len(lines)} lines from log file")
79
-
80
- # Process lines in reverse to get most recent first
81
- for i, line in enumerate(reversed(lines)):
82
- if not line.strip():
83
- continue
84
-
85
- try:
86
- entry = json.loads(line)
87
- entry_type = entry.get('type')
88
-
89
- # Filter by message type if specified
90
- if message_types and entry_type not in message_types:
91
- continue
92
-
93
- # Extract user or assistant messages
94
- if entry_type in ['user', 'assistant']:
95
- logger.debug(f"Found {entry_type} message at line {len(lines) - i}")
96
- message = entry.get('message', {})
97
-
98
- # Build message info
99
- message_info = {
100
- 'type': entry_type,
101
- 'role': message.get('role'),
102
- 'content': message.get('content', []),
103
- 'timestamp': entry.get('timestamp'),
104
- 'uuid': entry.get('uuid'),
105
- 'model': message.get('model') if entry_type == 'assistant' else None
106
- }
107
-
108
- # Add usage info for assistant messages
109
- if entry_type == 'assistant' and 'usage' in message:
110
- message_info['usage'] = message['usage']
111
-
112
- messages.append(message_info)
113
-
114
- if len(messages) >= last_n:
115
- logger.info(f"Extracted {len(messages)} messages successfully")
116
- return messages
117
-
118
- except json.JSONDecodeError as e:
119
- logger.debug(f"Skipping invalid JSON at line {len(lines) - i}: {e}")
120
- continue
121
-
122
- except Exception as e:
123
- logger.error(f"Error reading log file {log_file}: {e}")
124
-
125
- logger.info(f"Extracted {len(messages)} messages (requested {last_n})")
126
- return messages
127
-
128
-
129
- def extract_thinking_from_messages(messages: List[Dict[str, Any]]) -> List[str]:
130
- """Extract thinking content from a list of messages.
131
-
132
- Args:
133
- messages: List of message dictionaries
134
-
135
- Returns:
136
- List of thinking text strings
137
- """
138
- thinking_texts = []
139
-
140
- for message in messages:
141
- if message.get('type') == 'assistant':
142
- content = message.get('content', [])
143
- for item in content:
144
- if isinstance(item, dict) and item.get('type') == 'thinking':
145
- text = item.get('text', '').strip()
146
- if text:
147
- thinking_texts.append(text)
148
-
149
- return thinking_texts
150
-
151
-
152
- @mcp.tool
153
- def get_claude_messages(
154
- last_n: int = 2,
155
- working_dir: Optional[str] = None,
156
- message_types: Optional[List[str]] = None,
157
- format: str = "full"
158
- ) -> str:
159
- """Extract messages from Claude Code conversation logs.
160
-
161
- This tool reads Claude Code's conversation logs to extract recent messages
162
- for Think Out Loud mode and conversation analysis.
163
-
164
- Args:
165
- last_n: Number of most recent messages to return (default: 2)
166
- working_dir: Working directory to find logs for (defaults to CWD)
167
- message_types: Optional list to filter by type ('user', 'assistant').
168
- If None, returns all types.
169
- format: Output format - 'full' (complete message), 'text' (just text content),
170
- 'thinking' (just thinking content)
171
-
172
- Returns:
173
- The extracted messages in the requested format
174
- """
175
- logger.debug(f"get_claude_messages called: last_n={last_n}, working_dir={working_dir}, types={message_types}, format={format}")
176
-
177
- # Check if Think Out Loud mode is enabled
178
- if not THINK_OUT_LOUD_ENABLED:
179
- logger.warning("Think Out Loud mode is not enabled")
180
- return "Think Out Loud mode is not enabled. Set VOICEMODE_THINK_OUT_LOUD=true to enable."
181
-
182
- # Find the log file
183
- log_file = find_claude_log_file(working_dir)
184
- if not log_file:
185
- return f"Could not find Claude Code logs for directory: {working_dir or os.getcwd()}"
186
-
187
- # Extract messages
188
- messages = extract_messages_from_log(log_file, last_n, message_types)
189
-
190
- if not messages:
191
- return f"No messages found in recent Claude Code logs."
192
-
193
- # Format output based on requested format
194
- if format == "thinking":
195
- # Extract only thinking content
196
- thinking_texts = extract_thinking_from_messages(messages)
197
- if not thinking_texts:
198
- return "No thinking content found in recent messages."
199
- if len(thinking_texts) == 1:
200
- return thinking_texts[0]
201
- return "\n\n=== Next Thinking ===\n\n".join(thinking_texts)
202
-
203
- elif format == "text":
204
- # Extract just the text content
205
- result = []
206
- for msg in messages:
207
- content_text = []
208
- for item in msg.get('content', []):
209
- if isinstance(item, dict):
210
- if item.get('type') == 'text':
211
- content_text.append(item.get('text', ''))
212
- elif item.get('type') == 'thinking':
213
- content_text.append(f"[Thinking: {item.get('text', '')}]")
214
- if content_text:
215
- result.append(f"{msg['type'].title()}: {' '.join(content_text)}")
216
- return "\n\n".join(result)
217
-
218
- else: # format == "full"
219
- # Return complete message structure
220
- result = []
221
- for i, msg in enumerate(messages, 1):
222
- result.append(f"=== Message {i} ===")
223
- result.append(f"Type: {msg['type']}")
224
- result.append(f"Timestamp: {msg.get('timestamp', 'Unknown')}")
225
- if msg.get('model'):
226
- result.append(f"Model: {msg['model']}")
227
-
228
- # Format content
229
- content = msg.get('content', [])
230
- if content:
231
- result.append("Content:")
232
- for item in content:
233
- if isinstance(item, dict):
234
- item_type = item.get('type', 'unknown')
235
- if item_type == 'text':
236
- result.append(f" [Text]: {item.get('text', '')}")
237
- elif item_type == 'thinking':
238
- result.append(f" [Thinking]: {item.get('text', '')}")
239
- elif item_type == 'tool_use':
240
- result.append(f" [Tool Use]: {item.get('name', '')}")
241
- elif item_type == 'tool_result':
242
- result.append(f" [Tool Result]: {item.get('content', '')[:100]}...")
243
- result.append("")
244
-
245
- return "\n".join(result).strip()
246
-
247
-
248
- @mcp.tool
249
- def check_claude_context() -> str:
250
- """Check if running in Claude Code context.
251
-
252
- Returns information about the Claude Code environment including:
253
- - Whether Claude Code logs are accessible
254
- - Current working directory
255
- - Log file location if found
256
- """
257
- working_dir = os.getcwd()
258
- log_file = find_claude_log_file(working_dir)
259
-
260
- result = []
261
- result.append(f"Working Directory: {working_dir}")
262
- result.append(f"Claude Logs Found: {'Yes' if log_file else 'No'}")
263
-
264
- if log_file:
265
- result.append(f"Log File: {log_file}")
266
- result.append(f"Log Size: {log_file.stat().st_size:,} bytes")
267
-
268
- # Check for recent activity
269
- mtime = datetime.fromtimestamp(log_file.stat().st_mtime)
270
- now = datetime.now()
271
- age = now - mtime
272
-
273
- if age.total_seconds() < 60:
274
- result.append(f"Last Updated: {int(age.total_seconds())} seconds ago")
275
- elif age.total_seconds() < 3600:
276
- result.append(f"Last Updated: {int(age.total_seconds() / 60)} minutes ago")
277
- else:
278
- result.append(f"Last Updated: {int(age.total_seconds() / 3600)} hours ago")
279
- else:
280
- project_dir = working_dir.replace('/', '-')
281
- expected_path = Path.home() / '.claude' / 'projects' / project_dir
282
- result.append(f"Expected Log Location: {expected_path}")
283
- result.append("Note: Logs are only created when using Claude Code (claude.ai/code)")
284
-
285
- return "\n".join(result)