aelix-coding-agent 0.0.0a0__tar.gz

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.
@@ -0,0 +1,67 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.egg-info/
6
+ build/
7
+ dist/
8
+ .coverage
9
+ .pytest_cache/
10
+
11
+ # Virtual environments
12
+ .venv/
13
+ venv/
14
+
15
+ # Local environment
16
+ .env
17
+ .env.local
18
+
19
+ # Editor / OS
20
+ .DS_Store
21
+ .idea/
22
+ .vscode/
23
+
24
+ # Agent / OMC developer state — never publish (#111 B-7).
25
+ #
26
+ # The previous rules were `.omc/state/` + `.omc/sessions/`. A gitignore pattern
27
+ # with a slash in the middle is ANCHORED to the directory holding the .gitignore,
28
+ # so those two matched ONLY `/.omc/state/` at the repo root. A nested
29
+ # `packages/aelix-coding-agent/src/aelix_coding_agent/.omc/state/` escaped them
30
+ # entirely, stayed untracked-but-present on a maintainer's disk, and hatchling
31
+ # (which honours these ignore rules when selecting build files) swept maintainer
32
+ # session transcripts straight into the published wheel and sdist.
33
+ #
34
+ # A NESTED `.omc` is always developer state and is ignored at any depth, which is
35
+ # what closes the leak. The REPO-ROOT `.omc/` is different: `.omc/specs/` is the
36
+ # committed sprint-plan record, not scratch — 50 files are tracked there and every
37
+ # recent sprint (P2, P3, W1-A, #114, #118) commits its plan alongside the code it
38
+ # describes. Requiring `git add -f` for those is friction pointed at the wrong
39
+ # thing: P1's plan was written, left unstaged, and lost exactly that way.
40
+ #
41
+ # So: ignore everything directly under the root `.omc/` EXCEPT `specs/`. Git
42
+ # cannot re-include a path whose parent directory is excluded, which is why this
43
+ # is `/.omc/*` (contents) rather than `/.omc/` (the directory itself).
44
+ #
45
+ # Publishing is NOT what this rule protects — the wheel and sdist are guarded
46
+ # independently by the `exclude` blocks in each pyproject, proven by
47
+ # `tests/packaging/test_build_hygiene.py`: strip `.omc` from those excludes and
48
+ # planted state leaks into the wheel even with this file untouched.
49
+ /.omc/*
50
+ !/.omc/specs/
51
+ **/*/.omc/
52
+ .ruff_cache/
53
+
54
+ # Agent instruction files — local to a maintainer's checkout, not product.
55
+ CLAUDE.md
56
+ AGENTS.md
57
+
58
+ # Exported TUI session transcripts (`/export`) land in the CWD.
59
+ aelix-session-*.html
60
+
61
+ # Claude Code local settings
62
+ .claude/settings.local.json
63
+
64
+ # Name-reservation build output (scripts/reserve_*_names.py) — regenerable
65
+ /dist-reservation/
66
+ /npm-reservation/
67
+ /.reservation-build/
@@ -0,0 +1,32 @@
1
+ Metadata-Version: 2.4
2
+ Name: aelix-coding-agent
3
+ Version: 0.0.0a0
4
+ Summary: Placeholder, no code yet — name reserved for Aelix: ExtensionAPI, the extension loader and the built-in extensions.
5
+ Project-URL: Homepage, https://handochan.github.io/aelix-ai/
6
+ Project-URL: Source, https://github.com/handochan/aelix-ai
7
+ Author: Aelix Contributors
8
+ License-Expression: Apache-2.0
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3
13
+ Requires-Python: >=3.11
14
+ Description-Content-Type: text/markdown
15
+
16
+ # aelix-coding-agent
17
+
18
+ **This is a placeholder release. It contains no code.**
19
+
20
+ `aelix-coding-agent` is a reserved distribution name for
21
+ [Aelix](https://handochan.github.io/aelix-ai/) — an agent runtime and extension platform in pure Python.
22
+ Within the project it is ExtensionAPI, the extension loader and the built-in extensions.
23
+
24
+ The real package is `aelix-coding-agent` and is not on PyPI yet. Until it is, installing
25
+ this gives you an empty distribution; it is published only so the name stays
26
+ with the project that is building it.
27
+
28
+ * Source: https://github.com/handochan/aelix-ai
29
+ * Homepage: https://handochan.github.io/aelix-ai/
30
+ * Install today: `curl -fsSL https://raw.githubusercontent.com/handochan/aelix-ai/main/install.sh | sh`
31
+
32
+ Licensed under Apache-2.0.
@@ -0,0 +1,17 @@
1
+ # aelix-coding-agent
2
+
3
+ **This is a placeholder release. It contains no code.**
4
+
5
+ `aelix-coding-agent` is a reserved distribution name for
6
+ [Aelix](https://handochan.github.io/aelix-ai/) — an agent runtime and extension platform in pure Python.
7
+ Within the project it is ExtensionAPI, the extension loader and the built-in extensions.
8
+
9
+ The real package is `aelix-coding-agent` and is not on PyPI yet. Until it is, installing
10
+ this gives you an empty distribution; it is published only so the name stays
11
+ with the project that is building it.
12
+
13
+ * Source: https://github.com/handochan/aelix-ai
14
+ * Homepage: https://handochan.github.io/aelix-ai/
15
+ * Install today: `curl -fsSL https://raw.githubusercontent.com/handochan/aelix-ai/main/install.sh | sh`
16
+
17
+ Licensed under Apache-2.0.
@@ -0,0 +1,30 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.27"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "aelix-coding-agent"
7
+ version = "0.0.0a0"
8
+ description = "Placeholder, no code yet — name reserved for Aelix: ExtensionAPI, the extension loader and the built-in extensions."
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = "Apache-2.0"
12
+ authors = [{ name = "Aelix Contributors" }]
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "Intended Audience :: Developers",
16
+ "Operating System :: OS Independent",
17
+ "Programming Language :: Python :: 3",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://handochan.github.io/aelix-ai/"
22
+ Source = "https://github.com/handochan/aelix-ai"
23
+
24
+ # No packages: a placeholder must not ship an importable module, or it would
25
+ # shadow the real package's import name for anyone who installed it early.
26
+ [tool.hatch.build.targets.wheel]
27
+ bypass-selection = true
28
+
29
+ [tool.hatch.build.targets.sdist]
30
+ only-include = ["README.md", "pyproject.toml"]