gitarsenal-cli 1.9.74 → 1.9.75
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/.venv_status.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"created":"2025-08-15T09:
|
|
1
|
+
{"created":"2025-08-15T09:24:56.539Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
|
|
@@ -420,15 +420,28 @@ The following {len(TOOL_SCHEMAS)} tools are loaded and available:
|
|
|
420
420
|
|
|
421
421
|
# Show parameters in a clean format
|
|
422
422
|
if tool_input:
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
423
|
+
# Special handling for TodoWrite to show actual todos
|
|
424
|
+
if tool_name == "TodoWrite" and "todos" in tool_input:
|
|
425
|
+
todos = tool_input["todos"]
|
|
426
|
+
print(f" Parameters: todos=[{len(todos)} items]")
|
|
427
|
+
if todos:
|
|
428
|
+
print(" Todo Items:")
|
|
429
|
+
for i, todo in enumerate(todos, 1):
|
|
430
|
+
status_emoji = {"pending": "⏳", "in_progress": "🔄", "completed": "✅"}.get(todo.get("status", "pending"), "❓")
|
|
431
|
+
content = todo.get("content", "No description")
|
|
432
|
+
if len(content) > 60:
|
|
433
|
+
content = content[:60] + "..."
|
|
434
|
+
print(f" {i}. {status_emoji} {content}")
|
|
435
|
+
else:
|
|
436
|
+
params_display = []
|
|
437
|
+
for key, value in tool_input.items():
|
|
438
|
+
if isinstance(value, str) and len(value) > 80:
|
|
439
|
+
params_display.append(f"{key}={value[:80]}...")
|
|
440
|
+
elif isinstance(value, list) and len(value) > 3:
|
|
441
|
+
params_display.append(f"{key}=[{len(value)} items]")
|
|
442
|
+
else:
|
|
443
|
+
params_display.append(f"{key}={value}")
|
|
444
|
+
print(f" Parameters: {', '.join(params_display)}")
|
|
432
445
|
|
|
433
446
|
try:
|
|
434
447
|
# Execute the tool
|