35 lines
2.1 KiB
JavaScript
35 lines
2.1 KiB
JavaScript
export const SKILLS = [
|
|
['chat', 'Local QVAC completion through the agent harness', 'read'],
|
|
['plan', 'Multi-step planning through the extracted harness loop', 'read'],
|
|
['embed', 'QVAC embeddings for local memory and retrieval', 'read'],
|
|
['remember', 'QVAC RAG workspace ingestion and search', 'write'],
|
|
['batch-prompt', 'Local batch completion jobs', 'write'],
|
|
['ask-my-files', 'Local RAG workspace question answering', 'read'],
|
|
['look-at-this', 'Local screenshot and QVAC multimodal analysis', 'read'],
|
|
['ocr', 'Local OCR for documents and screens', 'read'],
|
|
['what-is-this', 'Local image classification', 'read'],
|
|
['dictate', 'Transcribe and inject text into the focused client', 'write'],
|
|
['transcribe-file', 'Local audio transcription', 'read'],
|
|
['meeting', 'Local diarized meeting transcription', 'read'],
|
|
['speak', 'Local QVAC text-to-speech playback', 'read'],
|
|
['clone-voice', 'Local voice enrollment and cloning', 'write'],
|
|
['translate', 'Local QVAC/Bergamot translation', 'read'],
|
|
['imagine', 'Local QVAC diffusion image generation', 'write'],
|
|
['edit-image', 'Local image-to-image editing', 'write'],
|
|
['make-video', 'Local QVAC video generation job', 'write'],
|
|
['compose', 'Local QVAC AudioGen music job', 'write'],
|
|
['teach-me', 'Confirmed local LoRA training', 'dangerous'],
|
|
['bci', 'Local BCI transcription Lab slot', 'read'],
|
|
['robot', 'Local VLA Lab slot', 'dangerous'],
|
|
['world', 'Local ABot-World Lab sandbox', 'write'],
|
|
['assess-model-fit', 'Preflight model memory fit before download', 'read'],
|
|
['model-registry', 'Local QVAC model registry and checksums', 'read'],
|
|
['p2p-sync', 'Optional explicitly enabled local-device sync slot', 'write'],
|
|
['cu.observe', 'Wayland-first desktop observation bundle', 'computer-use'],
|
|
['cu.act', 'AT-SPI semantic desktop action', 'computer-use'],
|
|
['cu.click', 'Portal/libei or opted-in fallback click', 'computer-use'],
|
|
['cu.type', 'Portal/libei or opted-in fallback Unicode typing', 'computer-use'],
|
|
['cu.grant', 'Explicit computer-use grant', 'computer-use'],
|
|
['cu.revoke', 'Immediate computer-use revoke', 'dangerous'],
|
|
];
|