v0.5.0: NomadArch - Binary-Free Mode Release
Some checks failed
Release Binaries / release (push) Has been cancelled

Features:
- Binary-Free Mode: No OpenCode binary required
- NomadArch Native mode with free Zen models
- Native session management
- Provider routing (Zen, Qwen, Z.AI)
- Fixed MCP connection with explicit connectAll()
- Updated installers and launchers for all platforms
- UI binary selector with Native option

Free Models Available:
- GPT-5 Nano (400K context)
- Grok Code Fast 1 (256K context)
- GLM-4.7 (205K context)
- Doubao Seed Code (256K context)
- Big Pickle (200K context)
This commit is contained in:
Gemini AI
2025-12-26 11:27:03 +04:00
Unverified
commit 1d427f4cf5
407 changed files with 100777 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
# Task 047 - Tabs Tailwind Refactor
## Goal
Refactor instance and session tab components to rely on Tailwind utilities and shared tokens, aligning with the design spec for spacing, typography, and state indicators.
## Prerequisites
- Task 046 complete (prompt input refactor) to keep merges manageable.
## Acceptance Criteria
- [ ] `src/components/instance-tabs.tsx` and `src/components/session-tabs.tsx` no longer reference legacy `.instance-tabs`, `.session-tabs`, `.session-tab` classes from `src/index.css`.
- [ ] Global CSS for tab bars (`.connection-status`, `.status-indicator`, `.status-dot`, `.session-view`) is replaced or minimized in favor of Tailwind utilities and token variables.
- [ ] Active, hover, and error states match the UI spec in both themes, including badges/icons.
- [ ] Tab bar layout remains responsive with overflow scrolling where applicable.
## Steps
1. Catalogue existing tab-related classes used in both components and in `src/index.css`.
2. Convert markup to Tailwind class lists, leveraging tokens for colors/borders (e.g., `bg-[var(--surface-secondary)]`).
3. Add any reusable tab utilities to `src/styles/components.css` if needed.
4. Remove obsolete CSS blocks from `src/index.css` once coverage is confirmed.
5. Smoke-test tab interactions: switching, closing (where allowed), error state display, and overflow behavior.
## Testing Checklist
- [ ] Run `npm run build`.
- [ ] In dev mode, load multiple instances/sessions to verify active styling and horizontal scrolling.
## Dependencies
- Depends on Task 046 completion.
- Blocks subsequent polish tasks for tab-level layout.
## Estimated Time
1.0 hour
## Notes
- Branch suggestion: `feature/task-047-tabs-tailwind-refactor`.
- Provide before/after screenshots (light/dark) of both tab bars in the PR for clarity.