Install
openclaw skills install agentypeAnalyze local AI-agent usage across Claude Code, Codex, OpenCode, pi-agent, Gemini CLI, OpenClaw, Nanobot, and configured Nanobot-compatible roots to produce...
openclaw skills install agentypeAgentype summarizes a user's local AI-agent history into one deterministic usage overview. Persona discovery is performed by the triggering agent using its own LLM — Agentype itself makes no LLM calls by default.
Use this skill when the user asks:
/agentypeDo not use it for billing estimates. Agentype reports tokens and local usage signals, not provider invoices.
Agentype collects local session and token metadata from supported agents where available:
AGENTYPE_NANOBOT_ROOTSAgentype is fully local in this skill workflow. It reads agent history from disk and prints a terminal summary. Handle persona inference on the agent side rather than asking the CLI to contact external model services.
If Agentype is installed:
agentype
If working from a source checkout:
uv run agentype
For users without uv, prefer installing the published CLI:
pipx install agentype-cli
agentype
If a user's agent history lives outside the default locations, ask for the relevant root and configure it before running Agentype. Nanobot-compatible JSONL roots can be added with AGENTYPE_NANOBOT_ROOTS:
AGENTYPE_NANOBOT_ROOTS="/path/to/workspace:/path/to/another/root" agentype --json-out
For unsupported agent layouts, tell the user the collector paths live in src/agentype/paths.py and source adapters live in src/agentype/sources/, so they can add their own local path or adapter before publishing private stats.
-v: adds detailed tables for statistics, discovered themes, and data confidence.--json-out: writes output/agentype.json with the full analysis.--json-in PATH: renders a previously written Agentype JSON file. Use this after filling top-level persona fields.--png-out: writes output/agentype.png, a shareable poster-style summary for chat or IM environments.When the user invokes this skill:
agentype --json-out (or uv run agentype --json-out from a source checkout) to collect deterministic local usage into output/agentype.json.output/agentype.json.archetype, description, keywords, and comment. Keep the comment to 2-3 concise evidence-grounded sentences starting with "You are a...".agentype --json-in output/agentype.json --png-out (or uv run agentype --json-in output/agentype.json --png-out) to render the final terminal result and shareable PNG from the filled JSON.output/agentype.png when the environment supports files or images.agentype -v --json-out or uv run agentype -v --json-out.