CommandCodeAI / CommandCodeAI/command-code
ModApi: UI Interactions & Dialogs
Chưa có ai nhận issue này.
- Ngôn ngữ chính
- Không có dữ liệu ngôn ngữ
- Star
- 4k
- Fork
- 350
- Chỉ số merge pull request
- Không có pull request nào được merge trong 30 ngày
Mô tả
Feature Description
Disclaimer: This message was synthesized by an AI from a long, unstructured Markdown file of notes accumulated while building real mods. Use cases have been kept intentionally simple and generic. If anything seems off or incoherent, feel free to ask for clarification.
1. cmd.ui.spinner() — native spinners
Problem: There's no way to show a loading indicator during async work. Packages like ora don't work inside the harness sandbox.
Use case: A mod that does any async operation at startup (network call, file scan, etc.) has no way to tell the user it's working. A native spinner is the most basic UX expectation.
const spinner = cmd.ui.spinner("Loading...");
await task();
spinner.success("Done!");
2. cmd.ui.progress() — progress bar for long operations
Problem: There's no way to show progress during a multi-step or time-consuming operation. The user has no feedback while the mod is working.
Use case: Any mod that processes multiple items sequentially should be able to show a progress bar rather than leaving the user wondering if it's stuck.
const bar = cmd.ui.progress({ total: 100, label: 'Processing...' });
bar.update(45);
bar.complete('Done!');
3. cmd.ui.menu() — interactive select with groups and search
Problem: cmd.ui.select() is basic — no groups, no filtering, no advanced keyboard navigation.
Use case: Any mod presenting a long list of options would benefit from a searchable, keyboard-navigable menu rather than a flat list the user has to scroll through.
4. cmd.ui.confirm() with custom button labels
Problem: cmd.ui.confirm() always shows "OK" and "Cancel". There's no way to customize the button labels.
Use case: Any confirmation that involves a specific action ("Delete", "Overwrite", "Enable") should label its buttons accordingly rather than relying on the generic "OK".
cmd.ui.confirm({
title: 'Overwrite this file?',
labels: { confirm: 'Overwrite', cancel: 'Keep existing' },
});
5. ANSI / color support in dialogs (confirm, select, notify)
Problem: Dialog text in cmd.ui.confirm(), cmd.ui.select(), and cmd.ui.notify() is rendered as plain text — ANSI escape codes are not parsed.
Use case: A confirmation dialog that visually distinguishes a dangerous action (red/bold title, colored options) is much clearer than a plain-text prompt. Color in dialogs is a basic UX expectation.
6. cmd.ui.push() — more prominent push notification
Problem: cmd.ui.notify() adds a message to the feed, which gets lost in the scroll. There's no way to attract the user's attention more visibly.
Use case: A mod that needs to alert the user about something important should have a way to show a more prominent notification that doesn't get buried in feed history.
cmd.ui.push({ title: 'Threshold reached', body: 'The limit has been exceeded', level: 'warning' });
PART 2
5. Animations — Smooth visual transitions
Problem: The only visual feedback during async operations is a text spinner. There are no transitions, no gradients, no animated indicators. The terminal feels static and lifeless compared to modern TUI applications.
Use case: A mod that tracks live data (prices, counters, status) should be able to animate value changes — smooth color transitions, pulse effects on threshold alerts, or animated progress indicators. A mod that displays a loading state should show a smooth spinner, not a static ... text.
cmd.ui.animate({
target: statusBadge,
from: { color: 'yellow' },
to: { color: 'green' },
duration: 300,
});
References: ChromaCat (12 pattern types — plasma, aurora, fire, wave, spiral, ripple — 40+ built-in themes — cyberpunk, nebula, neon, retrowave — 60fps animations with interactive controls), terminui (animated spinners, progress transitions with easing), Ink (animated components via React state — smooth re-renders), SilkCircuit (design language with neon, soft, glow, vibrant styles — 20+ tools). The TUI Renaissance article (2026): "Smooth animations breathe life into your terminal with fluid color transitions."
6. Tooltips / Popovers — Contextual information
Problem: There is no way to show contextual information on hover or focus. If a mod wants to explain what a status badge means or show details about a metric, it must dump the info into the feed, polluting the conversation history.
Use case: A mod that displays a cost summary badge in the footer should show detailed breakdown (input tokens, output tokens, cache savings) when the user hovers over it, without printing anything in the feed.
cmd.ui.tooltip({
target: costBadge,
content: ['Input: 12,400 tokens', 'Output: 3,200 tokens', 'Cache saved: $0.42'],
});
References: OpenTUI (console overlay for contextual info — built into the framework), Ink UI (interactive components with focus states and hover), terminui (popover-like widgets with positioning), Ratatui (popup/modal overlays). Modern TUIs treat contextual info as a first-class concern, not an afterthought.
Use Case
No response
Additional Context
No response
How important is this to you?
None
Hướng dẫn đóng góp
Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này
Bắt đầu từ đâu
- Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
- Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
- Fork repository và làm thay đổi trên một nhánh.
- Mở pull request có tham chiếu số hiệu của issue.
Hướng nghiên cứu
Issue không nêu rõ các tệp, test hoặc điểm bắt đầu triển khai. Trước tiên, hãy chia công việc được yêu cầu về spinner, tiến trình, menu, xác nhận, thông báo, hoạt ảnh và tooltip thành các đề xuất có phạm vi cụ thể, sau đó xác định hành vi terminal được hỗ trợ và các test cho từng đề xuất trước khi triển khai.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Đánh giá
- Công nghệ
- typescript
- Lĩnh vực
- cli, design
- Loại issue
- Tính năng
- Độ khó
- 5/5
- Thời gian dự kiến
- Hơn một tuần
- Mức độ hoạt động
- Ít trao đổi
- Độ rõ ràng
- Cần làm rõ
- Mức phù hợp với người mới
- 25/100