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 = "PoliticalEventTrackingResearch"
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 Keep QSL tier aligned with the research role

This repo is still documented and guarded as a research-only evidence repo (README.md says the QSL layer is research, and AGENTS.md calls it research-only), so changing only the machine-readable QSL metadata to tier = "pipeline" makes any inventory or governance tooling that reads qsl.toml classify it differently from the repository's stated role. If the repo has not actually been reclassified, this should remain research; otherwise the role docs and guardrails need to be updated in the same change.

Useful? React with 👍 / 👎.

upgrade_ring = "ring_c"
allow_legacy = false

[qsl.compat]
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") == "PoliticalEventTrackingResearch"
compat = qsl["compat"]
assert compat["bundle"] == "2026.07.1"
Loading