build(ci): uv toolchain, release-please semver; feat(skills): vendor tools self-contained (no symlinks, relative refs)

- bin/db/psql-yq + bin/web/search + tools/{yamlout,websearch} vendored as real files
- bin/db/ssh-tunnel added (OnlyOffice VM pg on 5433)
- skills reference local bin/ paths; no agent-skills/abs links in git
- pyproject.toml + uv.lock; CI installs via uv sync --frozen
- release-please auto-tags semver from conventional commits when green
- LICENSE MIT, badges/mermaid README
This commit is contained in:
2026-08-10 21:24:42 +01:00
parent d4a88eead7
commit 63d3be0e19
31 changed files with 1795 additions and 39 deletions
+18 -13
View File
@@ -1,34 +1,39 @@
name: ci
name: Tests
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.25"
fetch-depth: 0
- uses: actions/setup-python@v5
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
python-version: "3.12"
- name: Go vet + test
run: |
go vet ./... 2>/dev/null || true
go test ./... 2>/dev/null || true
- name: Sync toolchain (ladybug, model2vec, mistune)
run: uv sync --frozen
- name: Python install (tool deps)
- name: Shell syntax check
run: |
pip install --quiet numpy mistune 2>/dev/null || true
bash -n bin/db/psql-yq
- name: Python unit tests (offline)
- name: Python unit tests (offline, vendored tools)
run: |
python -m unittest discover -s tools -t . 2>/dev/null || true
uv run python -m unittest discover -s tools -t .
- name: facts/audit self (lexicon consistency, no network)
run: |