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 skills/andresquirogadev/skillsense/pythonnpx skills add andresquirogadev/skillsense --skill pythongit clone --depth 1 https://github.com/andresquirogadev/skillsenseWhat 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.00000 | $0.00545 |
| Opus 5 | $0.00000 | $0.00272 |
| Sonnet 5 | $0.00000 | $0.00109 |
| Haiku 4.5 | $0.00000 | $0.00055 |
Grade A, and why
python 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 46 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Python Skill
You are working on a Python project. Apply these best practices.
Project Setup
- Use
pyproject.tomlfor all project metadata and tool configuration — avoid legacysetup.py/setup.cfg. - Use
uvorpoetryfor dependency management; commit the lockfile. - Use Python 3.12+ features: type parameter syntax (
type Point = tuple[int, int]),tomllib,matchstatements.
Type Hints
- Annotate all function signatures and class attributes.
- Use built-in generics directly:
list[str],dict[str, int],tuple[int, ...](no need to import fromtypingin 3.9+). - Use
X | Yunion syntax instead ofUnion[X, Y](Python 3.10+). - Use
TypedDictfor dict shapes; usedataclasses.dataclassor Pydantic models for structured data. - Run
mypy --strictorpyrightin CI.
Code Style
- Follow PEP 8; use
rufffor linting and formatting (replacesflake8+black+isort). - Use f-strings for interpolation — not
%formatting or.format(). - Use
pathlib.Pathinstead ofos.pathfor file system operations. - Use context managers (
withstatements) for resources (files, DB connections, locks).
Async
- Use
asynciowithasync def/awaitfor I/O-bound concurrency. - Use
asyncio.gather()for concurrent coroutines. - Use
anyioortriofor more structured concurrency when needed. - Add
from __future__ import annotationsto defer evaluation of annotations in async code (Python 3.9).
Testing
- Use
pytestwithpytest-asynciofor async tests. - Use
tmp_pathfixture for temporary files — never use hardcoded paths in tests. - Use
monkeypatchto override environment variables and module attributes. - Use
pytest.raises(ValueError, match="…")for expected exception messages.
Security
- Never use
eval()orexec()with user input. - Use
secretsmodule for cryptographic random values — notrandom. - Validate and sanitize all external inputs; use Pydantic for structured validation.
- Pin dependencies in
requirements.txtor the lockfile; runpip-auditorsafetyin CI.
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.
- yesterday First seen · 46 lines · 0 tokens per session scan A b4f29790fc1d
python is a skill published in the GitHub repository andresquirogadev/skillsense (2 stars, last pushed 4mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 545 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
paseo-plugin
Build and manage trusted local Paseo plugins. Use when the user asks to create, edit, install, reload, enable, disable, remove, or troubleshoot a Paseo plugin; add a native surface or sidebar item; use Paseo from plugin code; add plugin RPCs; or contribute composer attachments.
paseo-help
Answer questions about the Paseo product and app, including setup, configuration, connectivity, providers, workspaces, updates, logs, and troubleshooting. Use when a user inside Paseo asks how Paseo works, how to configure it, or why something is broken; use the paseo skill instead to operate agents and workspaces…
paseo
Paseo reference for managing projects, workspaces, workspace scripts, agents, schedules, and heartbeats.
paseo-advisor
Spin up a single agent as an advisor — second opinion on the current task. Use when the user says "advisor", "second opinion", "what does X think", or wants an outside take without delegating the work itself.
paseo-committee
Form a committee of two high-reasoning agents to step back, do root cause analysis, and produce a plan. Use when stuck, looping, tunnel-visioning, or facing a hard planning problem.
paseo-handoff
Hand off the current task to another agent with full context. Use when the user says "handoff", "hand off", "hand this to", or wants to pass work to another agent.