Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## Unreleased

A2A message envelope: `POST /a2a/send` now accepts optional `refs` and `blocks` fields. `refs` is a list of up to 8 structured reference objects (kind, title, uri, etc.), and `blocks` is a list of arbitrary objects for rich content. The total serialized message is capped at 64KB. `body` remains required when `blocks` is absent, and is required alongside `blocks` when blocks are present (PR #212).

`GET /version` endpoint with a contract-identifier capabilities list (new `taosmd.capabilities` module). The server publishes what the running build actually supports, because neither a status code nor a version number could answer that question reliably. `GET /health` also gains the same capabilities list. Capabilities are stable contract identifiers with an explicit version suffix (e.g. `collections.v1`), not feature names, so a breaking change becomes `collections.v2` and a client pinned to `v1` sees the capability disappear rather than silently meaning something new. The list is derived at request time by probing the running build (PR #213).

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Remove the duplicate /version release note.

This entry repeats the /version and capabilities change already documented in Line [13] of CHANGELOG.md. Keep one canonical entry, or merge the additional detail into this entry and remove the duplicate.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@CHANGELOG.md` at line 7, Remove the duplicate /version capabilities release
note from CHANGELOG.md, preserving a single canonical entry and merging any
unique useful details into it before deleting the repetition.


CollectionStore opens `collections.db` via the shared `_db.connect` helper, gaining WAL journal mode and a busy timeout like every other store in the package (PR #215).

Dev and test dependencies moved into a PEP 735 `[dependency-groups] dev` group, so a bare `uv sync` from a clean checkout installs pytest, pytest-asyncio, and the auth extras needed by the test suite with no flags (PR #219).

`GET /version` with a capability list (new `taosmd.capabilities` module). The server now publishes what the running build actually supports, because neither a status code nor a version number could answer that. `taosmd serve` renders the dashboard SPA on unknown non-API paths, so `GET /collections` returns `200 text/html` on a build with no collections code, and an integrator who "verified" a route by checking for a 200 got a confident yes from a server that could not do the thing (this really happened, against the wrong service). Semver does not close the gap either: features land continuously between bumps, and a production box sat a month stale without anyone noticing even though `GET /health` already reported a version. `/version` returns `{"version", "commit", "commit_source", "built_at", "built_at_source", "capabilities"}` and `GET /health` gains the same `capabilities` list alongside its existing `status` and `version` keys, which are unchanged (taOS and the dashboard consume both). Both endpoints are unauthenticated by design, joining `/health` in `_PUBLIC_PATHS`, so monitoring and drift probes keep working on a token-secured box; they expose build identity and capability identifiers only (no paths, no tokens, no configuration). Capabilities are **stable contract identifiers with an explicit version suffix** (`collections.v1`, `grants.v1`, `temporal.v1`, `a2a.v1`, `tasks.v1`, `ingest.v1`, `search.v1`, `graph.v1`, `shelves.v1`), not feature names: a breaking change to a wire contract becomes `collections.v2`, so a client pinned to `collections.v1` sees the capability disappear (a visible break it can act on) rather than `collections` silently meaning something new; additive changes keep the identifier. The list is derived at request time by probing the running build (each identifier is declared next to the module and symbols that implement it, and is advertised only if they resolve), so deleting or renaming an implementation deletes the claim instead of leaving a stale boast, and a divergence test asserts every declared capability's routes exist in the real dispatcher. The commit sha is resolved once at first call and cached, never per request and never by shelling out: `git rev-parse` in a request path can block on a lock or a slow filesystem, so the git plumbing is read directly from the filesystem (`.git/HEAD` -> loose ref or `packed-refs`, including the `gitdir:` indirection used by worktrees and submodules), with an optional packaged `taosmd/_build_info.py` stamp taking precedence for wheel and container builds. Every step degrades to `null` rather than raising, so a pip install with no checkout and no stamp still gets a working endpoint.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WARNING: Duplicate CHANGELOG entry for PR #213

The new concise entry at line 7 (GET /version endpoint with a contract-identifier capabilities list) describes the same change as the existing verbose entry starting at this line (GET /version with a capability list). Both reference PR #213.

The old entry should have been removed when the new concise entries were inserted. As written, the Unreleased section contains two different versions of the same release note, which will produce duplicate or conflicting entries when the changelog is cut.


Reply with @kilocode-bot fix it to have Kilo Code address this issue.


Schema migration framework (`taosmd/migrations.py`, `docs/migrations.md`). Every SQLite database the package owns now carries a schema version in its own file via SQLite's native `PRAGMA user_version`, with an ordered list of migration steps per database and a runner that applies only the steps above the stored version, each inside its own transaction, stamping the new version atomically with the change it made. Before this there was no migration mechanism at all: schemas were created with `CREATE TABLE IF NOT EXISTS` and evolved by three hand-rolled `try/except ALTER TABLE` guards. That held only because every change so far was additive. `CREATE TABLE IF NOT EXISTS` does nothing to a database that already exists, so the first column added to an existing table would have reached new installs and no existing one, and every query naming it would have failed at runtime on exactly the stores holding real data. `collections.db` had no upgrade path whatsoever, so that break was one column away from every collections store in the field. The runner is cheap enough to call on every store open (one PRAGMA read when current) and each of `vector-memory.db`, `knowledge-graph.db`, `archive-index.db`, `session-catalog.db`, `claims.db`, and `collections.db` now runs it as part of opening, before its first query.
Expand Down
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ The agent will pull the repo, run the install, register itself, append the per-t

### One-Line Setup (manual)

> **Install:** `pip install taosmd` (add the MCP server with `pip install "taosmd[mcp]"`). For a source/dev install instead, `git clone` then `pip install -e .`. The one-line bootstrap below additionally installs Ollama and downloads the embedding and LLM models; it is newer and still being validated across clean machines, so please report issues.
> **Install:** `pip install taosmd` (add the MCP server with `pip install "taosmd[mcp]"`). For a source install instead, `git clone` then `pip install -e .`. Warning: `pip install -e .` installs the runtime only and gives you no test runner. The failure is silent, so a reader will otherwise assume their setup worked. See the Dev setup section below for the working commands. The one-line bootstrap below additionally installs Ollama and downloads the embedding and LLM models; it is newer and still being validated across clean machines, so please report issues.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

# Confirm the dependency-group configuration and the related README wording.
rg -n -A12 -B2 '^\[dependency-groups\]' pyproject.toml
rg -n -C2 'The failure is silent|pip install -e \.|uv sync' README.md

Repository: jaylfc/taosmd

Length of output: 2173


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== editable install installable metadata =="
sed -n '1,140p' pyproject.toml

echo
echo "== references to dependency groups / optional extras =="
rg -n 'dependency-groups|group=|optional-dependencies|uv (install|sync)|pip install \.|-e|pytest|test runner' README.md pyproject.toml

echo
echo "== package files =="
git ls-files | sed -n '/pyproject.toml/,+100p' | head -80

Repository: jaylfc/taosmd

Length of output: 19083


Describe the editable install result accurately.

pip install -e . installs the package successfully, but it does not install the PEP 735 dev dependency group or test tooling. Replace “The failure is silent” with wording such as “The install succeeds, but it does not install the test dependencies or a test runner.”

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@README.md` at line 65, Update the editable-install warning in the README’s
Install paragraph to accurately state that pip install -e . succeeds but does
not install the PEP 735 dev dependency group, test dependencies, or a test
runner; remove the claim that the failure is silent.


```bash
curl -fsSL https://raw.githubusercontent.com/jaylfc/taosmd/master/scripts/setup.sh | bash
Expand All @@ -80,6 +80,8 @@ This will:
```bash
git clone https://github.com/jaylfc/taosmd.git
cd taosmd

# Runtime only -- pip install -e . gives you no test runner
pip install -e .

# 1. Embedding model (required)
Expand All @@ -97,6 +99,26 @@ hf download dulimov/Qwen3-4B-rk3588-1.2.1-base \
--local-dir ~/.rkllama/models/qwen3-4b-chat
```

### Dev setup

```bash
git clone https://github.com/jaylfc/taosmd.git
cd taosmd

# Install the package plus test dependencies
uv sync

# Verify the environment
uv run python -c "import pytest, jwt, cryptography"

# Run the test suite
uv run pytest
```

`pip` is not documented as a working dev-setup path here because it is not
available in this environment and PEP 735 `--group` support could not be
verified. `uv sync` is the supported short path.
Comment on lines +118 to +120

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

# Confirm that the supported README path matches the repository configuration.
rg -n -A12 -B2 '^\[dependency-groups\]' pyproject.toml
rg -n -C3 'not available in this environment|PEP 735|uv sync' README.md

Repository: jaylfc/taosmd

Length of output: 1281


🏁 Script executed:

#!/bin/bash
set -euo pipefail

# Inspect the dependency configuration and README dev-setup section around the reported lines.
cat -n pyproject.toml | sed -n '1,70p'
printf '\n--- README dev-setup section ---\n'
cat -n README.md | sed -n '96,128p'

Repository: jaylfc/taosmd

Length of output: 4020


Remove the temporary environment explanation from the public docs.

“This environment” describes a local verification limitation, not a stable project requirement. State the supported contract directly. For example:

Suggested wording
-`pip` is not documented as a working dev-setup path here because it is not
-available in this environment and PEP 735 `--group` support could not be
-verified. `uv sync` is the supported short path.
+`uv sync` is the supported development-install path. It installs the project
+and its development dependency group.
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
`pip` is not documented as a working dev-setup path here because it is not
available in this environment and PEP 735 `--group` support could not be
verified. `uv sync` is the supported short path.
`uv sync` is the supported development-install path. It installs the project
and its development dependency group.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@README.md` around lines 118 - 120, Update the README setup documentation to
remove the temporary explanation about pip availability, the current
environment, and unverified PEP 735 support. State only the stable supported
setup contract, identifying uv sync as the supported short path.


### Install hygiene (avoid a shadowed install)

Always install taOSmd into a virtual environment, and never with `sudo` into the
Expand Down