Skip to content

Commit 7ce469b

Browse files
committed
v1.1: modular package layout, test suite, CI
- split into helpers / formatting / transport / tools / commands with a thin register() entry point (function bodies unchanged) - 28-test stdlib-only suite covering helpers, parsing, formatting, multi-hop merging, and the full registration surface - GitHub Actions workflow (python 3.10-3.12) + README test badge
1 parent 1549522 commit 7ce469b

10 files changed

Lines changed: 1294 additions & 942 deletions

File tree

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# CI for the standalone public repo (this directory is its root; nested
2+
# .github/ dirs are inert inside the monorepo).
3+
name: tests
4+
5+
on:
6+
push:
7+
branches: [main]
8+
pull_request:
9+
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
python-version: ["3.10", "3.11", "3.12"]
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: actions/setup-python@v5
19+
with:
20+
python-version: ${{ matrix.python-version }}
21+
- run: python test_plugin.py

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# sourcevault-code-tools
22

3+
![tests](https://github.com/Ocasio-Perez/sourcevault-code-tools/actions/workflows/test.yml/badge.svg)
4+
35
A [Hermes Agent](https://github.com/nousresearch/hermes-agent) plugin that
46
gives Hermes **persistent, private memory of your codebases** — semantic code
57
search, exact file reads, and grounded repo Q&A with file-and-line citations.

0 commit comments

Comments
 (0)