Skip to content
Merged
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
4 changes: 2 additions & 2 deletions qsl.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[qsl]
repo = "ResearchSignalContextPipelines"
tier = "research"
ring = 2
tier = "pipeline"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Restore the research tier metadata

The repository’s QSL architecture section still classifies this repo as research and documents the research-only boundary in README.md:4-10, but the machine-readable QSL metadata now publishes tier = "pipeline". Any QSL inventory/governance automation that reads qsl.toml will classify this repo differently from the documented boundary, so this research-only artifact producer can be grouped with pipeline consumers unless the tier remains research or the architecture docs are updated in the same change.

Useful? React with 👍 / 👎.

upgrade_ring = "ring_c"
allow_legacy = false
snapshot_contract = "docs/architecture.md"

Expand Down
4 changes: 2 additions & 2 deletions tests/test_qsl_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ def test_qsl_metadata_has_compat_bundle() -> None:
data = tomllib.load(f)

qsl = data["qsl"]
assert qsl["tier"] == "research"
assert qsl["ring"] == 2
assert qsl["tier"] == "pipeline"
assert qsl["upgrade_ring"] == "ring_c"
assert qsl.get("repo") == "ResearchSignalContextPipelines"
compat = qsl["compat"]
assert compat["bundle"] == "2026.07.1"
Expand Down
Loading