Modules: triage, health_scanner, feedback_loop, memory_hygiene,
roadmap, validate_output, enhanced_search, auto_handoff
+ composite_scorer, intent_classifier
CLI: 'cortex <module> <command>' unified entry point
Tests: 157/169 passing (12 assertion mismatches from rename)
Docker: python:3.11-slim based
23 lines
557 B
TOML
23 lines
557 B
TOML
[build-system]
|
|
requires = ["setuptools>=68.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "cortex"
|
|
version = "0.1.0"
|
|
description = "Intelligence layer for OpenClaw — triage, health, feedback, memory hygiene, roadmap, validation"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "Claudia & Albert", email = "hildalbert@gmail.com"},
|
|
]
|
|
|
|
[project.scripts]
|
|
cortex = "cortex.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["cortex*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|