editable-development-mode-installation-and-verification

editable-development-mode-installation-and-verification is a skill for Claude Code, Codex from HolobiomicsLab/asb-skill-collections. It costs 63 tokens per session (1,810 once invoked), scanned B, original, Apache-2.0.

A Python package development workflow that keeps source changes immediately available and checks them with tests, coverage, style checks, and documentation generation.

In plain words
What is it for?
It helps developers work on Python library functions and verify changes with unit tests, coverage checks, linting, and documentation builds.
Why use it?
It avoids reinstalling the package after every code change and helps reveal broken imports, failing behavior, style problems, or missing documentation.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps developers work on Python library functions and verify changes with unit tests, coverage checks, linting, and documentation builds.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/holobiomicslab/asb-skill-collections/editable-development-mode-installation-and-verification
Install

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.

Any agent
npx skills add HolobiomicsLab/asb-skill-collections --skill editable-development-mode-installation-and-verification
Clone the repo
git clone --depth 1 https://github.com/HolobiomicsLab/asb-skill-collections

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for editable-development-mode-installation-and-verification

README.md
[![agentmods](https://agentmods.dev/badge/skills/holobiomicslab/asb-skill-collections/editable-development-mode-installation-and-verification/github.svg)](https://agentmods.dev/skills/holobiomicslab/asb-skill-collections/editable-development-mode-installation-and-verification)
Your own site
<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.

agentmods 80×15 button for editable-development-mode-installation-and-verification

Your own site · 80×15
<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>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,810 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 7d ago against content hash fa8905fe14d3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

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
collections/epigenomics/v1/skills/editable-development-mode-installation-and-verification/SKILL.md · 115 lines

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.

Read the full file on GitHub · 115 lines

Changes

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.

  1. 7d ago First seen · 115 lines · 63 tokens per session scan B fa8905fe14d3

Subscribe to this mod's changes

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.