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/batteryshark/rekit/pyc-decompilenpx skills add batteryshark/rekit --skill pyc-decompilegit clone --depth 1 https://github.com/batteryshark/rekitWrote 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/batteryshark/rekit/pyc-decompile)<a href="https://agentmods.dev/skills/batteryshark/rekit/pyc-decompile"><img src="https://agentmods.dev/badge/skills/batteryshark/rekit/pyc-decompile.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 | $0.00074 | $0.00610 |
| Opus 5 | $0.00037 | $0.00305 |
| Sonnet 5 | $0.00015 | $0.00122 |
| Haiku 4.5 | $0.00007 | $0.00061 |
Grade A, and why
pyc-decompile 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 4d 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.
What it actually says
Python Bytecode Decompiler
Decompile Python bytecode (.pyc / compiled code objects) back to source with
decompyle3.
When to use
You have compiled Python but not the source: a stray .pyc, the __pycache__ of a
suspicious package, or (most commonly) bytecode carved out of a PyInstaller /
py2exe bundle. Decompiling recovers readable source you can then scan for the real
behaviour.
When inventory finds .pyc artifacts with no matching source, decompile them and
rescan the recovered .py.
What it does
Reads the bytecode statically (unmarshals the code object, disassembles it) and
reconstructs equivalent Python source. It does not import, exec, or run the
.pyc — safe on hostile bytecode.
Best on CPython 3.7–3.8 bytecode (decompyle3's target range). The runner detects
the bytecode's version and tells you whether it's in range; for older bytecode use
uncompyle6, and 3.9+ needs a version-matched decompiler.
Usage
rekit run pyc-decompile ./payload.pyc ./out
# or
python3 skills/pyc-decompile/scripts/run.py ./payload.pyc ./out
Writes out/decompiled.py and prints a JSON result:
{"ok": true, "outputFile": "out/decompiled.py", "detectedVersion": "3.8",
"supported": true, "bytesOut": 412}
On an out-of-range or corrupt .pyc it fails honestly with the detected version and
a pointer to the right tool — it does not emit a half-guessed decompilation.
Prerequisites
- python3 ≥ 3.8 — to run the decompiler. The target
.pycmay be a different version; decompyle3 (and its pure-Python deps) is installed underscripts/site, so no network/install at analysis time.
Rebuilding the payload
scripts/site is populated from a pinned scripts/requirements.txt by
scripts/build.sh (uv pip install --target, build time only). Pure-Python, so the
vendored tree is portable across OS/arch.
What ships with it
3 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.
- 4d ago First seen · 60 lines · 74 tokens per session scan A 25176150de8b
pyc-decompile is a skill published in the GitHub repository batteryshark/rekit (11 stars, last pushed 26d ago), licensed Apache-2.0. It adds 74 tokens to every session and 610 once invoked, about $0.0004 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
agent-framework-azure-ai-py
Build persistent agents on Azure AI Foundry using the Microsoft Agent Framework Python SDK.
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.
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.
dd-code-generation
Use pup CLI for immediate Datadog operations or generate code for integration into applications.
python-code-reviewer
Review Python OpenInference instrumentation code for correctness and completeness. Use this skill when reviewing a Python instrumentor package — whether it's a new instrumentor, a PR that modifies one, or when the user asks to audit/review/check an existing instrumentor's code quality. Trigger on phrases like "review…
rocm-kernels
Provides guidance for writing and benchmarking optimized Triton kernels for AMD GPUs (MI355X, R9700) on ROCm, targeting HuggingFace diffusers (LTX-Video, SD3, FLUX) and transformers. Core kernels: RMSNorm, RoPE 3D, GEGLU, AdaLN. Includes XCD swizzle, autotune, diffusers integration patterns, and LTX-Video pipeline…