How-To Guides
Task-oriented guides for common workflows.
- Promote a helper into
axm-ingot— the two gates (Rule of Three + light-leaf) and the migration ritual.
Two quick recipes inline below; the promotion ritual has its own page above.
List the members of a uv workspace
Python
from pathlib import Path
from axm_ingot import resolve_workspace
workspace = resolve_workspace(Path("."))
member_paths = [m.path for m in workspace.members] if workspace else []
member_names = [m.name for m in workspace.members] if workspace else []