@event4u/agent-config 3.1.0 → 3.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +1 -1
- package/CHANGELOG.md +12 -0
- package/dist/discovery/deprecation-report.md +1 -1
- package/dist/discovery/discovery-manifest.json +1 -1
- package/dist/discovery/discovery-manifest.json.sha256 +1 -1
- package/dist/discovery/discovery-manifest.summary.md +1 -1
- package/dist/discovery/orphan-report.md +1 -1
- package/dist/discovery/packs.json +1 -1
- package/dist/discovery/trust-report.md +1 -1
- package/dist/discovery/workspaces.json +1 -1
- package/dist/mcp/registry-manifest.json +1 -1
- package/package.json +1 -1
- package/scripts/__pycache__/validate_frontmatter.cpython-312.pyc +0 -0
- package/scripts/_lib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/_lib/__pycache__/agent_src.cpython-312.pyc +0 -0
- package/scripts/release.py +22 -2
package/CHANGELOG.md
CHANGED
|
@@ -738,6 +738,18 @@ our recommendation order, not its support status.
|
|
|
738
738
|
> that forces a new era split (`# Era: 3.2.x`, etc.) — see
|
|
739
739
|
> [`docs/contracts/CHANGELOG-conventions.md § Era splits`](docs/contracts/CHANGELOG-conventions.md).
|
|
740
740
|
|
|
741
|
+
## [3.1.1](https://github.com/event4u-app/agent-config/compare/3.1.0...3.1.1) (2026-05-24)
|
|
742
|
+
|
|
743
|
+
### Bug Fixes
|
|
744
|
+
|
|
745
|
+
* **deploy:** docker-compose smoke boots wizard URL in 12s ([0d34f95](https://github.com/event4u-app/agent-config/commit/0d34f9548bb219ee330fefcf0f8657dbc0930923))
|
|
746
|
+
|
|
747
|
+
### Documentation
|
|
748
|
+
|
|
749
|
+
* **roadmaps:** close last open ACs and archive completed roadmaps ([93035c5](https://github.com/event4u-app/agent-config/commit/93035c53d805327351d90b20b6b0662de6efead3))
|
|
750
|
+
|
|
751
|
+
Tests: 4839 (+0 since 3.1.0)
|
|
752
|
+
|
|
741
753
|
## [3.1.0](https://github.com/event4u-app/agent-config/compare/3.0.0...3.1.0) (2026-05-24)
|
|
742
754
|
|
|
743
755
|
### Features
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
f379095c6d99b4fd36ea032d168638ec7892e4719a9a6c059eb7e9dc669d3e50 discovery-manifest.json
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@event4u/agent-config",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "Universal AI Agent OS \u2014 audited skills, governance rules, commands, and templates for AI coding tools (Claude Code, Cursor, Windsurf, Copilot).",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/scripts/release.py
CHANGED
|
@@ -12,7 +12,11 @@ Pipeline:
|
|
|
12
12
|
since the last tag, render CHANGELOG section.
|
|
13
13
|
3. Confirm — show preview, ask once (skippable with --yes).
|
|
14
14
|
4. Branch + bump — create `release/X.Y.Z`, update package.json,
|
|
15
|
-
.claude-plugin/marketplace.json, CHANGELOG.md
|
|
15
|
+
.claude-plugin/marketplace.json, CHANGELOG.md,
|
|
16
|
+
then run `task release-prepare` so pack
|
|
17
|
+
manifests and tool projections pick up the
|
|
18
|
+
new version (otherwise the PR's own consistency
|
|
19
|
+
check fails — see PR #226 post-mortem).
|
|
16
20
|
5. Commit + push — `release: X.Y.Z`, push branch, open PR.
|
|
17
21
|
6. Wait for CI — `gh pr checks --watch` (skippable with --no-wait).
|
|
18
22
|
7. Merge — `gh pr merge --merge --delete-branch`.
|
|
@@ -573,6 +577,8 @@ def print_preview(plan: Plan) -> None:
|
|
|
573
577
|
print(f" · {PACKAGE_JSON.relative_to(REPO_ROOT)}")
|
|
574
578
|
print(f" · {MARKETPLACE_JSON.relative_to(REPO_ROOT)}")
|
|
575
579
|
print(f" · {CHANGELOG.relative_to(REPO_ROOT)}")
|
|
580
|
+
print(" · regenerated derived files via `task release-prepare`")
|
|
581
|
+
print(" (packages/*/pack.yaml + README.md, .agent-src/, tool projections)")
|
|
576
582
|
print()
|
|
577
583
|
print("Changelog section:")
|
|
578
584
|
print("─" * 72)
|
|
@@ -642,6 +648,15 @@ def execute(
|
|
|
642
648
|
set_marketplace_version(MARKETPLACE_JSON, plan.target)
|
|
643
649
|
prepend_changelog(CHANGELOG, plan.changelog_entry)
|
|
644
650
|
|
|
651
|
+
# Regenerate derived files (pack manifests, .agent-src/, tool
|
|
652
|
+
# projections) so the PR's own consistency check passes. Without
|
|
653
|
+
# this the bump only lands in package.json + marketplace.json and
|
|
654
|
+
# the Sync + Generate Tools Consistency gate fails on the release
|
|
655
|
+
# PR itself — exactly the failure mode PR #226 hit. `task
|
|
656
|
+
# release-prepare` is idempotent, so resume runs are safe.
|
|
657
|
+
_step(2, total, "Regenerate derived files (`task release-prepare`)")
|
|
658
|
+
run("task", "release-prepare")
|
|
659
|
+
|
|
645
660
|
# ─── 3. commit ──────────────────────────────────────────────────────────
|
|
646
661
|
if pr_merged:
|
|
647
662
|
_step(3, total, "PR already merged — skip commit")
|
|
@@ -652,7 +667,12 @@ def execute(
|
|
|
652
667
|
_step(3, total, f"Last commit already `release: {plan.target}` and tree clean — skip")
|
|
653
668
|
else:
|
|
654
669
|
_step(3, total, f"Commit `release: {plan.target}`")
|
|
655
|
-
|
|
670
|
+
# `git add -A` stages the three primary bump files AND every
|
|
671
|
+
# regenerated derived file (packages/*/pack.yaml + README.md,
|
|
672
|
+
# .agent-src/, .augment/, tool projections). Listing them
|
|
673
|
+
# explicitly would silently drift the moment a new generated
|
|
674
|
+
# tree is added.
|
|
675
|
+
run("git", "add", "-A")
|
|
656
676
|
run("git", "commit", "-m", f"release: {plan.target}")
|
|
657
677
|
|
|
658
678
|
# ─── 4. push ────────────────────────────────────────────────────────────
|