generated from coulomb/repo-seed
Some checks failed
ci / validate-registry (push) Has been cancelled
Closes the registry maintenance loop from inside each domain repo: interactive prompting for judgment calls, full automation for safe and high-confidence changes, both backed by the llm-connect HTTP bridge. - New modules: maintain.py, maintain_llm.py, patches.py, interactive.py - Schema: schemas/registry-patch.schema.json - CLI: reuse-surface maintain; establish --scaffold --hook - Sibling templates: Makefile fragment, pre-commit hook - Deterministic signal collectors extended; validate cwd auto-detect - Docs, gap priority 28, SCOPE update - Tests: test_maintain.py, test_interactive.py (59 pytest total) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
12 lines
501 B
Makefile
12 lines
501 B
Makefile
# Append to sibling repo Makefile (adjust REPO slug if needed).
|
|
REGISTRY_RAW_URL ?= https://gitea.coulomb.social/coulomb/$(notdir $(CURDIR))/raw/main/registry/indexes/capabilities.yaml
|
|
|
|
.PHONY: registry-maintain registry-check
|
|
|
|
registry-maintain:
|
|
reuse-surface maintain --all --from-git-since origin/main
|
|
|
|
registry-check:
|
|
reuse-surface maintain --all --from-git-since origin/main --auto --no-llm
|
|
reuse-surface validate --root .
|
|
reuse-surface establish --publish-check --raw-url $(REGISTRY_RAW_URL)
|