info

info is a command for coding agents from cesarandreslopez/tauri-agent-tools. It costs 0 tokens per session (479 once invoked), scanned A, original, MIT.

A command for showing a desktop window's position, size, identifier, process ID, name, and display server information. A display server is the system component that manages application windows and screens.

In plain words
What is it for?
Use it to find a window by title or platform window ID and receive the details as readable text or JSON.
Why use it?
It provides window details when you need to identify or inspect a particular app window, without requiring a Tauri bridge connection.

Command

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/cesarandreslopez/tauri-agent-tools/info
Clone the repo
git clone --depth 1 https://github.com/cesarandreslopez/tauri-agent-tools

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 info

README.md
[![agentmods](https://agentmods.dev/badge/commands/cesarandreslopez/tauri-agent-tools/info.svg)](https://agentmods.dev/commands/cesarandreslopez/tauri-agent-tools/info)
Your own site
<a href="https://agentmods.dev/commands/cesarandreslopez/tauri-agent-tools/info"><img src="https://agentmods.dev/badge/commands/cesarandreslopez/tauri-agent-tools/info.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 479 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00000 $0.00479
Opus 5 $0.00000 $0.00239
Sonnet 5 $0.00000 $0.00096
Haiku 4.5 $0.00000 $0.00048

Measured 5d ago against content hash b115e016f52b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

info 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 5d 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.

docs/commands/info.md · 72 lines

What it actually says

info

Show window geometry and display server info.

!!! success "No Bridge Required" This command works with any window — no Tauri bridge needed.

Usage

tauri-agent-tools info (--title <regex> | --window-id <id>) [options]

Options

Option Description Default
-t, --title <regex> Window title to match — regex; quote titles with spaces
-w, --window-id <id> Platform window id (from list-windows) — overrides --title
--json Output as JSON

One of --title or --window-id is required.

Examples

Text output

tauri-agent-tools info --title "My App"
Window ID:      12345678
Name:           My Tauri App
Position:       100, 50
Size:           1920x1080
Display Server: x11

JSON output

tauri-agent-tools info --title "My App" --json
{
  "windowId": "12345678",
  "pid": 1234,
  "name": "My Tauri App",
  "x": 100,
  "y": 50,
  "width": 1920,
  "height": 1080,
  "displayServer": "x11"
}

By window id

tauri-agent-tools info --window-id 12345678

Notes

  • The --title flag accepts a regex pattern for matching
  • --window-id skips the title search entirely — take the id from list-windows --json (windowId field); its format is platform-specific (X11/macOS/Sway numeric, Hyprland hex 0x…)
  • --window-id (platform/OS window) is unrelated to --window-label (Tauri webview label, a bridge concept)
  • Window geometry includes decoration (title bar, borders)
  • Display server is one of: x11, wayland, darwin
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. 5d ago First seen · 72 lines · 0 tokens per session scan A b115e016f52b

Subscribe to this mod's changes

info is a command published in the GitHub repository cesarandreslopez/tauri-agent-tools (22 stars, last pushed 11d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 479 tokens. 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-30.