System Tools

The always-available core that powers built-in actions and basic OS control.

Underneath the broader capabilities sits a small, always-available core of low-level operating-system operations. These power the built-in UI actions and basic system control, and β€” unlike most capabilities β€” they're never unloaded.

Why it's separate

Most capabilities can be unloaded when idle to save memory. The system core can't β€” it's always available, so MeghaOS can always launch apps, touch the clipboard, and control basic hardware, even under memory pressure.

What it provides

OperationDoes
Launch / close appOpen or quit an application
Create folder / fileMake a directory or write a new file
Move / delete fileMove, rename, or remove a file
Capture screenshotGrab the screen
Read / write clipboardAccess clipboard contents
Set volume / brightnessAdjust output volume or screen brightness
Toggle Wi-FiTurn Wi-Fi on or off
Download / extract fileFetch a file or unpack an archive

Path safety

File operations run through an internal safety check that validates and normalizes paths before acting β€” a guardrail against touching unintended locations. Destructive operations are meant to be deliberate, not accidental.

How it's used

  • UI actions β€” volume, brightness, Wi-Fi, open/close app come straight from interactive widgets.
  • Workflows β€” the system core participates like any other capability in a workflow.

Relationship to file management

There's intentional overlap with the rich file management capability (search, bulk operations, archives, the visual explorer). The assistant prefers the full capability for complex file work and falls back to the system core for basic operations.

Note

Because the system core can write and delete files and control hardware, sensitive operations may surface a confirmation first.