9 Commits

  • docs: update CHANGELOG, README, GUI changelog for v3.8.0 AI Monitoring
    - CHANGELOG.md: full v3.8.0 section with 3-tier system, 30 fault types, safety guards
    - README.md: AI Monitoring badge, features section, Phase 9 dev journey, troubleshooting rows
    - GUI CHANGELOG: v3.8.0 entry with 9 bullet points
  • v3.6.0 — Performance & Stability Hardening
    P0: Connection pooling (http.client reuse per host), stream idle timeout
        (300s via selectors) on all streaming paths (OA/CC/Gemini/auto-continue)
    P1: Retry-After header support on all retry paths, preemptive OAuth token
        refresh (5min before expiry)
    P2: oa_convert_tools(strict=) for Responses vs Chat Completions, filter
        null/empty tool names
    P3: Response store TTL (600s eviction), bounded stream buffers (8MB cap),
        response.failed/error urgent flush, dual logging (proxy.log)
    
    .deb: v3.6.0 (71KB) — v3.5.0 and v3.3.0 kept as fallback
  • v3.5.0 — Major Release: Command Code Multi-Format Parser, AI Assist, Self-Revive Watchdog
    CC Adapter (17 fixes):
    - Multi-format tool-call parser chain: DSML → bash → explore → XML → raw JSON → fallback
    - Three-tier argument parser (direct/unescape/unicode_escape)
    - Recursive double/triple-wrap unwrapping (_unwrap_cmd)
    - Post-extraction sanitizer validation
    - DSML tag support (current CC model format)
    - Self-revive watchdog (50 restarts, progressive backoff)
    - Debug-to-file logging (cc-debug.log)
    - Inline self-test (19 tests via --self-test)
    - ErrorAnalyzer with 4xx learning on retry
    - Schema cache with 24h TTL
    
    Launcher:
    - AI Assist integration
    - Updated usage dashboard
    - Reasoning controls per-provider
    - Updated cleanup patterns
    
    .deb: v3.5.0 (70KB) — v3.3.0 kept as fallback
  • fix: add previous_response_id support for multi-turn tool calls (Crof fix)
    Codex Desktop uses previous_response_id to chain conversation turns.
    Without storing and resolving these, the proxy sent only the new
    function_call_output to upstream providers, missing the original user
    message and assistant tool call. This caused Crof.ai (and any provider
    using tool calls) to stop after the first response.
    
    - Add in-memory response store (50 entry LRU) keyed by response ID
    - resolve_previous_response() reconstructs full input chain on multi-turn
    - Fix orphan message output item when response has only tool calls
    - Applies to all backends: openai-compat, anthropic, command-code
    - v2.1.2
  • Initial commit: Codex Launcher — Any AI Provider
    Multi-provider integration for OpenAI Codex CLI/Desktop.
    
    - Translation proxy: Responses API ↔ Chat Completions / Anthropic Messages
    - GTK launcher with endpoint management, provider presets, Desktop/CLI launch
    - Codex Default mode (built-in OAuth, zero config)
    - Browser UA injection for Cloudflare-protected providers
    - Streaming SSE, tool calls, reasoning content support
    - Profile backup/import, model auto-fetch, bulk import
    - Zero pip dependencies (pure Python stdlib + GTK)