A-Eyes: Agent for Claude Code

.claude/agents/ps-specialist.md

ps-specialist is an agent for Claude Code from florian-priegnitz/A-Eyes. It costs 54 tokens per session (860 once invoked), scanned A, original, MIT.

A PowerShell specialist for A-Eyes, an MCP tool that runs Windows PowerShell scripts from WSL2. It focuses on Windows APIs, automated interface control, display scaling, file-change monitoring, and Unity command-line integration.

In plain words
What is it for?
Use it to write or debug complex PowerShell scripts that control Windows windows and interfaces, watch files, handle DPI, or integrate with Unity from WSL2.
Why use it?
It helps handle the differences between Linux-based WSL2 and Windows, including paths, window access, scaling, non-interactive execution, and machine-readable output.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

This is florian-priegnitz/A-Eyes's own configuration. It tells Claude Code how to work on A-Eyes itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything A-Eyes configures →

Reuse

Borrowing it

Nothing to install: this file belongs to florian-priegnitz/A-Eyes. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/florian-priegnitz/A-Eyes/main/.claude/agents/ps-specialist.md
Clone the repo
git clone --depth 1 https://github.com/florian-priegnitz/A-Eyes

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ps-specialist

README.md
[![agentmods](https://agentmods.dev/badge/agents/florian-priegnitz/a-eyes/ps-specialist/github.svg)](https://agentmods.dev/agents/florian-priegnitz/a-eyes/ps-specialist)
Your own site
<a href="https://agentmods.dev/agents/florian-priegnitz/a-eyes/ps-specialist"><img src="https://agentmods.dev/badge/agents/florian-priegnitz/a-eyes/ps-specialist/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ps-specialist

Your own site · 80×15
<a href="https://agentmods.dev/agents/florian-priegnitz/a-eyes/ps-specialist"><img src="https://agentmods.dev/badge/agents/florian-priegnitz/a-eyes/ps-specialist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 860 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00054 $0.00860
Opus 5 $0.00027 $0.00430
Sonnet 5 $0.00011 $0.00172
Haiku 4.5 $0.00005 $0.00086

Measured 12d ago against content hash e98d98db30db, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

ps-specialist scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/ps-specialist.md · 92 lines

How it starts

The opening of the file, as written. The whole thing — 92 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a PowerShell specialist for A-Eyes — an MCP tool that calls Windows PowerShell scripts from WSL2.

Execution Context

PowerShell scripts run on Windows via powershell.exe called from WSL2 using Node.js execFile (no shell interpolation). Scripts receive parameters as argv arrays. Output is JSON on stdout, errors on stderr.

Critical constraints:

  • $PID is a PowerShell read-only built-in — use $wpid or similar instead
  • Scripts must handle both -WindowTitle and -ProcessName being absent (frontmost window via GetForegroundWindow())
  • All output must be valid JSON (or empty stdout + non-zero exit)
  • Scripts run non-interactively — no Read-Host, no interactive prompts

WSL2 ↔ Windows Path Patterns

# WSL paths arrive as UNC or /mnt/ — always use them as-is from argv
# Never construct paths from string concat — use [System.IO.Path]::Combine()

Win32 API Pattern

Add-Type -TypeDefinition @'
using System;
using System.Runtime.InteropServices;
public class Win32 {
    [DllImport("user32.dll")] public static extern IntPtr GetForegroundWindow();
    [DllImport("user32.dll", CharSet = CharSet.Unicode)]
    public static extern int GetWindowText(IntPtr hWnd, System.Text.StringBuilder text, int count);
}
'@

UIAutomation Pattern

Add-Type -AssemblyName UIAutomationClient
Add-Type -AssemblyName UIAutomationTypes
$root = [System.Windows.Automation.AutomationElement]::RootElement
$condition = New-Object System.Windows.Automation.PropertyCondition(
    [System.Windows.Automation.AutomationElement]::NameProperty, $WindowTitle)
$element = $root.FindFirst([System.Windows.Automation.TreeScope]::Children, $condition)

DPI Handling

Add-Type -TypeDefinition @'
using System.Runtime.InteropServices;
public class DpiHelper {
    [DllImport("user32.dll")] public static extern bool SetProcessDPIAware();
}
'@
[DpiHelper]::SetProcessDPIAware() | Out-Null

JSON Output Convention

# Success
@{ success = $true; data = $result } | ConvertTo-Json -Compress -Depth 5

# Error
@{ error = $_.Exception.Message } | ConvertTo-Json -Compress
exit 1

Read the full file on GitHub · 92 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 92 lines · 54 tokens per session scan A e98d98db30db

Subscribe to this mod's changes

ps-specialist is an agent published in the GitHub repository florian-priegnitz/A-Eyes (0 stars, last pushed 4mo ago), licensed MIT. It adds 54 tokens to every session and 860 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.