Milestone 0 plus the manual-registry spine from Milestone 1

This commit is contained in:
2026-04-25 22:00:26 +02:00
parent a833d4f82c
commit 3b2d1667bb
13 changed files with 1000 additions and 2 deletions

View File

@@ -1,3 +1,48 @@
# repo-seed
# Repository Ability Registry
A git repository template to bootstrap coulomb projects from.
The Repository Ability Registry maps repositories from usefulness to implementation:
```text
Ability -> Capability -> Feature -> Evidence -> Code location
```
The first implementation slice is a Python registry core plus FastAPI HTTP API for manual repository profiles. It deliberately separates the manual/canonical registry path from the later analyzer pipeline.
## Local Development
Create an environment and install dependencies:
```bash
python3 -m venv .venv
. .venv/bin/activate
python -m pip install -e ".[dev]"
```
Run tests:
```bash
pytest
```
Run the API:
```bash
uvicorn repo_registry.web_api.app:app --reload
```
The API creates a local SQLite database at `var/repo-registry.sqlite3` by default.
## First API Loop
```bash
curl -X POST http://127.0.0.1:8000/repos \
-H 'content-type: application/json' \
-d '{"name":"MailRouter","url":"https://example.com/mail-router.git"}'
```
Then add abilities, capabilities, features, and evidence under that repository and inspect:
```bash
curl http://127.0.0.1:8000/repos/1/ability-map
curl 'http://127.0.0.1:8000/search?q=classify'
```