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/nicolasmelo1/logion/with-scriptsnpx skills add nicolasmelo1/logion --skill with-scriptsgit clone --depth 1 https://github.com/nicolasmelo1/logionWhat 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.00079 | $0.01000 |
| Opus 5 | $0.00039 | $0.00500 |
| Sonnet 5 | $0.00016 | $0.00200 |
| Haiku 4.5 | $0.00008 | $0.00100 |
Grade A, and why
with-scripts scanned grade A with 1 finding 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 2d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
├── api.py # Gmail REST client (stdlib urllib only) How it starts
The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.
With-Scripts: Bundled Gmail CLI Example
This example shows how to ship a real working tool inside a Logion course bundle. The course owns its codebase — there is no pip install, no npm install, no transitive dependency tree. Everything the agent needs to call the Gmail API lives in this bundle and was reviewed once when the course was published.
This is the canonical pattern for replacing "tell the user to install my CLI from npm" with "the course bundles the CLI."
Structure
with-scripts/
├── SKILL.md # this file
├── course/
│ └── capabilities.yaml # file + terminal + web; gmail.googleapis.com; OAuth env
├── scripts/ # thin entrypoints the agent invokes
│ ├── search.sh # search messages
│ └── list-labels.sh # list user labels
└── src/
└── gmailcli/ # actual implementation
├── __init__.py
├── __main__.py # python -m gmailcli {search,labels}
├── api.py # Gmail REST client (stdlib urllib only)
└── auth.py # reads OAuth token from env
scripts/ holds short entrypoints — bash wrappers that set PYTHONPATH and invoke the Python module. src/ holds the real implementation. The separation is deliberate:
- The agent only invokes
scripts/search.sh "query". Simple, discoverable surface. - The bulk of the logic — API calls, error handling, JSON parsing — lives in
src/gmailcli/. Reviewable, testable, organized. - The bundle stays self-contained: stdlib only (
urllib.request,json), nopip installanywhere.
When to use this template
Copy this structure when your course:
- Ships a non-trivial amount of code (more than one short script).
- Wants
scripts/to remain a clean surface for the agent to discover commands. - Has real implementation worth organizing into modules.
If your course is a single 50-line script, the simpler with-references-and-scripts/ example is a better starting point.
How to use
What ships with it
8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 2d ago First seen · 85 lines · 79 tokens per session scan A ccf602158046
with-scripts is a skill published in the GitHub repository nicolasmelo1/logion (35 stars, last pushed 4d ago), licensed MIT. It adds 79 tokens to every session and 1,000 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
adk-sample-creator
Creates a new sample agent in the ADK Python repository — the sample directory, its agent.py, and its README.md — following the conventions the existing samples already use. Use when the user wants to add a sample or example demonstrating a feature or agent pattern (dynamic nodes, fan-out/fan-in, a standalone…
python-package-management
Guide for managing packages in the Agent Framework Python monorepo, including creating new connector packages, versioning, and the lazy-loading pattern. Use this when adding, modifying, or releasing packages.
python-feature-lifecycle
Guidance for package and feature lifecycle in the Agent Framework Python codebase, including stage meanings, feature-stage decorators, feature enums, and how to move APIs from one stage to the next.
testing-python
Write and evaluate effective Python tests using pytest. Use when writing tests, reviewing test code, debugging test failures, or improving test coverage. Covers test design, fixtures, parameterization, mocking, and async testing.
python-code-quality
Code quality checks, linting, formatting, and type checking commands for the Agent Framework Python codebase. Use this when running checks, fixing lint errors, or troubleshooting CI failures.
python-development
Coding standards, conventions, and patterns for developing Python code in the Agent Framework repository. Use this when writing or modifying Python source files in the python/ directory.