wire-shared-package
Installation
SKILL.md
Wire Shared Package
Wire a shared Python package as an editable local dependency across multiple research projects. Handles pyproject.toml creation, CLAUDE.md documentation, and Atlas infrastructure tracking.
When to Use
- A shared package exists and needs to be wired into downstream projects
- "Add collusion-sim as a dependency to these projects"
- "Wire up the shared package"
- "Set up cross-project dependency"
- After creating a shared package with
computational-experimentsscaffold mode
Phase 1: Discover
- Identify the shared package:
- Read its
pyproject.tomlto get name, version, and what it provides - Read its
CLAUDE.mdorREADME.mdfor module inventory - Confirm it installs cleanly:
uv pip install -e ".[dev]"
- Read its