# System & Utilities

The catch-all family. Small, sharp tools the agent reaches for to round out a task.

## Tools in the family

| Tool                | What it does                                                                                                 |
| ------------------- | ------------------------------------------------------------------------------------------------------------ |
| `shell`             | Run a shell command. Bounded output, captured exit code.                                                     |
| `node_exec`         | Run a Node.js snippet - useful for one-off scripting.                                                        |
| `npm_exec`          | Run an `npm`/`pnpm`/`yarn` script.                                                                           |
| `current_time`      | Get the current time in any timezone, with formatting options.                                               |
| `schedule`          | One-shot "do this once at time T" - for recurring jobs see [Cron](/openhuman/features/native-tools/cron.md). |
| `pushover`          | Send a push notification to your devices.                                                                    |
| `insert_sql_record` | Append a row to the agent's structured workspace SQL store.                                                  |
| `lsp`               | Query a language server (definitions, references, diagnostics).                                              |
| `workspace_state`   | Inspect the current workspace - open files, recent edits, environment.                                       |
| `proxy_config`      | Read or change proxy configuration for outbound requests.                                                    |
| `tool_stats`        | Self-reflection - what tools have been used in this session and how often.                                   |

## What it's good for

* The bits of a workflow that don't fit a richer tool family.
* "Just run this command and tell me what it printed."
* Time-aware behaviour ("what time is it for the user right now?") without baking timezone assumptions into prompts.
* Letting the agent *notify you* when it's done with a long-running job.

## See also

* [Coder](/openhuman/features/native-tools/coder.md) - for filesystem-heavy work, prefer the dedicated tools over `shell`.
* [Cron & Scheduling](/openhuman/features/native-tools/cron.md) - for anything recurring.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://tinyhumans.gitbook.io/openhuman/features/native-tools/system-and-utilities.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
