code-puppy 0.0.341__py3-none-any.whl → 0.0.361__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 (86) hide show
  1. code_puppy/agents/__init__.py +2 -0
  2. code_puppy/agents/agent_manager.py +49 -0
  3. code_puppy/agents/agent_pack_leader.py +383 -0
  4. code_puppy/agents/agent_qa_kitten.py +12 -7
  5. code_puppy/agents/agent_terminal_qa.py +323 -0
  6. code_puppy/agents/base_agent.py +34 -252
  7. code_puppy/agents/event_stream_handler.py +350 -0
  8. code_puppy/agents/pack/__init__.py +34 -0
  9. code_puppy/agents/pack/bloodhound.py +304 -0
  10. code_puppy/agents/pack/husky.py +321 -0
  11. code_puppy/agents/pack/retriever.py +393 -0
  12. code_puppy/agents/pack/shepherd.py +348 -0
  13. code_puppy/agents/pack/terrier.py +287 -0
  14. code_puppy/agents/pack/watchdog.py +367 -0
  15. code_puppy/agents/subagent_stream_handler.py +276 -0
  16. code_puppy/api/__init__.py +13 -0
  17. code_puppy/api/app.py +169 -0
  18. code_puppy/api/main.py +21 -0
  19. code_puppy/api/pty_manager.py +446 -0
  20. code_puppy/api/routers/__init__.py +12 -0
  21. code_puppy/api/routers/agents.py +36 -0
  22. code_puppy/api/routers/commands.py +217 -0
  23. code_puppy/api/routers/config.py +74 -0
  24. code_puppy/api/routers/sessions.py +232 -0
  25. code_puppy/api/templates/terminal.html +361 -0
  26. code_puppy/api/websocket.py +154 -0
  27. code_puppy/callbacks.py +73 -0
  28. code_puppy/claude_cache_client.py +249 -34
  29. code_puppy/cli_runner.py +4 -3
  30. code_puppy/command_line/add_model_menu.py +8 -9
  31. code_puppy/command_line/core_commands.py +85 -0
  32. code_puppy/command_line/mcp/catalog_server_installer.py +5 -6
  33. code_puppy/command_line/mcp/custom_server_form.py +54 -19
  34. code_puppy/command_line/mcp/custom_server_installer.py +8 -9
  35. code_puppy/command_line/mcp/handler.py +0 -2
  36. code_puppy/command_line/mcp/help_command.py +1 -5
  37. code_puppy/command_line/mcp/start_command.py +36 -18
  38. code_puppy/command_line/onboarding_slides.py +0 -1
  39. code_puppy/command_line/prompt_toolkit_completion.py +16 -10
  40. code_puppy/command_line/utils.py +54 -0
  41. code_puppy/config.py +66 -62
  42. code_puppy/mcp_/async_lifecycle.py +35 -4
  43. code_puppy/mcp_/managed_server.py +49 -20
  44. code_puppy/mcp_/manager.py +81 -52
  45. code_puppy/messaging/__init__.py +15 -0
  46. code_puppy/messaging/message_queue.py +11 -23
  47. code_puppy/messaging/messages.py +27 -0
  48. code_puppy/messaging/queue_console.py +1 -1
  49. code_puppy/messaging/rich_renderer.py +36 -1
  50. code_puppy/messaging/spinner/__init__.py +20 -2
  51. code_puppy/messaging/subagent_console.py +461 -0
  52. code_puppy/model_utils.py +54 -0
  53. code_puppy/plugins/antigravity_oauth/antigravity_model.py +90 -19
  54. code_puppy/plugins/antigravity_oauth/transport.py +1 -0
  55. code_puppy/plugins/frontend_emitter/__init__.py +25 -0
  56. code_puppy/plugins/frontend_emitter/emitter.py +121 -0
  57. code_puppy/plugins/frontend_emitter/register_callbacks.py +261 -0
  58. code_puppy/prompts/antigravity_system_prompt.md +1 -0
  59. code_puppy/status_display.py +6 -2
  60. code_puppy/tools/__init__.py +37 -1
  61. code_puppy/tools/agent_tools.py +139 -36
  62. code_puppy/tools/browser/__init__.py +37 -0
  63. code_puppy/tools/browser/browser_control.py +6 -6
  64. code_puppy/tools/browser/browser_interactions.py +21 -20
  65. code_puppy/tools/browser/browser_locators.py +9 -9
  66. code_puppy/tools/browser/browser_navigation.py +7 -7
  67. code_puppy/tools/browser/browser_screenshot.py +78 -140
  68. code_puppy/tools/browser/browser_scripts.py +15 -13
  69. code_puppy/tools/browser/camoufox_manager.py +226 -64
  70. code_puppy/tools/browser/chromium_terminal_manager.py +259 -0
  71. code_puppy/tools/browser/terminal_command_tools.py +521 -0
  72. code_puppy/tools/browser/terminal_screenshot_tools.py +556 -0
  73. code_puppy/tools/browser/terminal_tools.py +525 -0
  74. code_puppy/tools/command_runner.py +292 -101
  75. code_puppy/tools/common.py +176 -1
  76. code_puppy/tools/display.py +84 -0
  77. code_puppy/tools/subagent_context.py +158 -0
  78. {code_puppy-0.0.341.dist-info → code_puppy-0.0.361.dist-info}/METADATA +13 -11
  79. {code_puppy-0.0.341.dist-info → code_puppy-0.0.361.dist-info}/RECORD +84 -53
  80. code_puppy/command_line/mcp/add_command.py +0 -170
  81. code_puppy/tools/browser/vqa_agent.py +0 -90
  82. {code_puppy-0.0.341.data → code_puppy-0.0.361.data}/data/code_puppy/models.json +0 -0
  83. {code_puppy-0.0.341.data → code_puppy-0.0.361.data}/data/code_puppy/models_dev_api.json +0 -0
  84. {code_puppy-0.0.341.dist-info → code_puppy-0.0.361.dist-info}/WHEEL +0 -0
  85. {code_puppy-0.0.341.dist-info → code_puppy-0.0.361.dist-info}/entry_points.txt +0 -0
  86. {code_puppy-0.0.341.dist-info → code_puppy-0.0.361.dist-info}/licenses/LICENSE +0 -0
@@ -5,6 +5,11 @@ ClaudeCacheAsyncClient: httpx client that tries to patch /v1/messages bodies.
5
5
  We now also expose `patch_anthropic_client_messages` which monkey-patches
6
6
  AsyncAnthropic.messages.create() so we can inject cache_control BEFORE
7
7
  serialization, avoiding httpx/Pydantic internals.
8
+
9
+ This module also handles:
10
+ - Tool name prefixing/unprefixing for Claude Code OAuth compatibility
11
+ - Header transformations (anthropic-beta, user-agent)
12
+ - URL modifications (adding ?beta=true query param)
8
13
  """
9
14
 
10
15
  from __future__ import annotations
@@ -12,8 +17,10 @@ from __future__ import annotations
12
17
  import base64
13
18
  import json
14
19
  import logging
20
+ import re
15
21
  import time
16
22
  from typing import Any, Callable, MutableMapping
23
+ from urllib.parse import parse_qs, urlencode, urlparse, urlunparse
17
24
 
18
25
  import httpx
19
26
 
@@ -22,6 +29,13 @@ logger = logging.getLogger(__name__)
22
29
  # Refresh token if it's older than 1 hour (3600 seconds)
23
30
  TOKEN_MAX_AGE_SECONDS = 3600
24
31
 
32
+ # Tool name prefix for Claude Code OAuth compatibility
33
+ # Tools are prefixed on outgoing requests and unprefixed on incoming responses
34
+ TOOL_PREFIX = "cp_"
35
+
36
+ # User-Agent to send with Claude Code OAuth requests
37
+ CLAUDE_CLI_USER_AGENT = "claude-cli/2.1.2 (external, cli)"
38
+
25
39
  try:
26
40
  from anthropic import AsyncAnthropic
27
41
  except ImportError: # pragma: no cover - optional dep
@@ -29,6 +43,22 @@ except ImportError: # pragma: no cover - optional dep
29
43
 
30
44
 
31
45
  class ClaudeCacheAsyncClient(httpx.AsyncClient):
46
+ """Async HTTP client with Claude Code OAuth transformations.
47
+
48
+ Handles:
49
+ - Cache control injection for prompt caching
50
+ - Tool name prefixing on outgoing requests
51
+ - Tool name unprefixing on incoming streaming responses
52
+ - Header transformations (anthropic-beta, user-agent)
53
+ - URL modifications (adding ?beta=true)
54
+ - Proactive token refresh
55
+ """
56
+
57
+ # Regex pattern for unprefixing tool names in streaming responses
58
+ _TOOL_UNPREFIX_PATTERN = re.compile(
59
+ rf'"name"\s*:\s*"{re.escape(TOOL_PREFIX)}([^"]+)"'
60
+ )
61
+
32
62
  def _get_jwt_age_seconds(self, token: str | None) -> float | None:
33
63
  """Decode a JWT and return its age in seconds.
34
64
 
@@ -107,9 +137,100 @@ class ClaudeCacheAsyncClient(httpx.AsyncClient):
107
137
  )
108
138
  return should_refresh
109
139
 
140
+ @staticmethod
141
+ def _prefix_tool_names(body: bytes) -> bytes | None:
142
+ """Prefix all tool names in the request body with TOOL_PREFIX.
143
+
144
+ This is required for Claude Code OAuth compatibility - tools must be
145
+ prefixed on outgoing requests and unprefixed on incoming responses.
146
+ """
147
+ try:
148
+ data = json.loads(body.decode("utf-8"))
149
+ except Exception:
150
+ return None
151
+
152
+ if not isinstance(data, dict):
153
+ return None
154
+
155
+ tools = data.get("tools")
156
+ if not isinstance(tools, list) or not tools:
157
+ return None
158
+
159
+ modified = False
160
+ for tool in tools:
161
+ if isinstance(tool, dict) and "name" in tool:
162
+ name = tool["name"]
163
+ if name and not name.startswith(TOOL_PREFIX):
164
+ tool["name"] = f"{TOOL_PREFIX}{name}"
165
+ modified = True
166
+
167
+ if not modified:
168
+ return None
169
+
170
+ return json.dumps(data).encode("utf-8")
171
+
172
+ def _unprefix_tool_names_in_text(self, text: str) -> str:
173
+ """Remove TOOL_PREFIX from tool names in streaming response text."""
174
+ return self._TOOL_UNPREFIX_PATTERN.sub(r'"name": "\1"', text)
175
+
176
+ @staticmethod
177
+ def _transform_headers_for_claude_code(
178
+ headers: MutableMapping[str, str],
179
+ ) -> None:
180
+ """Transform headers for Claude Code OAuth compatibility.
181
+
182
+ - Sets user-agent to claude-cli
183
+ - Merges anthropic-beta headers appropriately
184
+ - Removes x-api-key (using Bearer auth instead)
185
+ """
186
+ # Set user-agent
187
+ headers["user-agent"] = CLAUDE_CLI_USER_AGENT
188
+
189
+ # Handle anthropic-beta header
190
+ incoming_beta = headers.get("anthropic-beta", "")
191
+ incoming_betas = [b.strip() for b in incoming_beta.split(",") if b.strip()]
192
+
193
+ # Check if claude-code beta was explicitly requested
194
+ include_claude_code = "claude-code-20250219" in incoming_betas
195
+
196
+ # Build merged betas list
197
+ merged_betas = [
198
+ "oauth-2025-04-20",
199
+ "interleaved-thinking-2025-05-14",
200
+ ]
201
+ if include_claude_code:
202
+ merged_betas.append("claude-code-20250219")
203
+
204
+ headers["anthropic-beta"] = ",".join(merged_betas)
205
+
206
+ # Remove x-api-key if present (we use Bearer auth)
207
+ for key in ["x-api-key", "X-API-Key", "X-Api-Key"]:
208
+ if key in headers:
209
+ del headers[key]
210
+
211
+ @staticmethod
212
+ def _add_beta_query_param(url: httpx.URL) -> httpx.URL:
213
+ """Add ?beta=true query parameter to the URL if not already present."""
214
+ # Parse the URL
215
+ parsed = urlparse(str(url))
216
+ query_params = parse_qs(parsed.query)
217
+
218
+ # Only add if not already present
219
+ if "beta" not in query_params:
220
+ query_params["beta"] = ["true"]
221
+ # Rebuild query string
222
+ new_query = urlencode(query_params, doseq=True)
223
+ # Rebuild URL
224
+ new_parsed = parsed._replace(query=new_query)
225
+ return httpx.URL(urlunparse(new_parsed))
226
+
227
+ return url
228
+
110
229
  async def send(
111
230
  self, request: httpx.Request, *args: Any, **kwargs: Any
112
231
  ) -> httpx.Response: # type: ignore[override]
232
+ is_messages_endpoint = request.url.path.endswith("/v1/messages")
233
+
113
234
  # Proactive token refresh: check JWT age before every request
114
235
  if not request.extensions.get("claude_oauth_refresh_attempted"):
115
236
  try:
@@ -131,50 +252,88 @@ class ClaudeCacheAsyncClient(httpx.AsyncClient):
131
252
  except Exception as exc:
132
253
  logger.debug("Error during proactive token refresh check: %s", exc)
133
254
 
134
- try:
135
- if request.url.path.endswith("/v1/messages"):
255
+ # Apply Claude Code OAuth transformations for /v1/messages
256
+ if is_messages_endpoint:
257
+ try:
136
258
  body_bytes = self._extract_body_bytes(request)
259
+ headers = dict(request.headers)
260
+ url = request.url
261
+ body_modified = False
262
+ headers_modified = False
263
+
264
+ # 1. Transform headers for Claude Code OAuth
265
+ self._transform_headers_for_claude_code(headers)
266
+ headers_modified = True
267
+
268
+ # 2. Add ?beta=true query param
269
+ url = self._add_beta_query_param(url)
270
+
271
+ # 3. Prefix tool names in request body
137
272
  if body_bytes:
138
- updated = self._inject_cache_control(body_bytes)
139
- if updated is not None:
140
- # Rebuild a request with the updated body and transplant internals
141
- try:
142
- rebuilt = self.build_request(
143
- method=request.method,
144
- url=request.url,
145
- headers=request.headers,
146
- content=updated,
147
- )
148
-
149
- # Copy core internals so httpx uses the modified body/stream
150
- if hasattr(rebuilt, "_content"):
151
- setattr(request, "_content", rebuilt._content) # type: ignore[attr-defined]
152
- if hasattr(rebuilt, "stream"):
153
- request.stream = rebuilt.stream
154
- if hasattr(rebuilt, "extensions"):
155
- request.extensions = rebuilt.extensions
156
-
157
- # Ensure Content-Length matches the new body
158
- request.headers["Content-Length"] = str(len(updated))
159
-
160
- except Exception:
161
- # Swallow instrumentation errors; do not break real calls.
162
- pass
163
- except Exception:
164
- # Swallow wrapper errors; do not break real calls.
165
- pass
273
+ prefixed_body = self._prefix_tool_names(body_bytes)
274
+ if prefixed_body is not None:
275
+ body_bytes = prefixed_body
276
+ body_modified = True
277
+
278
+ # 4. Inject cache_control
279
+ cached_body = self._inject_cache_control(body_bytes)
280
+ if cached_body is not None:
281
+ body_bytes = cached_body
282
+ body_modified = True
283
+
284
+ # Rebuild request if anything changed
285
+ if body_modified or headers_modified or url != request.url:
286
+ try:
287
+ rebuilt = self.build_request(
288
+ method=request.method,
289
+ url=url,
290
+ headers=headers,
291
+ content=body_bytes,
292
+ )
293
+
294
+ # Copy core internals so httpx uses the modified body/stream
295
+ if hasattr(rebuilt, "_content"):
296
+ setattr(request, "_content", rebuilt._content) # type: ignore[attr-defined]
297
+ if hasattr(rebuilt, "stream"):
298
+ request.stream = rebuilt.stream
299
+ if hasattr(rebuilt, "extensions"):
300
+ request.extensions = rebuilt.extensions
301
+
302
+ # Update URL
303
+ request.url = url
304
+
305
+ # Update headers
306
+ for key, value in headers.items():
307
+ request.headers[key] = value
308
+
309
+ # Ensure Content-Length matches the new body
310
+ if body_bytes:
311
+ request.headers["Content-Length"] = str(len(body_bytes))
312
+
313
+ except Exception as exc:
314
+ logger.debug("Error rebuilding request: %s", exc)
315
+
316
+ except Exception as exc:
317
+ logger.debug("Error in Claude Code transformations: %s", exc)
318
+
319
+ # Send the request
166
320
  response = await super().send(request, *args, **kwargs)
321
+
322
+ # Transform streaming response to unprefix tool names
323
+ if is_messages_endpoint and response.status_code == 200:
324
+ try:
325
+ response = self._wrap_response_with_tool_unprefixing(response, request)
326
+ except Exception as exc:
327
+ logger.debug("Error wrapping response for tool unprefixing: %s", exc)
328
+
329
+ # Handle auth errors with token refresh
167
330
  try:
168
- # Check for both 401 and 400 - Anthropic/Cloudflare may return 400 for auth errors
169
- # Also check if it's a Cloudflare HTML error response
170
331
  if response.status_code in (400, 401) and not request.extensions.get(
171
332
  "claude_oauth_refresh_attempted"
172
333
  ):
173
- # Determine if this is an auth error (including Cloudflare HTML errors)
174
334
  is_auth_error = response.status_code == 401
175
335
 
176
336
  if response.status_code == 400:
177
- # Check if this is a Cloudflare HTML error
178
337
  is_auth_error = self._is_cloudflare_html_error(response)
179
338
  if is_auth_error:
180
339
  logger.info(
@@ -203,8 +362,64 @@ class ClaudeCacheAsyncClient(httpx.AsyncClient):
203
362
  logger.warning("Token refresh failed, returning original error")
204
363
  except Exception as exc:
205
364
  logger.debug("Error during token refresh attempt: %s", exc)
365
+
206
366
  return response
207
367
 
368
+ def _wrap_response_with_tool_unprefixing(
369
+ self, response: httpx.Response, request: httpx.Request
370
+ ) -> httpx.Response:
371
+ """Wrap a streaming response to unprefix tool names.
372
+
373
+ Creates a new response with a transformed stream that removes the
374
+ TOOL_PREFIX from tool names in the response body.
375
+ """
376
+ original_stream = response.stream
377
+ unprefix_fn = self._unprefix_tool_names_in_text
378
+
379
+ class UnprefixingStream(httpx.AsyncByteStream):
380
+ """Async byte stream that unprefixes tool names.
381
+
382
+ Inherits from httpx.AsyncByteStream to ensure proper stream interface.
383
+ """
384
+
385
+ def __init__(self, inner_stream: Any) -> None:
386
+ self._inner = inner_stream
387
+
388
+ async def __aiter__(self):
389
+ async for chunk in self._inner:
390
+ if isinstance(chunk, bytes):
391
+ text = chunk.decode("utf-8", errors="replace")
392
+ text = unprefix_fn(text)
393
+ yield text.encode("utf-8")
394
+ else:
395
+ yield chunk
396
+
397
+ async def aclose(self) -> None:
398
+ if hasattr(self._inner, "aclose"):
399
+ try:
400
+ result = self._inner.aclose()
401
+ # Handle both sync and async aclose
402
+ if hasattr(result, "__await__"):
403
+ await result
404
+ except Exception:
405
+ pass # Ignore close errors
406
+ elif hasattr(self._inner, "close"):
407
+ try:
408
+ self._inner.close()
409
+ except Exception:
410
+ pass
411
+
412
+ # Create a new response with the transformed stream
413
+ # Must include request for raise_for_status() to work
414
+ new_response = httpx.Response(
415
+ status_code=response.status_code,
416
+ headers=response.headers,
417
+ stream=UnprefixingStream(original_stream),
418
+ extensions=response.extensions,
419
+ request=request,
420
+ )
421
+ return new_response
422
+
208
423
  @staticmethod
209
424
  def _extract_body_bytes(request: httpx.Request) -> bytes | None:
210
425
  # Try public content first
code_puppy/cli_runner.py CHANGED
@@ -827,11 +827,12 @@ async def run_prompt_with_attachments(
827
827
 
828
828
  link_attachments = [link.url_part for link in processed_prompt.link_attachments]
829
829
 
830
- # IMPORTANT: Set the shared console on the agent so that streaming output
830
+ # IMPORTANT: Set the shared console for streaming output so it
831
831
  # uses the same console as the spinner. This prevents Live display conflicts
832
832
  # that cause line duplication during markdown streaming.
833
- if spinner_console is not None:
834
- agent._console = spinner_console
833
+ from code_puppy.agents.event_stream_handler import set_streaming_console
834
+
835
+ set_streaming_console(spinner_console)
835
836
 
836
837
  # Create the agent task first so we can track and cancel it
837
838
  agent_task = asyncio.create_task(
@@ -17,6 +17,7 @@ from prompt_toolkit.layout import Dimension, Layout, VSplit, Window
17
17
  from prompt_toolkit.layout.controls import FormattedTextControl
18
18
  from prompt_toolkit.widgets import Frame
19
19
 
20
+ from code_puppy.command_line.utils import safe_input
20
21
  from code_puppy.config import EXTRA_MODELS_FILE, set_config_value
21
22
  from code_puppy.messaging import emit_error, emit_info, emit_warning
22
23
  from code_puppy.models_dev_parser import ModelInfo, ModelsDevRegistry, ProviderInfo
@@ -724,8 +725,8 @@ class AddModelMenu:
724
725
  emit_info(f" {hint}")
725
726
 
726
727
  try:
727
- # Use regular input - simpler and works in threaded context
728
- value = input(f" Enter {env_var} (or press Enter to skip): ").strip()
728
+ # Use safe_input for cross-platform compatibility (Windows fix)
729
+ value = safe_input(f" Enter {env_var} (or press Enter to skip): ")
729
730
 
730
731
  if not value:
731
732
  emit_warning(
@@ -785,7 +786,7 @@ class AddModelMenu:
785
786
  )
786
787
 
787
788
  try:
788
- model_name = input(" Model ID: ").strip()
789
+ model_name = safe_input(" Model ID: ")
789
790
 
790
791
  if not model_name:
791
792
  emit_warning("No model name provided, cancelled.")
@@ -795,7 +796,7 @@ class AddModelMenu:
795
796
  emit_info("\n Enter the context window size (in tokens).")
796
797
  emit_info(" Common sizes: 8192, 32768, 128000, 200000, 1000000\n")
797
798
 
798
- context_input = input(" Context size [128000]: ").strip()
799
+ context_input = safe_input(" Context size [128000]: ")
799
800
 
800
801
  if not context_input:
801
802
  context_length = 128000 # Default
@@ -1045,11 +1046,9 @@ class AddModelMenu:
1045
1046
  f" It will be very limited for coding tasks."
1046
1047
  )
1047
1048
  try:
1048
- confirm = (
1049
- input("\n Are you sure you want to add this model? (y/N): ")
1050
- .strip()
1051
- .lower()
1052
- )
1049
+ confirm = safe_input(
1050
+ "\n Are you sure you want to add this model? (y/N): "
1051
+ ).lower()
1053
1052
  if confirm not in ("y", "yes"):
1054
1053
  emit_info("Model addition cancelled.")
1055
1054
  return False
@@ -772,6 +772,91 @@ def handle_mcp_command(command: str) -> bool:
772
772
  return handler.handle_mcp_command(command)
773
773
 
774
774
 
775
+ @register_command(
776
+ name="api",
777
+ description="Manage the Code Puppy API server",
778
+ usage="/api [start|stop|status]",
779
+ category="core",
780
+ detailed_help="Start, stop, or check status of the local FastAPI server for GUI integration.",
781
+ )
782
+ def handle_api_command(command: str) -> bool:
783
+ """Handle the /api command."""
784
+ import os
785
+ import signal
786
+ import subprocess
787
+ import sys
788
+ from pathlib import Path
789
+
790
+ from code_puppy.config import STATE_DIR
791
+ from code_puppy.messaging import emit_error, emit_info, emit_success
792
+
793
+ parts = command.split()
794
+ subcommand = parts[1] if len(parts) > 1 else "status"
795
+
796
+ pid_file = Path(STATE_DIR) / "api_server.pid"
797
+
798
+ if subcommand == "start":
799
+ # Check if already running
800
+ if pid_file.exists():
801
+ try:
802
+ pid = int(pid_file.read_text().strip())
803
+ os.kill(pid, 0) # Check if process exists
804
+ emit_info(f"API server already running (PID {pid})")
805
+ return True
806
+ except (OSError, ValueError):
807
+ pid_file.unlink(missing_ok=True) # Stale PID file
808
+
809
+ # Start the server in background
810
+ emit_info("Starting API server on http://127.0.0.1:8765 ...")
811
+ proc = subprocess.Popen(
812
+ [sys.executable, "-m", "code_puppy.api.main"],
813
+ stdout=subprocess.DEVNULL,
814
+ stderr=subprocess.DEVNULL,
815
+ start_new_session=True,
816
+ )
817
+ pid_file.parent.mkdir(parents=True, exist_ok=True)
818
+ pid_file.write_text(str(proc.pid))
819
+ emit_success(f"API server started (PID {proc.pid})")
820
+ emit_info("Docs available at http://127.0.0.1:8765/docs")
821
+ return True
822
+
823
+ elif subcommand == "stop":
824
+ if not pid_file.exists():
825
+ emit_info("API server is not running")
826
+ return True
827
+
828
+ try:
829
+ pid = int(pid_file.read_text().strip())
830
+ os.kill(pid, signal.SIGTERM)
831
+ pid_file.unlink()
832
+ emit_success(f"API server stopped (PID {pid})")
833
+ except (OSError, ValueError) as e:
834
+ pid_file.unlink(missing_ok=True)
835
+ emit_error(f"Error stopping server: {e}")
836
+ return True
837
+
838
+ elif subcommand == "status":
839
+ if not pid_file.exists():
840
+ emit_info("API server is not running")
841
+ return True
842
+
843
+ try:
844
+ pid = int(pid_file.read_text().strip())
845
+ os.kill(pid, 0) # Check if process exists
846
+ emit_success(f"API server is running (PID {pid})")
847
+ emit_info("URL: http://127.0.0.1:8765")
848
+ emit_info("Docs: http://127.0.0.1:8765/docs")
849
+ except (OSError, ValueError):
850
+ pid_file.unlink(missing_ok=True)
851
+ emit_info("API server is not running (stale PID file removed)")
852
+ return True
853
+
854
+ else:
855
+ emit_error(f"Unknown subcommand: {subcommand}")
856
+ emit_info("Usage: /api [start|stop|status]")
857
+ return True
858
+
859
+
775
860
  @register_command(
776
861
  name="generate-pr-description",
777
862
  description="Generate comprehensive PR description",
@@ -7,6 +7,7 @@ MCP servers from the catalog.
7
7
  import os
8
8
  from typing import Dict, Optional
9
9
 
10
+ from code_puppy.command_line.utils import safe_input
10
11
  from code_puppy.messaging import emit_info, emit_success, emit_warning
11
12
 
12
13
  # Helpful hints for common environment variables
@@ -52,7 +53,7 @@ def prompt_for_server_config(manager, server) -> Optional[Dict]:
52
53
  # Get custom name
53
54
  default_name = server.name
54
55
  try:
55
- name_input = input(f" Server name [{default_name}]: ").strip()
56
+ name_input = safe_input(f" Server name [{default_name}]: ")
56
57
  server_name = name_input if name_input else default_name
57
58
  except (KeyboardInterrupt, EOFError):
58
59
  emit_info("")
@@ -63,9 +64,7 @@ def prompt_for_server_config(manager, server) -> Optional[Dict]:
63
64
  existing = find_server_id_by_name(manager, server_name)
64
65
  if existing:
65
66
  try:
66
- override = input(
67
- f" Server '{server_name}' exists. Override? [y/N]: "
68
- ).strip()
67
+ override = safe_input(f" Server '{server_name}' exists. Override? [y/N]: ")
69
68
  if not override.lower().startswith("y"):
70
69
  emit_warning("Installation cancelled")
71
70
  return None
@@ -91,7 +90,7 @@ def prompt_for_server_config(manager, server) -> Optional[Dict]:
91
90
  hint = get_env_var_hint(var)
92
91
  if hint:
93
92
  emit_info(f" {hint}")
94
- value = input(f" Enter {var}: ").strip()
93
+ value = safe_input(f" Enter {var}: ")
95
94
  if value:
96
95
  env_vars[var] = value
97
96
  # Save to config for future use
@@ -119,7 +118,7 @@ def prompt_for_server_config(manager, server) -> Optional[Dict]:
119
118
  prompt_str += " (optional)"
120
119
 
121
120
  try:
122
- value = input(f"{prompt_str}: ").strip()
121
+ value = safe_input(f"{prompt_str}: ")
123
122
  if value:
124
123
  cmd_args[name] = value
125
124
  elif default:
@@ -43,7 +43,7 @@ CUSTOM_SERVER_EXAMPLES = {
43
43
  "type": "http",
44
44
  "url": "http://localhost:8080/mcp",
45
45
  "headers": {
46
- "Authorization": "Bearer YOUR_API_KEY",
46
+ "Authorization": "Bearer $MY_API_KEY",
47
47
  "Content-Type": "application/json"
48
48
  },
49
49
  "timeout": 30
@@ -52,7 +52,7 @@ CUSTOM_SERVER_EXAMPLES = {
52
52
  "type": "sse",
53
53
  "url": "http://localhost:8080/sse",
54
54
  "headers": {
55
- "Authorization": "Bearer YOUR_API_KEY"
55
+ "Authorization": "Bearer $MY_API_KEY"
56
56
  }
57
57
  }""",
58
58
  }
@@ -367,24 +367,59 @@ class CustomServerForm:
367
367
  config_dict = json.loads(self.json_config)
368
368
 
369
369
  try:
370
- server_config = ServerConfig(
371
- id=server_name,
372
- name=server_name,
373
- type=server_type,
374
- enabled=True,
375
- config=config_dict,
376
- )
377
-
378
- # Register with manager
379
- server_id = self.manager.register_server(server_config)
380
-
381
- if not server_id:
382
- self.validation_error = "Failed to register server"
383
- self.status_message = (
384
- "Save failed: Could not register server (name may already exist)"
370
+ # In edit mode, find the existing server and update it
371
+ if self.edit_mode and self.original_name:
372
+ existing_config = self.manager.get_server_by_name(self.original_name)
373
+ if existing_config:
374
+ # Use the existing server's ID for the update
375
+ server_config = ServerConfig(
376
+ id=existing_config.id,
377
+ name=server_name,
378
+ type=server_type,
379
+ enabled=True,
380
+ config=config_dict,
381
+ )
382
+
383
+ # Update the server in the manager
384
+ success = self.manager.update_server(
385
+ existing_config.id, server_config
386
+ )
387
+
388
+ if not success:
389
+ self.validation_error = "Failed to update server"
390
+ self.status_message = "Save failed: Could not update server"
391
+ self.status_is_error = True
392
+ return False
393
+
394
+ server_id = existing_config.id
395
+ else:
396
+ # Original server not found, treat as new registration
397
+ server_config = ServerConfig(
398
+ id=server_name,
399
+ name=server_name,
400
+ type=server_type,
401
+ enabled=True,
402
+ config=config_dict,
403
+ )
404
+ server_id = self.manager.register_server(server_config)
405
+ else:
406
+ # New server - register it
407
+ server_config = ServerConfig(
408
+ id=server_name,
409
+ name=server_name,
410
+ type=server_type,
411
+ enabled=True,
412
+ config=config_dict,
385
413
  )
386
- self.status_is_error = True
387
- return False
414
+
415
+ # Register with manager
416
+ server_id = self.manager.register_server(server_config)
417
+
418
+ if not server_id:
419
+ self.validation_error = "Failed to register server"
420
+ self.status_message = "Save failed: Could not register server (name may already exist)"
421
+ self.status_is_error = True
422
+ return False
388
423
 
389
424
  # Save to mcp_servers.json for persistence
390
425
  if os.path.exists(MCP_SERVERS_FILE):