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 skills add pjosols/pyfastmail-mcp --skill language-standardsgit clone --depth 1 https://github.com/pjosols/pyfastmail-mcpWrote 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/skills/pjosols/pyfastmail-mcp/language-standards)<a href="https://agentmods.dev/skills/pjosols/pyfastmail-mcp/language-standards"><img src="https://agentmods.dev/badge/skills/pjosols/pyfastmail-mcp/language-standards/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.
<a href="https://agentmods.dev/skills/pjosols/pyfastmail-mcp/language-standards"><img src="https://agentmods.dev/badge/skills/pjosols/pyfastmail-mcp/language-standards.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00000 | $0.00310 |
| Opus 5 | $0.00000 | $0.00155 |
| Sonnet 5 | $0.00000 | $0.00062 |
| Haiku 4.5 | $0.00000 | $0.00031 |
Grade A, and why
language-standards 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 8d 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.
What it actually says
Language Standards (Python)
Code Organization
- No file over 200 lines. Split early, not later.
- One class or closely related group of functions per module.
- Use
__init__.pyto define public API for each package.
Functions & Methods
- Max ~40 lines per function. Extract helpers if longer.
- Single responsibility — one function does one thing.
- Type hints on all signatures. Use
Optional,Unionsparingly. - Google-style docstrings on public functions only.
Error Handling
- Custom exceptions in a dedicated
exceptions.py. - Raise specific, catch specific. No bare
except:. - Let unexpected errors propagate — don't swallow them.
DRY
- Same pattern twice → extract it.
- Shared logic belongs in utils or the client, not in endpoint handlers.
Style
- Format with
black(line length 88), sort imports withisort, lint withruff. - No dead code. No TODO comments — either do it or don't.
- f-strings over
.format().pathliboveros.path. - Comprehensions over manual loops when readable.
dataclassesorNamedTupleover raw dicts for structured data.
Dependencies
- Use
uvfor package management:uv sync,uv run pytest. - Dev tools (black, isort, ruff, pytest) go in pyproject.toml
[project.optional-dependencies]dev group.
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.
- 8d ago First seen · 33 lines · 0 tokens per session scan A b90365de98a9
language-standards is a skill published in the GitHub repository pjosols/pyfastmail-mcp (0 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 310 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-31.
Other skills, from other repositories
pennylane
Hardware-agnostic quantum ML framework with automatic differentiation. Use when training quantum circuits via gradients, building hybrid quantum-classical models, or needing device portability across IBM/Google/Rigetti/IonQ. Best for variational algorithms (VQE, QAOA), quantum neural networks, and integration with…
dd-code-generation
Use pup CLI for immediate Datadog operations or generate code for integration into applications.
holoscan-install-wheel
Install Holoscan SDK Python wheel via pip into a venv. Use for Python installs; not for native C++/apt or Conda installs.
typing-exclusion-worker
Python typing exclusion worker: remove assigned mypy exclusion modules in small scoped batches, fix typing issues, run validation, and produce a structured completion summary. Use when running parallel typing-debt workers or when asked to remove modules from pyproject mypy exclusion overrides.
python
Python development with ruff, mypy, pytest - TDD and type safety.
data-analysis-jupyter
Expert guidance for data analysis, visualization, and Jupyter Notebook development with pandas, matplotlib, seaborn, and numpy.