Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
1773860
chore(deps): bump sigstore/cosign-installer from 3.9.1 to 4.1.2
dependabot[bot] Jun 3, 2026
7928075
chore(deps): bump softprops/action-gh-release from 2.6.2 to 3.0.0
dependabot[bot] Jun 3, 2026
0ba0098
chore(deps): bump actions/checkout from 6.0.2 to 6.0.3
dependabot[bot] Jun 4, 2026
9ece6f2
⚡ Bolt: optimize `local_weighted_components` clustering memory usage
google-labs-jules[bot] Jun 4, 2026
c844493
⚡ Bolt: optimize `local_weighted_components` clustering memory usage
google-labs-jules[bot] Jun 4, 2026
765a385
fix: treat enrich-only integration bindings as warning, not gate failure
tachyon-beep Jun 4, 2026
1076753
feat(plugin): read Wardline descriptor metadata
tachyon-beep Jun 4, 2026
17e547d
docs(plugin): close asterisk-2 doc remainder (ADR index + descriptor …
tachyon-beep Jun 4, 2026
0a5c9d1
docs(release): prepare 1.3.0 release notes + version refs
tachyon-beep Jun 4, 2026
4660c1b
chore: untrack filigree-regenerated docs to stop diff churn
tachyon-beep Jun 4, 2026
cf4d877
chore: tidy .gitignore — regroup clarion runtime + filigree-managed docs
tachyon-beep Jun 4, 2026
70fe6d3
Move release governance handoff to Legis
tachyon-beep Jun 4, 2026
1234447
Stabilize serve HTTP tests under nextest
tachyon-beep Jun 4, 2026
de51c48
chore(arch): Archive older architectural documentation
tachyon-beep Jun 4, 2026
e4b9b36
docs: point federation-pattern docs at the loom hub
tachyon-beep Jun 4, 2026
a61c6e6
Merge bolt: optimize local_weighted_components clustering memory usage
tachyon-beep Jun 4, 2026
245c4ad
Merge dependabot: bump actions/checkout to 6.0.3
tachyon-beep Jun 4, 2026
4af1d08
Merge dependabot: bump sigstore/cosign-installer to 4.1.2
tachyon-beep Jun 4, 2026
1122f78
Merge dependabot: bump softprops/action-gh-release to 3.0.0
tachyon-beep Jun 4, 2026
99066ec
fix(cli): drop unnecessary to_owned on db_path in serve LLM writer spawn
tachyon-beep Jun 4, 2026
0f93b16
docs: pre-1.3.0 hygiene — fix dead links, record removals, repoint as…
tachyon-beep Jun 4, 2026
5bdbced
docs/chore: track Wardline Task B confirmation; flag removed governan…
tachyon-beep Jun 4, 2026
2b8a31b
fix(security): stop untrusted-repo git config/attributes executing he…
tachyon-beep Jun 4, 2026
6640cd2
Address Wardline descriptor review feedback
tachyon-beep Jun 5, 2026
6e2209d
Fix MCP e2e fixture for release 1.3 policy
tachyon-beep Jun 5, 2026
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
325 changes: 0 additions & 325 deletions .agents/skills/filigree-workflow/SKILL.md

This file was deleted.

6 changes: 6 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[test-groups]
serve-http = { max-threads = 1 }

[[profile.default.overrides]]
filter = 'package(clarion-cli) and binary(=serve)'
test-group = 'serve-http'
20 changes: 7 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Rust
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
with:
# Full history so the ADR-024 migration-retirement guard can resolve
# the published_build.txt ref via `git show <ref>:0001` (the marker
Expand All @@ -34,10 +34,9 @@ jobs:

- uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32

# Python is used by the migration-retirement guard and the
# workspace-version-lockstep guard below. Pin >= 3.11 explicitly so the
# stdlib `tomllib` is available regardless of which Python the runner
# image happens to preinstall.
# Python is used by the migration-retirement guard and lockstep guards
# below. Pin >= 3.11 explicitly so the stdlib `tomllib` is available
# regardless of which Python the runner image happens to preinstall.
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
python-version: "3.11"
Expand All @@ -50,11 +49,6 @@ jobs:
python scripts/check-migration-retirement.py --self-test
python scripts/check-migration-retirement.py

- name: release governance static guard
run: |
python scripts/check-github-release-governance.py --self-test
python scripts/check-github-release-governance.py --static-only

- name: cross-workspace version lockstep
run: python scripts/check-workspace-version-lockstep.py

Expand Down Expand Up @@ -123,7 +117,7 @@ jobs:
- target: aarch64-apple-darwin
runner: macos-14
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10

- uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8
with:
Expand All @@ -144,7 +138,7 @@ jobs:
name: Python plugin
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10

- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
Expand Down Expand Up @@ -197,7 +191,7 @@ jobs:
runs-on: ubuntu-latest
needs: [rust, python-plugin]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10

- uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8
with:
Expand Down
Loading