cortexcode-agent-core 0.0.1__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,23 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.egg-info/
5
+ .eggs/
6
+ build/
7
+ dist/
8
+
9
+ # Environments
10
+ .venv/
11
+ venv/
12
+
13
+ # Tooling caches
14
+ .pytest_cache/
15
+ .ruff_cache/
16
+ .mypy_cache/
17
+ .pyright/
18
+
19
+ # uv
20
+ # (uv.lock is committed)
21
+
22
+ # OS
23
+ .DS_Store
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: cortexcode-agent-core
3
+ Version: 0.0.1
4
+ Summary: Agent loop, harness, and tool dispatch for cortex
5
+ Requires-Python: >=3.11
6
+ Description-Content-Type: text/markdown
7
+
8
+ # cortexcode-agent-core — placeholder (migration in progress)
@@ -0,0 +1 @@
1
+ # cortexcode-agent-core — placeholder (migration in progress)
@@ -0,0 +1,17 @@
1
+ [project]
2
+ name = "cortexcode-agent-core"
3
+ version = "0.0.1"
4
+ description = "Agent loop, harness, and tool dispatch for cortex"
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ dependencies = []
8
+
9
+ [tool.cortex]
10
+ publish = false
11
+
12
+ [build-system]
13
+ requires = ["hatchling"]
14
+ build-backend = "hatchling.build"
15
+
16
+ [tool.hatch.build.targets.wheel]
17
+ packages = ["src/cortex"]