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 HolobiomicsLab/asb-skill-collections --skill editable-development-mode-installation-and-verificationgit clone --depth 1 https://github.com/HolobiomicsLab/asb-skill-collectionsWrote 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/holobiomicslab/asb-skill-collections/editable-development-mode-installation-and-verification)<a href="https://agentmods.dev/skills/holobiomicslab/asb-skill-collections/editable-development-mode-installation-and-verification"><img src="https://agentmods.dev/badge/skills/holobiomicslab/asb-skill-collections/editable-development-mode-installation-and-verification/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/holobiomicslab/asb-skill-collections/editable-development-mode-installation-and-verification"><img src="https://agentmods.dev/badge/skills/holobiomicslab/asb-skill-collections/editable-development-mode-installation-and-verification.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.00063 | $0.01810 |
| Opus 5 | $0.00032 | $0.00905 |
| Sonnet 5 | $0.00013 | $0.00362 |
| Haiku 4.5 | $0.00006 | $0.00181 |
Grade B, and why
editable-development-mode-installation-and-verification scanned grade B 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 7d 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.
Strips warnings and disclaimersmediumAnti-refusal
Omitting safety caveats hides risk from the user and is a common jailbreak preamble.
- No flake8 style violations in the modified or new code; pytest-flake8 completes without warnings in the target module How it starts
The opening of the file, as written. The whole thing — 115 lines — stays where its author put it; the contents beside it link to each section on GitHub.
editable-development-mode-installation-and-verification
Summary
Install a Python package in editable (development) mode and verify correctness through import, unit testing, code coverage, style linting, and documentation generation. This workflow enables rapid iteration on package code while ensuring all components remain functional and compliant.
When to use
When you are developing or contributing to a Python package (like cooltools) and need to test changes to utility functions, library integrations, or API implementations without reinstalling the package after each modification. Apply this when you must verify that a new function (e.g., adaptive_coarsegrain) is correctly exposed in the package namespace, passes all unit tests, meets code style standards, and is properly documented.
When NOT to use
- Package is already installed in production mode and users should not modify source code; use standard installation (
pip install package_name) instead. - You are running a pre-compiled or binary package with no Python source; editable mode requires a setuptools-compatible source tree.
- Development environment lacks build tools (gcc, Make, Sphinx) or permission to modify the installation directory; fall back to virtual environment isolation or containerization.
Inputs
- Git repository containing Python package source code (e.g., open2c/cooltools)
- Python environment with pip and build tools available
- Package setup.py or pyproject.toml with dependency specifications
Outputs
- Installed package in editable mode with symlink to source directory
- Unit test execution report (passed/failed counts, coverage metrics)
- Code style lint report (flake8 compliance check)
- Built Sphinx HTML documentation with API reference
- Confirmation that target function/utility is importable and callable
How to apply
Begin by cloning the target repository and installing it in editable mode using pip install -e . from the repository root; this creates a symlink to the development directory so changes are immediately reflected without reinstallation. Next, import the function or module of interest in a Python session to confirm it is callable and accessible from the intended namespace (e.g., from cooltools.lib import adaptive_coarsegrain). Then run the full pytest suite with pytest to execute unit tests and verify behavioral correctness. Extend pytest with the pytest-cov extension to measure code coverage and ensure the new code paths are exercised; also run pytest-flake8 to enforce code style compliance using flake8 linting rules. Finally, build the Sphinx documentation using make docs and inspect the generated API reference to confirm the function appears with its docstring and signature intact. Success is indicated when all tests pass, coverage is satisfactory, no style violations are reported, and the function is discoverable in the built documentation.
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.
- 7d ago First seen · 115 lines · 63 tokens per session scan B fa8905fe14d3
editable-development-mode-installation-and-verification is a skill published in the GitHub repository HolobiomicsLab/asb-skill-collections (15 stars, last pushed 4d ago), licensed Apache-2.0. It adds 63 tokens to every session and 1,810 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (strips warnings and disclaimers). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
temporal-python-testing
Test Temporal workflows with pytest, time-skipping, and mocking strategies. Covers unit testing, integration testing, replay testing, and local development setup. Use when implementing Temporal workflow tests or debugging test failures.
python-testing
Guidelines for writing and running tests in the Agent Framework Python codebase. Use this when creating, modifying, or running tests.
adk-verify-snippets
Checks that every Python code block in a Markdown file actually compiles and runs, by extracting each block to a temporary file, executing it in an isolated subprocess, and writing a pass/fail report with per-snippet coverage. Use when the user asks to verify, test, or validate the code samples in a README, a guide…
adk-setup
Sets up a local ADK Python development environment in a git clone of the open-source adk-python repository: a uv virtual environment, all dependency extras, pre-commit hooks, and a first unit-test run. Runs only when explicitly requested, never on its own. Use when asked to set up, bootstrap, or repair a development…
typescript
TypeScript strict mode with eslint and jest.
test-generator
Generate pytest test cases for Python functions and classes.