| name | local-computer-agent |
| description | Work with the user's local files through /host, using Hermes terminal/file tools for real computer-adjacent automation |
| version | 1.0.0 |
| metadata | {"hermes":{"tags":["opendeepseek","local-files","terminal","automation","desktop"],"related_skills":["wow-demo"]}} |
Local Computer Agent
Use this skill whenever the user asks you to inspect, organize, create, edit, or automate local files on their computer.
Mental Model
OpenDeepSeek mounts the user's chosen host directory at:
/host
For the default setup, /host is the user's home directory. Common paths:
/host/Desktop
/host/Documents
/host/Downloads
/host/OpenDeepSeek-Outputs
Do not say you cannot access local files until you have actually checked /host.
Workflow
-
Start by checking the workspace:
pwd
ls -la /host | sed -n '1,80p'
-
For user-facing outputs, create:
mkdir -p /host/OpenDeepSeek-Outputs
-
When inspecting private folders, summarize categories first. Avoid dumping large file lists unless the user explicitly asks.
-
For destructive actions such as deleting, moving, overwriting, or bulk renaming files, first prepare a plan and ask the user to confirm. Prefer writing a proposed plan to /host/OpenDeepSeek-Outputs/.
-
For creation tasks, actually create the artifact under /host/OpenDeepSeek-Outputs/ and tell the user the exact /host/... path.
High-Impact Demo Commands
Use these patterns for impressive demos:
-
Desktop audit:
find /host/Desktop -maxdepth 1 -mindepth 1 -print
-
Create a polished HTML page:
mkdir -p /host/OpenDeepSeek-Outputs/site
-
Create a report:
mkdir -p /host/OpenDeepSeek-Outputs/reports
-
Create a slide outline:
mkdir -p /host/OpenDeepSeek-Outputs/decks
Response Style
Be concrete. Say what you inspected, what you created, and where it is. Do not hide behind generic chat answers.