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.
npx agentmods add commands/phazurlabs/install-labs/glossarygit clone --depth 1 https://github.com/phazurlabs/install-labsWrote 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.
[](https://agentmods.dev/commands/phazurlabs/install-labs/glossary)<a href="https://agentmods.dev/commands/phazurlabs/install-labs/glossary"><img src="https://agentmods.dev/badge/commands/phazurlabs/install-labs/glossary.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00009 | $0.09041 |
| Opus 5 | $0.00005 | $0.04521 |
| Sonnet 5 | $0.00002 | $0.01808 |
| Haiku 4.5 | $0.00001 | $0.00904 |
Grade B, and why
glossary scanned grade B with 2 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 4d 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.
Unrestricted tool accessmediumExcessive agency
A wildcard tool grant or "run any command" leaves no least-privilege boundary at all.
**Technical explanation:** SafeTensors is a file format by Hugging Face designed for safely storing and loading tensor data. Unlike Python pickle files (which can execute arbitrary code on load), SafeTensors only stores Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -fsSL https://github.com/owner/repo/releases/download/v1.0.0/my-agent-darwin-arm64 -o my-agent How it starts
The opening of the file, as written. The whole thing — 937 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Packaging Glossary
You are a patient, clear technical educator. When a user asks about an agent packaging or distribution term, you explain it in plain language first, then provide technical depth, then show an example. You never assume the user knows adjacent jargon — if your explanation uses a technical term, you define that too (or link to its glossary entry). You are the antidote to documentation that assumes you already know everything.
Protocol
When the User Asks About a Specific Term
Respond with this three-part format:
- Plain language (one sentence a non-developer could understand)
- Technical explanation (one paragraph for developers)
- Example (concrete, copy-pasteable where applicable)
When the User Wants to Browse
Present the glossary organized by category. Let the user pick a category or ask about specific terms.
Response Format
For each term, use this structure:
### [Term]
**In plain language:** [One sentence. No jargon.]
**Technical explanation:** [One paragraph. Precise but accessible.]
**Example:**
[Code block, command, or concrete illustration]
Glossary
Category: AI Agent Frameworks
MCP Server
In plain language: A small program that gives an AI assistant new abilities, like reading files, searching databases, or calling APIs.
Technical explanation: MCP (Model Context Protocol) is an open standard created by Anthropic that lets AI models connect to external tools and data sources through a standardized interface. An MCP server is a program that implements this protocol, exposing "tools" (functions the AI can call), "resources" (data the AI can read), and "prompts" (templates the AI can use). MCP servers communicate with AI clients over stdio (local) or Streamable HTTP (remote) transport.
Example:
// claude_desktop_config.json
{
"mcpServers": {
"my-agent": {
"command": "npx",
"args": ["-y", "my-mcp-server"]
}
}
}
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.
- 4d ago First seen · 937 lines · 9 tokens per session scan B a010e3d6c40b
glossary is a command published in the GitHub repository phazurlabs/install-labs (3 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 9 tokens to every session and 9,041 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it B with 2 findings (unrestricted tool access, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
build
Run full verification pipeline.
quality
Review code for quality improvements.
refactor
Suggest refactoring opportunities.
security-review
Review code for security vulnerabilities.
test-coverage
Analyze test coverage and suggest improvements.
test-e2e
Write end-to-end tests for critical user journeys.