Releases: yashdev9274/supercli
Releases · yashdev9274/supercli
v0.1.7
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
Core
- Agent mode rewritten from rigid
generateApplication()to tool-calling loop (ToolLoopAgent) — model callswrite_file/run_commandtools directly, enabling iterative building and error recovery. - New
/modelslash 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/uncaughtExceptionhandlers for crash resilience.
Tools
- Standalone tool definitions:
write-file,run-command,read-instructionswith 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] Denyprompts.ToolExecutor— manual tool-calling loop orchestrator for streaming providers.- OpenRouter provider rewritten from SDK to raw
fetchAPI with native tool call detection and multi-iteration tool loops. - NVIDIA NIM provider migrated to
@ai-sdk/openai-compatibleSDK with proper tool-calling support.
CLI
- Model switching at runtime via
/modelcommand: 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
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. maxOutputTokenscap (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).