Dependencies
This skill requires Python 3.8+ and standard library only. No external packages needed.
To install this skill's dependencies:
pip-compile ./requirements.in
pip install -r ./requirements.txt
See ./requirements.txt for the dependency lockfile (currently empty — standard library only).
Dependency Management
- One runtime per service. Each isolated service owns its own
./requirements.txt lockfile.
Script Architecture & Packaging
For plugin packaging, DRY script distribution, and Windows symlink/junction compatibility rules, see the authoritative shared plugin packaging guidelines.
Repository Layout (Example)
src/
├── requirements-core.in # Tier 1: shared baseline (fastapi, pydantic…)
├── requirements-core.txt # Lockfile for core
├── services/
│ ├── auth_service/
│ │ ├── requirements.in # Tier 2: inherits core + auth deps
│ │ └── requirements.txt
│ ├── payments_service/
│ │ ├── requirements.in
│ │ └── requirements.txt
│ └── database_service/
│ ├── requirements.in
│ └── requirements.txt
Tiered Hierarchy
| Tier |
Scope |
File |
Examples |
| 1 – Core |
Shared by >80% of services |
requirements-core.in |
fastapi, pydantic, httpx |
| 2 – Specialized |
Service-specific heavyweights |
<service>/requirements.in |
stripe, redis, asyncpg |
| 3 – Dev tools |
Never in production containers |
requirements-dev.in |
pytest, black, ruff |
Each service .in file usually begins with -r ../../requirements-core.in to inherit the core dependencies.
Workflow: Adding or Upgrading a Package
Declare — Add or update the version constraint in the correct .in file.
- If the package is needed by most services →
requirements-core.in
- If only one service → that service's
.in
- Security floor pins use
>= syntax: cryptography>=46.0.5
Lock — Compile the lockfile:
# Core
pip-compile src/requirements-core.in \
--output-file src/requirements-core.txt
# Individual service (example: auth)
pip-compile src/services/auth_service/requirements.in \
--output-file src/services/auth_service/requirements.txt
Because services inherit core via -r, recompiling a service also picks up core changes.
Sync — Install locally to verify:
Preferred (if available):
pip-sync src/services/<service>/requirements.txt
Fallback:
pip install -r src/services/<service>/requirements.txt
Verify — Rebuild the affected Docker/Podman container to confirm stable builds.
Commit — Stage and commit both .in and .txt files together.
Workflow: Responding to Dependabot / Security Alerts
Identify the affected package and fixed version from the advisory (GHSA/CVE).
Determine tier placement:
- Check if the package is a direct dependency (appears in an
.in file).
- If it only appears in
.txt files, it's transitive — pinned by something upstream.
For direct dependencies: Bump the version floor in the relevant .in file.
# SECURITY PATCHES (Mon YYYY)
package-name>=X.Y.Z
For transitive dependencies: Add a version floor pin in the appropriate .in file
to force the resolver to pull the patched version, even though it's not a direct dependency.
Recompile all affected lockfiles. Since services inherit core, a core change means
recompiling every service lockfile. Use this compilation order:
# 1. Core first
pip-compile src/requirements-core.in \
--output-file src/requirements-core.txt
# 2. Then each service
for svc in auth_service payments_service database_service; do
pip-compile "src/services/${svc}/requirements.in" \
--output-file "src/services/${svc}/requirements.txt"
done
Verify the patched version appears in all affected .txt files:
grep -i "package-name" src/requirements-core.txt \
src/services/*/requirements.txt
If no newer version exists (e.g., inherent design risk like pickle deserialization),
document the advisory acknowledgement as a comment in the .in file and note mitigations.
Container / Dockerfile Constraints
- Dockerfiles only use
COPY requirements.txt + RUN pip install -r requirements.txt.
- No
RUN pip install <pkg> commands. No manual installs.
- Copy
requirements.txt before source code to preserve Docker layer caching.
Non-Negotiable Execution Rules
The agent MUST NOT:
- Run
pip install <pkg> directly to resolve dependency issues.
- Modify
.txt lockfiles manually.
- Bypass
pip-compile failures.
- Ignore missing tools (e.g.,
pip-compile not installed).
- Continue after dependency conflicts without resolution.
If any of the above occurs:
- HALT execution immediately.
- Classify using the self-evolution profile.
- Either:
- Fix within allowed directories, OR
- Log to
map-debt.md.
- Report explicitly to the user.
Workarounds are considered Tier 0 Friction and must be logged.
Self-Evolution Requirements
When this skill encounters friction, failure, ambiguity, or a workaround:
- Do not silently bypass the issue.
- Classify the issue using
references/self-evolution-profile.md.
- If fixed within allowed directories, update the relevant skill/reference file.
- Add an entry to
references/evolution-log.md.
- If not fixed, add an entry to
references/map-debt.md with severity, repeat risk, and recommended fix.
When to Record Map Debt
Log to map-debt.md when:
- Tooling is missing (e.g.
pip-compile is absent).
- Conflicts require human resolution.
- The dependency graph is ambiguous.
- Instructions in this plugin are unclear or contradictory.
Do not silently proceed.
Common Pitfalls
- Forgetting to recompile downstream services after a core
.in change.
- Pinning
== instead of >= for security floors — use >= so pip-compile can resolve freely.
- Adding dev tools to production
.in files — keep pytest, ruff, etc. in requirements-dev.in.
- Committing
.txt without .in — always commit them as a pair.
1---2name: dependency-management3description: Python dependency and environment management for multi-service or monorepo python backends. Use when: (1) adding, upgrading, or removing a Python package, (2) responding to Dependabot or security vulnerability alerts (GHSA/CVE), (3) creating a new service that needs its own requirements files, (4) debugging pip install failures or Docker build issues related to dependencies, (5) reviewing or auditing the dependency tree, (6) running pip-compile. Enforces the pip-compile locked-file workflow and tiered dependency hierarchy.4---56## Dependencies78This skill requires **Python 3.8+** and standard library only. No external packages needed.910**To install this skill's dependencies:**11```bash12pip-compile ./requirements.in13pip install -r ./requirements.txt14```1516See `./requirements.txt` for the dependency lockfile (currently empty — standard library only).1718---19# Dependency Management20213. **One runtime per service.** Each isolated service owns its own `./requirements.txt` lockfile.2223## Script Architecture & Packaging2425For plugin packaging, DRY script distribution, and Windows symlink/junction compatibility rules, see the authoritative shared plugin packaging guidelines.2627## Repository Layout (Example)2829```30src/31├── requirements-core.in # Tier 1: shared baseline (fastapi, pydantic…)32├── requirements-core.txt # Lockfile for core33├── services/34│ ├── auth_service/35│ │ ├── requirements.in # Tier 2: inherits core + auth deps36│ │ └── requirements.txt37│ ├── payments_service/38│ │ ├── requirements.in39│ │ └── requirements.txt40│ └── database_service/41│ ├── requirements.in42│ └── requirements.txt43```4445## Tiered Hierarchy4647| Tier | Scope | File | Examples |48|------|-------|------|----------|49| **1 – Core** | Shared by >80% of services | `requirements-core.in` | `fastapi`, `pydantic`, `httpx` |50| **2 – Specialized** | Service-specific heavyweights | `<service>/requirements.in` | `stripe`, `redis`, `asyncpg` |51| **3 – Dev tools** | Never in production containers | `requirements-dev.in` | `pytest`, `black`, `ruff` |5253Each service `.in` file usually begins with `-r ../../requirements-core.in` to inherit the core dependencies.5455## Workflow: Adding or Upgrading a Package56571. **Declare** — Add or update the version constraint in the correct `.in` file.58 - If the package is needed by most services → `requirements-core.in`59 - If only one service → that service's `.in`60 - Security floor pins use `>=` syntax: `cryptography>=46.0.5`61622. **Lock** — Compile the lockfile:63 ```bash64 # Core65 pip-compile src/requirements-core.in \66 --output-file src/requirements-core.txt6768 # Individual service (example: auth)69 pip-compile src/services/auth_service/requirements.in \70 --output-file src/services/auth_service/requirements.txt71 ```72 Because services inherit core via `-r`, recompiling a service also picks up core changes.73743. **Sync** — Install locally to verify:75 Preferred (if available):76 ```bash77 pip-sync src/services/<service>/requirements.txt78 ```79 Fallback:80 ```bash81 pip install -r src/services/<service>/requirements.txt82 ```8384854. **Verify** — Rebuild the affected Docker/Podman container to confirm stable builds.86875. **Commit** — Stage and commit **both** `.in` and `.txt` files together.8889## Workflow: Responding to Dependabot / Security Alerts90911. **Identify the affected package and fixed version** from the advisory (GHSA/CVE).92932. **Determine tier placement:**94 - Check if the package is a **direct** dependency (appears in an `.in` file).95 - If it only appears in `.txt` files, it's **transitive** — pinned by something upstream.96973. **For direct dependencies:** Bump the version floor in the relevant `.in` file.98 ```99 # SECURITY PATCHES (Mon YYYY)100 package-name>=X.Y.Z101 ```1021034. **For transitive dependencies:** Add a version floor pin in the appropriate `.in` file104 to force the resolver to pull the patched version, even though it's not a direct dependency.1051065. **Recompile all affected lockfiles.** Since services inherit core, a core change means107 recompiling every service lockfile. Use this compilation order:108 ```bash109 # 1. Core first110 pip-compile src/requirements-core.in \111 --output-file src/requirements-core.txt112113 # 2. Then each service114 for svc in auth_service payments_service database_service; do115 pip-compile "src/services/${svc}/requirements.in" \116 --output-file "src/services/${svc}/requirements.txt"117 done118 ```1191206. **Verify the patched version appears** in all affected `.txt` files:121 ```bash122 grep -i "package-name" src/requirements-core.txt \123 src/services/*/requirements.txt124 ```1251267. **If no newer version exists** (e.g., inherent design risk like pickle deserialization),127 document the advisory acknowledgement as a comment in the `.in` file and note mitigations.128129## Container / Dockerfile Constraints130131- Dockerfiles **only** use `COPY requirements.txt` + `RUN pip install -r requirements.txt`.132- No `RUN pip install <pkg>` commands. No manual installs.133- Copy `requirements.txt` **before** source code to preserve Docker layer caching.134135## Non-Negotiable Execution Rules136137The agent MUST NOT:138- Run `pip install <pkg>` directly to resolve dependency issues.139- Modify `.txt` lockfiles manually.140- Bypass `pip-compile` failures.141- Ignore missing tools (e.g., `pip-compile` not installed).142- Continue after dependency conflicts without resolution.143144If any of the above occurs:1451. **HALT** execution immediately.1462. Classify using the self-evolution profile.1473. Either:148 - Fix within allowed directories, OR149 - Log to `map-debt.md`.1504. Report explicitly to the user.151152Workarounds are considered Tier 0 Friction and must be logged.153154155## Self-Evolution Requirements156157When this skill encounters friction, failure, ambiguity, or a workaround:1581. Do not silently bypass the issue.1592. Classify the issue using `references/self-evolution-profile.md`.1603. If fixed within allowed directories, update the relevant skill/reference file.1614. Add an entry to `references/evolution-log.md`.1625. If not fixed, add an entry to `references/map-debt.md` with severity, repeat risk, and recommended fix.163164165## When to Record Map Debt166167Log to `map-debt.md` when:168- Tooling is missing (e.g. `pip-compile` is absent).169- Conflicts require human resolution.170- The dependency graph is ambiguous.171- Instructions in this plugin are unclear or contradictory.172173Do not silently proceed.174175176## Common Pitfalls177178- **Forgetting to recompile downstream services** after a core `.in` change.179- **Pinning `==` instead of `>=`** for security floors — use `>=` so `pip-compile` can resolve freely.180- **Adding dev tools to production `.in` files** — keep `pytest`, `ruff`, etc. in `requirements-dev.in`.181- **Committing `.txt` without `.in`** — always commit them as a pair.182