init: document-haness 하네스 설계

This commit is contained in:
DongHyeonka
2026-07-24 13:58:08 +09:00
parent d6f78f92a0
commit c39406bbdd
219 changed files with 7010 additions and 20052 deletions
+34 -9
View File
@@ -1,10 +1,35 @@
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"
markers = [
"live: 실제 LLM CLI와 설치된 스킬을 호출하는 선택적 통합 테스트",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.ruff]
target-version = "py311"
line-length = 100
[project]
name = "claridoc-harness"
version = "0.1.0"
description = "Contract-first, multi-agent harness for logically structured technical documentation"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "ClariDoc Harness Contributors" }]
keywords = ["technical-writing", "documentation", "llm", "codex", "claude", "antigravity"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Documentation",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = []
[project.optional-dependencies]
antigravity = ["google-antigravity>=0.1.7"]
dev = []
[project.scripts]
claridoc = "claridoc.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]