Skip to main content

dashboard-widget-builder

Create, repair, redesign, and troubleshoot KKTerm Dashboard AI Created Widgets, script widgets, widget layout, visual polish, data fetching, secrets, and custom Dashboard views.

설치로 이동

소스 정보

저장소
ryantsai/KKTerm
최근 소스 활동
2026년 5월 28일 04:52
감지된 SKILL.md 언어
영어
스타
495
포크
60

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
dashboard-widget-builder
description
Create, repair, redesign, and troubleshoot KKTerm Dashboard AI Created Widgets, script widgets, widget layout, visual polish, data fetching, secrets, and custom Dashboard views.
# Dashboard Widget Builder Use this skill when the user asks the AI Assistant to create, modify, fix, or improve a Dashboard widget or view. ## Workflow 1. Treat the active Dashboard view as the target unless the user names a different view. 2. Use Dashboard tools instead of describing manual edits when tool access is available. 3. For new user-visible widgets, create a script widget directly with the dashboard widget creation workflow. 4. For broken widgets, load current Dashboard state first, inspect the existing AI Created Widget source, then patch the smallest necessary body fields. 5. Use real data when the user asks for live, current, or external information. Do not ship fake sample data unless the user explicitly asks for a mock. 6. If a widget needs an API key or token, define a secret settings field and request secret entry. Never ask for plaintext secrets in chat. 7. Keep widgets compact, readable, and object-like: meters, clocks, charts, maps, launchers, calculators, consoles, timelines, or focused tools. 8. Use KKTerm widget classes and runtime helpers before inventing a custom UI framework. 9. For canvases and visual libraries, size from the widget viewport and handle resize. ## Visual Defaults - Prefer dense but calm desktop utility over marketing composition. - Avoid text-only widgets unless the user asked for text output. - Choose a non-default accent when it clarifies meaning. - Avoid inner scrollbars in the initial layout. - Use loading, error, empty, and refresh states when data can fail or change. ## KKTerm Boundaries - All AI Created Widgets are script widgets. - Runtime CDN scripts are blocked; use curated local libraries when available. - Secret values are stored outside SQLite. - Generated widgets must fit inside their assigned Dashboard grid bounds. ## File I/O Use these KK bridge methods for any widget that reads or writes local files: - **Drag-and-drop from Explorer**: `KK.onFileDrop(target, callback, options?)` — attach to a drop-zone element. Callback receives `(items, event)` where each item is `{ kind, name, path, bytes?, children? }`. Returns a cleanup function. Add a visual `hoverClass` via `options.hoverClass` (default `'is-drop-target'`). - **File picker (read)**: `KK.readLocalFile({ filters? })` — opens a native open dialog; resolves to `{ name, bytes, path }` or `null` on cancel. - **File picker (save)**: `KK.saveFile(filename, bytes, filters?)` — opens a native save dialog and writes bytes; resolves to the saved path or `null` on cancel. Do not use raw `dragover`/`drop` DOM events for OS file drops — always go through `KK.onFileDrop` so the widget code follows the established bridge pattern.
GitHub에서 보기