Skip to content

Releases: yashdev9274/supercli

v0.1.7

19 Jun 06:57
548335a

Choose a tag to compare

Docs

  • README rewritten with new branding ("AI-Powered SWE Agent"), updated app/package table, Terminal Stack architecture section, and new badges (Next.js 16, License).
  • CONTRIBUTING rewritten from scratch: Bun-first setup, both database setup steps (dashboard + terminal CLI), expanded project tree, full command reference, code style guidelines, CLI pattern doc, DB migration workflows.
  • Config documentation updated with production URL guidance for OAuth setup — thanks @aviisharma238 (https://github.com/aviisharma238)!

CLI / TUI

  • Phosphor CRT terminal theme — green phosphor on black, amber accent for cursor/badges, green glow highlights. New pixelWordmark() renders "SUPERCODE" as ASCII pixel art.
  • Main screen redesigned with sectionHeader, cardStack, rowCard, keyValue, statusBar utilities — centered pixel wordmark, system HUD panel, command card stack, and a footer status bar.
  • Chat startup overhauled: pixel wordmark header, status bar with mode/model info, /model / /help / Tab quick-start row.
  • Framed "goodbye" message on exit instead of a single line.
  • Animated thinking spinner with live tool call and reasoning updates (existing, refined).
  • 1,048 insertions across 7 files — the TUI is now the primary surface identity.

v0.1.6

11 Jun 09:12

Choose a tag to compare

Core

  • Agent mode rewritten from rigid generateApplication() to tool-calling loop (ToolLoopAgent) — model calls write_file/run_command tools directly, enabling iterative building and error recovery.
  • New /model slash command — switch AI provider/model mid-session (Gemini, OpenRouter, NVIDIA NIM).
  • Persistent stdin handler — prevents "terminal state may be corrupted" crashes.
  • Stream cancellation via Escape key, with partial response preservation.
  • Global unhandledRejection/uncaughtException handlers for crash resilience.

Tools

  • Standalone tool definitions: write-file, run-command, read-instructions with path traversal protection, 1MB size limit, auto mkdir, and interactive stdin support.
  • PermissionManager — granular tool permission system with wildcard matching, dangerous command detection (20 regex patterns), and [y] Once / [a] Always / [n] Deny prompts.
  • ToolExecutor — manual tool-calling loop orchestrator for streaming providers.
  • OpenRouter provider rewritten from SDK to raw fetch API with native tool call detection and multi-iteration tool loops.
  • NVIDIA NIM provider migrated to @ai-sdk/openai-compatible SDK with proper tool-calling support.

CLI

  • Model switching at runtime via /model command: Google Gemini, OpenRouter (GPT OSS, DeepSeek V4 Flash, MiniMax M3, GLM 5.1, Kimi K2.6), NVIDIA NIM (MiniMax M2.7, DeepSeek V4 Flash, Llama 3.3 70B).
  • Default OpenRouter model changed to moonshotai/kimi-k2.6:free.
  • Animated thinking spinner with live tool call and reasoning updates.
  • Agent mode shows live tool call progress; supports exit and continue prompts.
  • Chat loop resilience — catch-all error handling prevents crashes; terminal state restored on errors.

v0.1.5

09 Jun 07:04

Choose a tag to compare

Core

  • New OpenRouter models: MiniMax M3, GLM 5.1, and Kimi K2.6 (free).
  • Session token tracking with context window percentage display (136.4K (68%)) in chat footer.
  • maxOutputTokens cap (8192) for paid OpenRouter models to prevent 402 errors.
  • Render cold start error message improved — 'server was inactive' instead of 'cannot reach server'.
  • Human-readable token formatting (5.2K, 136.4K, 1.0M).

Docs

  • Rewamp authentication docs covering CLI device code flow, token storage, GitHub OAuth, and Render cold start troubleshooting.
  • Rewamp terminal architecture docs reflecting actual codebase (CLI commands, DB models, API endpoints, AI providers, deployment).