Getting it into your agent
There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.
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.
[](https://agentmods.dev/skills/zhang-henry/coevoskills/evo-python-build-fixer)<a href="https://agentmods.dev/skills/zhang-henry/coevoskills/evo-python-build-fixer"><img src="https://agentmods.dev/badge/skills/zhang-henry/coevoskills/evo-python-build-fixer.svg" alt="Measured on agentmods" 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.00048 | $0.00596 |
| Opus 5 | $0.00024 | $0.00298 |
| Sonnet 5 | $0.00010 | $0.00119 |
| Haiku 4.5 | $0.00005 | $0.00060 |
Grade A, and why
evo-python-build-fixer 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.
How it starts
The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Python Build Fixer Skill
This skill diagnoses and fixes Python build failures in CI environments, particularly those using tox for multi-version testing and GitHub Actions.
Workflow
- Discover the repository structure and build configuration
- Reproduce the build failure by running tox
- Analyze error output to classify root causes
- Generate minimal patches in unified diff format
- Apply patches and verify fixes
- Validate all required output artifacts exist
Usage
import sys
sys.path.insert(0, '/app/environment/skills/evo-python-build-fixer/scripts')
from utils import discover_repo, analyze_build_failure, generate_patch, apply_patches, validate_outputs
# Step 1: Discover the repository
repo_path = discover_repo('/home/github/build/failed')
# Step 2: Analyze the build failure
analysis = analyze_build_failure(repo_path)
# Step 3: Write analysis
write_analysis(analysis, '/home/github/build/failed/failed_reasons.txt')
# Step 4: Generate and write patches
for i, fix in enumerate(analysis['fixes']):
patch_content = generate_patch(repo_path, fix['file'], fix['original'], fix['replacement'])
patch_path = f"{repo_path}/patch_{i+1}.diff"
with open(patch_path, 'w') as f:
f.write(patch_content)
# Step 5: Apply patches
apply_patches(repo_path)
# Step 6: Validate
validate_outputs(repo_path, '/home/github/build/failed/failed_reasons.txt')
Common Error Patterns
1. Version Compatibility
importlib.metadata(Python 3.8+)list[Type]built-in generics (Python 3.9+ at module level)matchstatements (Python 3.10+)typing.TypeAlias(Python 3.10+)- f-string enhancements (Python 3.12+)
2. Dependency Migration
langchain.callbacks.basemoved tolangchain_core.callbacks.base- Other package reorganizations across major versions
3. Dataclass Default Issues
default_factorysetting values at creation time that should be set later- Mutable default arguments
4. Diagnostic Strategy
- Run tox per-environment to isolate failures
- Check the first failing step in the pipeline
- Distinguish tox setup errors from pytest collection errors from test execution errors
- Correlate errors with Python version to identify compatibility issues
What ships with it
2 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.
- 8d ago First seen · 72 lines · 48 tokens per session scan A fbf1dea2da30
evo-python-build-fixer is a skill published in the GitHub repository Zhang-Henry/CoEvoSkills (65 stars, last pushed 18d ago), licensed Apache-2.0. It adds 48 tokens to every session and 596 once invoked, about $0.0002 per session on Opus 5. 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-30.
Other skills, from other repositories
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.
plugin-architecture-patterns
Design, implement, or diagnose Xberg plugin traits, typed registries, priority collisions, lifecycle, native extractors, and Alef-generated Python plugin bridges. Load for plugin-system work, not ordinary extractor parsing.
test-corpus
The testdocuments submodule is a bucket-fetched fixture corpus that is not committed. This skill covers readtestfixture, missing fixtures, valid A/B controls, and submodule push order. Load before running Rust tests on a fresh clone, setting up an A/B control, adding a fixture-backed test, or diagnosing…
idapython
IDA Pro Python scripting for reverse engineering. Use when writing IDAPython scripts, analyzing binaries, working with IDA's API for disassembly, decompilation (Hex-Rays), type systems, cross-references, functions, segments, or any IDA database manipulation. Covers ida modules (50+), idautils iterators, and common…
stack-trace-python-probe
Internal helper for meta-stack-trace-investigator. Use when a Python traceback needs Python-specific root-cause checks, pytest reproducer guidance, and defensive patch targets.
python-debug-execution-911f17
Debug Python script execution failures by capturing full tracebacks and verifying working directory.