You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/repository-governance/CHANGELOG.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,27 @@
2
2
3
3
## Unreleased
4
4
5
+
### Fixed
6
+
7
+
- Keep spec-kit integration PR sync aligned with the runtime extension package boundary and current spec-kit test node ids.
8
+
9
+
## [2.0.2] - 2026-06-03
10
+
11
+
### Fixed
12
+
13
+
- Fix release workflow smoke installation after `v2.0.1` failed before artifact publication when Spec Kit already installs the bundled repository-governance extension and projects Codex commands as `.agents/skills`.
14
+
- Allow tag release artifact publication to complete when the optional spec-kit integration PR token is unavailable.
15
+
16
+
## [2.0.1] - 2026-06-03
17
+
18
+
### Added
19
+
20
+
- Add GitHub Actions contract CI for repository governance validation.
21
+
- Add a release artifact workflow that builds a deterministic runtime extension zip, smoke-installs the extension, and can open the bundled `bigsmartben/spec-kit` integration PR.
22
+
- Document the local extension package build command for `dist/repository-governance.zip`.
23
+
- Add repository extension governance documentation for command, template, script, path-safety, package-boundary, and verification rules.
24
+
- Add a Spec Kit Agent Adapter layer and scenario capability index for repository-local skills and MCP-backed external tool evidence, with MCP config candidates treated as evidence only and runtime enumeration required before use.
uv run python .specify/extensions/repository-governance/scripts/refresh_repository_governance.py
46
48
```
47
49
50
+
## Build
51
+
52
+
```bash
53
+
rm -f dist/repository-governance.zip
54
+
mkdir -p dist
55
+
zip -qr dist/repository-governance.zip extension.yml commands scripts templates -x '*/__pycache__/*''*.pyc'
56
+
```
57
+
48
58
## Files
49
59
50
60
-`extension.yml`
@@ -59,10 +69,19 @@ uv run python .specify/extensions/repository-governance/scripts/refresh_reposito
59
69
- Code Style SSOT evidence from formatter, lint, type-check, and test configuration.
60
70
- Directory Structure SSOT evidence from repository areas scanned to depth 2.
61
71
- Toolchain SSOT evidence from manifests, lockfiles, Docker, compose, and task runner files.
62
-
- Agent Harness SSOT evidence from active agent context files, repository-local skills, and MCP configs.
72
+
- Agent Harness SSOT evidence from active agent context files, repository-local skills, and MCP config candidates.
73
+
74
+
## Agent Adapter
75
+
76
+
- Repository Capability: abstract repository-local skill specs and MCP evidence into scenario-level capabilities.
77
+
- Spec Kit Agent Adapter: map the active integration to the context target and supported discovery behavior.
78
+
- Platform Projection: emit only rules the active agent context file can safely apply.
79
+
80
+
Repository-local `SKILL.md` files are indexed by declared name, description, trigger, and source path. MCP config files are reported as candidates and evidence only; active servers, resources, and tools must be enumerated from the agent platform runtime before use.
63
81
64
82
## Verify
65
83
66
84
```bash
85
+
uv run python -m py_compile scripts/refresh_repository_governance.py tests/test_governance_domains.py
0 commit comments