aidem 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
aidem/__init__.py ADDED
@@ -0,0 +1,14 @@
1
+ """aidem: AI development environment manager.
2
+
3
+ Layers:
4
+ 0. Registry -- git clone skill/tool repos and (optionally) install binaries via uv.
5
+ 1. Bridging -- one-time dir symlinks from each IDE's skills dir into ~/.aidem/skills;
6
+ plus repo init (a single committed AGENTS.md).
7
+ 2. Execution -- pass-through run of registered tools in isolated uv environments.
8
+
9
+ User data (skills, registry, manifest) lives in ~/.aidem (overridable via
10
+ AIDEM_DATA_DIR). Shipped package assets (generators, overlays, canonical
11
+ AGENTS.md) travel with the install and are read-only.
12
+ """
13
+
14
+ __version__ = "0.1.0"