Skills powerskills
Windows automation toolkit for AI agents. Provides Outlook email/calendar, Edge browser (CDP), desktop screenshots/window management, and shell commands via PowerShell. Install this for the full suite, or install individual sub-skills (powerskills-outlook, powerskills-browser, powerskills-desktop, powerskills-system) separately.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/aloth/powerskills" ~/.claude/skills/openclaw-skills-powerskills && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/aloth/powerskills" ~/.openclaw/skills/openclaw-skills-powerskills && rm -rf "$T"
manifest:
skills/aloth/powerskills/SKILL.mdsource content
PowerSkills
Windows capabilities for AI agents via PowerShell. Each skill in
skills/ is independently discoverable.
Setup
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned
Usage
.\powerskills.ps1 <skill> <action> [--param value ...] .\powerskills.ps1 list # Discover available skills .\powerskills.ps1 outlook inbox --limit 10 # Run an action
Output Format
All actions return JSON:
{"status": "success", "exit_code": 0, "data": {...}, "timestamp": "..."}
Configuration
Edit
config.json:
{ "edge_debug_port": 9222, "default_timeout": 30, "outlook_body_max_chars": 5000 }
Skills
| Skill | Description |
|---|---|
| outlook | Email & calendar via Outlook COM |
| browser | Edge automation via CDP |
| desktop | Screenshots, window management, keystrokes |
| system | Shell commands, processes, system info |