@event4u/agent-config 3.1.1 → 3.3.0
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/.agent-src/commands/agent-status.md +1 -1
- package/.agent-src/commands/analytics/prune.md +78 -0
- package/.agent-src/commands/analytics/show.md +107 -0
- package/.agent-src/commands/analytics.md +64 -0
- package/.agent-src/commands/knowledge/forget.md +104 -0
- package/.agent-src/commands/knowledge/ingest.md +122 -0
- package/.agent-src/commands/knowledge/list.md +102 -0
- package/.agent-src/commands/knowledge.md +75 -0
- package/.agent-src/scripts/update_roadmap_progress.py +1 -1
- package/.agent-src/skills/compress-memory/SKILL.md +1 -1
- package/.agent-src/templates/agents/agent-project-settings.example.yml +1 -1
- package/.claude-plugin/marketplace.json +8 -1
- package/AGENTS.md +5 -4
- package/CHANGELOG.md +54 -222
- package/README.md +12 -2
- package/dist/discovery/deprecation-report.md +1 -1
- package/dist/discovery/discovery-manifest.json +164 -10
- package/dist/discovery/discovery-manifest.json.sha256 +1 -1
- package/dist/discovery/discovery-manifest.summary.md +3 -3
- package/dist/discovery/orphan-report.md +1 -1
- package/dist/discovery/packs.json +12 -5
- package/dist/discovery/trust-report.md +2 -2
- package/dist/discovery/workspaces.json +11 -4
- package/dist/mcp/mcp-cloudflare-catalogue.json +2 -0
- package/dist/mcp/registry-manifest.json +5 -3
- package/docs/architecture.md +1 -1
- package/docs/archive/CHANGELOG-pre-3.2.0.md +268 -0
- package/docs/benchmarks.md +4 -4
- package/docs/catalog.md +9 -2
- package/docs/contracts/CHANGELOG-conventions.md +20 -1
- package/docs/contracts/adr-mcp-runtime.md +1 -1
- package/docs/contracts/at-rest-encryption.md +146 -0
- package/docs/contracts/benchmark-corpus-spec.md +3 -3
- package/docs/contracts/benchmark-report-schema.md +5 -5
- package/docs/contracts/caveman-telemetry.md +4 -4
- package/docs/contracts/compression-default-kill-criterion.md +5 -5
- package/docs/contracts/cost-enforcement.md +1 -1
- package/docs/contracts/daily-workspace.md +137 -0
- package/docs/contracts/explain-modes.md +146 -0
- package/docs/contracts/host-agent-protocol.md +88 -0
- package/docs/contracts/local-analytics.md +148 -0
- package/docs/contracts/local-knowledge-ingestion.md +96 -0
- package/docs/contracts/mcp-beta-criteria.md +1 -1
- package/docs/contracts/mcp-cloud-scope.md +4 -4
- package/docs/contracts/mcp-registry-manifest.schema.json +1 -1
- package/docs/contracts/mcp-tool-inventory.md +1 -1
- package/docs/contracts/mcp-tool-stub-envelope.md +1 -1
- package/docs/contracts/measurement-baseline.md +6 -6
- package/docs/contracts/role-experience.md +121 -0
- package/docs/contracts/workspace-documents.md +140 -0
- package/docs/decisions/ADR-022-daily-workspace-decomposition.md +140 -0
- package/docs/decisions/ADR-023-host-agent-protocol.md +129 -0
- package/docs/decisions/ADR-024-workspace-v0-feature-floor.md +126 -0
- package/docs/decisions/ADR-025-workspace-chrome.md +119 -0
- package/docs/decisions/ADR-026-explain-mode-translation.md +117 -0
- package/docs/decisions/ADR-027-changelog-machine-vs-manual.md +129 -0
- package/docs/decisions/ADR-028-root-layout.md +147 -0
- package/docs/decisions/ADR-029-multi-workspace-deferred.md +122 -0
- package/docs/decisions/INDEX.md +8 -0
- package/docs/deploy/small-team-recipe.md +148 -0
- package/docs/deploy/team-deployment-posture.md +91 -0
- package/docs/getting-started-by-role.md +27 -0
- package/docs/getting-started.md +1 -1
- package/docs/guides/local-analytics.md +125 -0
- package/docs/guides/local-knowledge.md +127 -0
- package/docs/mcp-server.md +1 -1
- package/docs/parity/bench-ruflo.json +3 -3
- package/docs/parity/ruflo.md +1 -1
- package/docs/setup/mcp-client-config.md +1 -1
- package/docs/setup/mcp-cloud-endpoints.md +1 -1
- package/docs/setup/mcp-cloud-setup.md +2 -2
- package/docs/setup/mcp-r2-bootstrap.md +1 -1
- package/package.json +4 -2
- 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/_lib/bench_caveman.py +2 -2
- package/scripts/_lib/bench_caveman_report.py +1 -1
- package/scripts/_lib/bench_cost.py +2 -2
- package/scripts/_lib/bench_report.py +2 -2
- package/scripts/_lib/changelog_eras.py +330 -0
- package/scripts/audit_mcp_tools.py +1 -1
- package/scripts/bench_baseline_ready.py +3 -3
- package/scripts/bench_compress_memory.py +4 -4
- package/scripts/bench_drift_check.py +2 -2
- package/scripts/bench_per_tool.py +2 -2
- package/scripts/bench_run.py +4 -4
- package/scripts/build_mcp_registry_manifest.py +2 -2
- package/scripts/mcp_server/__init__.py +1 -1
- package/scripts/mcp_server/catalog.py +1 -1
- package/scripts/mcp_server/consumer_tool_catalog.json +1 -1
- package/scripts/mcp_server/tools.py +1 -1
- package/scripts/memory_lookup.py +78 -1
- package/scripts/pack_mcp_content.py +6 -6
- package/scripts/release.py +93 -3
- package/scripts/skill_trigger_eval.py +2 -2
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
{
|
|
26
26
|
"category": "command",
|
|
27
|
-
"checksum": "sha256:
|
|
27
|
+
"checksum": "sha256:756535431a0d4d7049960e137c022cad35cb5221fc459fa98e146666a50649ce",
|
|
28
28
|
"install": {
|
|
29
29
|
"default": true,
|
|
30
30
|
"removable": false
|
|
@@ -264,6 +264,72 @@
|
|
|
264
264
|
"agent-config-maintainer"
|
|
265
265
|
]
|
|
266
266
|
},
|
|
267
|
+
{
|
|
268
|
+
"category": "command",
|
|
269
|
+
"checksum": "sha256:3fa07f0614b739597aee5678b72cc086b406cc3ad21ec999f7557a226ee8a1fd",
|
|
270
|
+
"install": {
|
|
271
|
+
"default": true,
|
|
272
|
+
"removable": false
|
|
273
|
+
},
|
|
274
|
+
"lifecycle": "active",
|
|
275
|
+
"name": "analytics",
|
|
276
|
+
"packs": [
|
|
277
|
+
"meta"
|
|
278
|
+
],
|
|
279
|
+
"path": "packages/core/.agent-src.uncompressed/commands/analytics.md",
|
|
280
|
+
"trust": {
|
|
281
|
+
"confidence": "high",
|
|
282
|
+
"human_review_required": false,
|
|
283
|
+
"level": "core"
|
|
284
|
+
},
|
|
285
|
+
"workspaces": [
|
|
286
|
+
"agent-config-maintainer"
|
|
287
|
+
]
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"category": "command",
|
|
291
|
+
"checksum": "sha256:5206a9439eeaefc94ef252f06a9d89a92033ea6864bc265dc80271869dd5ef74",
|
|
292
|
+
"install": {
|
|
293
|
+
"default": true,
|
|
294
|
+
"removable": false
|
|
295
|
+
},
|
|
296
|
+
"lifecycle": "active",
|
|
297
|
+
"name": "analytics:prune",
|
|
298
|
+
"packs": [
|
|
299
|
+
"meta"
|
|
300
|
+
],
|
|
301
|
+
"path": "packages/core/.agent-src.uncompressed/commands/analytics/prune.md",
|
|
302
|
+
"trust": {
|
|
303
|
+
"confidence": "high",
|
|
304
|
+
"human_review_required": false,
|
|
305
|
+
"level": "core"
|
|
306
|
+
},
|
|
307
|
+
"workspaces": [
|
|
308
|
+
"agent-config-maintainer"
|
|
309
|
+
]
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"category": "command",
|
|
313
|
+
"checksum": "sha256:f6f75dcae5848a5df870bb636e637e4e222705cc7ec2ac2d774cca143ee97778",
|
|
314
|
+
"install": {
|
|
315
|
+
"default": true,
|
|
316
|
+
"removable": false
|
|
317
|
+
},
|
|
318
|
+
"lifecycle": "active",
|
|
319
|
+
"name": "analytics:show",
|
|
320
|
+
"packs": [
|
|
321
|
+
"meta"
|
|
322
|
+
],
|
|
323
|
+
"path": "packages/core/.agent-src.uncompressed/commands/analytics/show.md",
|
|
324
|
+
"trust": {
|
|
325
|
+
"confidence": "high",
|
|
326
|
+
"human_review_required": false,
|
|
327
|
+
"level": "core"
|
|
328
|
+
},
|
|
329
|
+
"workspaces": [
|
|
330
|
+
"agent-config-maintainer"
|
|
331
|
+
]
|
|
332
|
+
},
|
|
267
333
|
{
|
|
268
334
|
"category": "command",
|
|
269
335
|
"checksum": "sha256:7b0edd9601359623e23181243e7001b1bffe2fb9b06f3821b739d2c48e93fb77",
|
|
@@ -1541,6 +1607,94 @@
|
|
|
1541
1607
|
"agent-config-maintainer"
|
|
1542
1608
|
]
|
|
1543
1609
|
},
|
|
1610
|
+
{
|
|
1611
|
+
"category": "command",
|
|
1612
|
+
"checksum": "sha256:2fadf638e8f90077e8f3e08c6044fd8e02c350f771facc88d0eff2b914b15561",
|
|
1613
|
+
"install": {
|
|
1614
|
+
"default": true,
|
|
1615
|
+
"removable": false
|
|
1616
|
+
},
|
|
1617
|
+
"lifecycle": "active",
|
|
1618
|
+
"name": "knowledge",
|
|
1619
|
+
"packs": [
|
|
1620
|
+
"meta"
|
|
1621
|
+
],
|
|
1622
|
+
"path": "packages/core/.agent-src.uncompressed/commands/knowledge.md",
|
|
1623
|
+
"trust": {
|
|
1624
|
+
"confidence": "high",
|
|
1625
|
+
"human_review_required": false,
|
|
1626
|
+
"level": "core"
|
|
1627
|
+
},
|
|
1628
|
+
"workspaces": [
|
|
1629
|
+
"agent-config-maintainer"
|
|
1630
|
+
]
|
|
1631
|
+
},
|
|
1632
|
+
{
|
|
1633
|
+
"category": "command",
|
|
1634
|
+
"checksum": "sha256:e8a787fedb19755e2b2b3bafe001a757fe81bdac87d4a06f264cd797259b3814",
|
|
1635
|
+
"install": {
|
|
1636
|
+
"default": true,
|
|
1637
|
+
"removable": false
|
|
1638
|
+
},
|
|
1639
|
+
"lifecycle": "active",
|
|
1640
|
+
"name": "knowledge:forget",
|
|
1641
|
+
"packs": [
|
|
1642
|
+
"meta"
|
|
1643
|
+
],
|
|
1644
|
+
"path": "packages/core/.agent-src.uncompressed/commands/knowledge/forget.md",
|
|
1645
|
+
"trust": {
|
|
1646
|
+
"confidence": "high",
|
|
1647
|
+
"human_review_required": false,
|
|
1648
|
+
"level": "core"
|
|
1649
|
+
},
|
|
1650
|
+
"workspaces": [
|
|
1651
|
+
"agent-config-maintainer"
|
|
1652
|
+
]
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
"category": "command",
|
|
1656
|
+
"checksum": "sha256:2d91334712646b957fa08ea01c73a88e89a6ba7b511f80d1c9276e5c191f863b",
|
|
1657
|
+
"install": {
|
|
1658
|
+
"default": true,
|
|
1659
|
+
"removable": false
|
|
1660
|
+
},
|
|
1661
|
+
"lifecycle": "active",
|
|
1662
|
+
"name": "knowledge:ingest",
|
|
1663
|
+
"packs": [
|
|
1664
|
+
"meta"
|
|
1665
|
+
],
|
|
1666
|
+
"path": "packages/core/.agent-src.uncompressed/commands/knowledge/ingest.md",
|
|
1667
|
+
"trust": {
|
|
1668
|
+
"confidence": "high",
|
|
1669
|
+
"human_review_required": false,
|
|
1670
|
+
"level": "core"
|
|
1671
|
+
},
|
|
1672
|
+
"workspaces": [
|
|
1673
|
+
"agent-config-maintainer"
|
|
1674
|
+
]
|
|
1675
|
+
},
|
|
1676
|
+
{
|
|
1677
|
+
"category": "command",
|
|
1678
|
+
"checksum": "sha256:349a9774eafcd578ee729839260c075c2f241811da83bf41412c8527df9b37d0",
|
|
1679
|
+
"install": {
|
|
1680
|
+
"default": true,
|
|
1681
|
+
"removable": false
|
|
1682
|
+
},
|
|
1683
|
+
"lifecycle": "active",
|
|
1684
|
+
"name": "knowledge:list",
|
|
1685
|
+
"packs": [
|
|
1686
|
+
"meta"
|
|
1687
|
+
],
|
|
1688
|
+
"path": "packages/core/.agent-src.uncompressed/commands/knowledge/list.md",
|
|
1689
|
+
"trust": {
|
|
1690
|
+
"confidence": "high",
|
|
1691
|
+
"human_review_required": false,
|
|
1692
|
+
"level": "core"
|
|
1693
|
+
},
|
|
1694
|
+
"workspaces": [
|
|
1695
|
+
"agent-config-maintainer"
|
|
1696
|
+
]
|
|
1697
|
+
},
|
|
1544
1698
|
{
|
|
1545
1699
|
"category": "command",
|
|
1546
1700
|
"checksum": "sha256:2e25e9393eecf15f639797d4b319a7e9f5ce0f49d218b4bccc799c3cc672e8bd",
|
|
@@ -4752,7 +4906,7 @@
|
|
|
4752
4906
|
},
|
|
4753
4907
|
{
|
|
4754
4908
|
"category": "skill",
|
|
4755
|
-
"checksum": "sha256:
|
|
4909
|
+
"checksum": "sha256:4ff26cf1af1b252755b72829247e39f85f574d7453133fc5d96c1aaf20f63d97",
|
|
4756
4910
|
"install": {
|
|
4757
4911
|
"default": true,
|
|
4758
4912
|
"removable": false
|
|
@@ -9233,7 +9387,7 @@
|
|
|
9233
9387
|
]
|
|
9234
9388
|
}
|
|
9235
9389
|
],
|
|
9236
|
-
"checksum": "sha256:
|
|
9390
|
+
"checksum": "sha256:fd6102dc4515859fe55d3e85c8ad839c19bb5d8b1e579a5e8defcb137ecd3993",
|
|
9237
9391
|
"documented_unassigned": [
|
|
9238
9392
|
{
|
|
9239
9393
|
"category": "template",
|
|
@@ -9346,7 +9500,7 @@
|
|
|
9346
9500
|
"reason": "scaffold for new SKILL.md authoring"
|
|
9347
9501
|
}
|
|
9348
9502
|
],
|
|
9349
|
-
"generated_at": "2026-05-
|
|
9503
|
+
"generated_at": "2026-05-25T12:26:32Z",
|
|
9350
9504
|
"packs": [
|
|
9351
9505
|
{
|
|
9352
9506
|
"artefact_count": 84,
|
|
@@ -9747,7 +9901,7 @@
|
|
|
9747
9901
|
]
|
|
9748
9902
|
},
|
|
9749
9903
|
{
|
|
9750
|
-
"artefact_count":
|
|
9904
|
+
"artefact_count": 250,
|
|
9751
9905
|
"description": "Artefacts that maintain this package (agent-config itself).",
|
|
9752
9906
|
"human_review_required": 0,
|
|
9753
9907
|
"id": "meta",
|
|
@@ -9755,7 +9909,7 @@
|
|
|
9755
9909
|
"trust_level_default": "core",
|
|
9756
9910
|
"trust_summary": {
|
|
9757
9911
|
"advisory": 0,
|
|
9758
|
-
"core":
|
|
9912
|
+
"core": 250,
|
|
9759
9913
|
"experimental": 0,
|
|
9760
9914
|
"professional": 0,
|
|
9761
9915
|
"restricted": 0
|
|
@@ -9768,26 +9922,26 @@
|
|
|
9768
9922
|
"scanner_version": "80c8c0b8b827",
|
|
9769
9923
|
"stats": {
|
|
9770
9924
|
"by_category": {
|
|
9771
|
-
"command":
|
|
9925
|
+
"command": 136,
|
|
9772
9926
|
"rule": 75,
|
|
9773
9927
|
"skill": 218,
|
|
9774
9928
|
"template": 1
|
|
9775
9929
|
},
|
|
9776
9930
|
"by_lifecycle": {
|
|
9777
|
-
"active":
|
|
9931
|
+
"active": 422,
|
|
9778
9932
|
"archived": 0,
|
|
9779
9933
|
"deprecated": 0,
|
|
9780
9934
|
"experimental": 8
|
|
9781
9935
|
},
|
|
9782
9936
|
"by_trust_level": {
|
|
9783
9937
|
"advisory": 2,
|
|
9784
|
-
"core":
|
|
9938
|
+
"core": 343,
|
|
9785
9939
|
"experimental": 6,
|
|
9786
9940
|
"professional": 79,
|
|
9787
9941
|
"restricted": 0
|
|
9788
9942
|
},
|
|
9789
9943
|
"documented_unassigned_count": 22,
|
|
9790
|
-
"total_artefacts":
|
|
9944
|
+
"total_artefacts": 430,
|
|
9791
9945
|
"unassigned_count": 0
|
|
9792
9946
|
},
|
|
9793
9947
|
"unassigned": [],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
6c11926a0bf485b24906979f2dc1bdc569985a46008247c567726daef64cf009 discovery-manifest.json
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Discovery Manifest — Summary
|
|
2
2
|
|
|
3
|
-
- Generated: `2026-05-
|
|
3
|
+
- Generated: `2026-05-25T12:26:32Z`
|
|
4
4
|
- Scanner: `80c8c0b8b827`
|
|
5
|
-
- Artefacts: **
|
|
5
|
+
- Artefacts: **430**
|
|
6
6
|
- Unassigned: **0**
|
|
7
7
|
|
|
8
8
|
## `engineering` — Engineering
|
|
@@ -89,5 +89,5 @@
|
|
|
89
89
|
|
|
90
90
|
| Pack | Artefacts |
|
|
91
91
|
|---|---|
|
|
92
|
-
| `meta` — Meta |
|
|
92
|
+
| `meta` — Meta | 250 |
|
|
93
93
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"checksum": "sha256:
|
|
3
|
-
"generated_at": "2026-05-
|
|
2
|
+
"checksum": "sha256:fd6102dc4515859fe55d3e85c8ad839c19bb5d8b1e579a5e8defcb137ecd3993",
|
|
3
|
+
"generated_at": "2026-05-25T12:26:32Z",
|
|
4
4
|
"packs": [
|
|
5
5
|
{
|
|
6
6
|
"artefact_count": 84,
|
|
@@ -729,7 +729,7 @@
|
|
|
729
729
|
]
|
|
730
730
|
},
|
|
731
731
|
{
|
|
732
|
-
"artefact_count":
|
|
732
|
+
"artefact_count": 250,
|
|
733
733
|
"artefacts": [
|
|
734
734
|
"packages/core/.agent-src.uncompressed/commands/agent-handoff.md",
|
|
735
735
|
"packages/core/.agent-src.uncompressed/commands/agent-status.md",
|
|
@@ -743,6 +743,9 @@
|
|
|
743
743
|
"packages/core/.agent-src.uncompressed/commands/agents/user/review.md",
|
|
744
744
|
"packages/core/.agent-src.uncompressed/commands/agents/user/show.md",
|
|
745
745
|
"packages/core/.agent-src.uncompressed/commands/agents/user/update.md",
|
|
746
|
+
"packages/core/.agent-src.uncompressed/commands/analytics.md",
|
|
747
|
+
"packages/core/.agent-src.uncompressed/commands/analytics/prune.md",
|
|
748
|
+
"packages/core/.agent-src.uncompressed/commands/analytics/show.md",
|
|
746
749
|
"packages/core/.agent-src.uncompressed/commands/analyze-reference-repo.md",
|
|
747
750
|
"packages/core/.agent-src.uncompressed/commands/bug-fix.md",
|
|
748
751
|
"packages/core/.agent-src.uncompressed/commands/bug-investigate.md",
|
|
@@ -801,6 +804,10 @@
|
|
|
801
804
|
"packages/core/.agent-src.uncompressed/commands/judge/on-diff.md",
|
|
802
805
|
"packages/core/.agent-src.uncompressed/commands/judge/solo.md",
|
|
803
806
|
"packages/core/.agent-src.uncompressed/commands/judge/steps.md",
|
|
807
|
+
"packages/core/.agent-src.uncompressed/commands/knowledge.md",
|
|
808
|
+
"packages/core/.agent-src.uncompressed/commands/knowledge/forget.md",
|
|
809
|
+
"packages/core/.agent-src.uncompressed/commands/knowledge/ingest.md",
|
|
810
|
+
"packages/core/.agent-src.uncompressed/commands/knowledge/list.md",
|
|
804
811
|
"packages/core/.agent-src.uncompressed/commands/memory.md",
|
|
805
812
|
"packages/core/.agent-src.uncompressed/commands/memory/add.md",
|
|
806
813
|
"packages/core/.agent-src.uncompressed/commands/memory/learn-low-impact.md",
|
|
@@ -976,14 +983,14 @@
|
|
|
976
983
|
"packages/core/.agent-src.uncompressed/templates/agents/proposal.example.md"
|
|
977
984
|
],
|
|
978
985
|
"by_lifecycle": {
|
|
979
|
-
"active":
|
|
986
|
+
"active": 250,
|
|
980
987
|
"archived": 0,
|
|
981
988
|
"deprecated": 0,
|
|
982
989
|
"experimental": 0
|
|
983
990
|
},
|
|
984
991
|
"by_trust_level": {
|
|
985
992
|
"advisory": 0,
|
|
986
|
-
"core":
|
|
993
|
+
"core": 250,
|
|
987
994
|
"experimental": 0,
|
|
988
995
|
"professional": 0,
|
|
989
996
|
"restricted": 0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Discovery — Trust Report
|
|
2
2
|
|
|
3
|
-
- Generated: `2026-05-
|
|
3
|
+
- Generated: `2026-05-25T12:26:32Z`
|
|
4
4
|
- Workspaces tracked: **8**
|
|
5
5
|
- Human-review-required artefacts: **2**
|
|
6
6
|
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
| Workspace | core | professional | experimental | advisory | restricted |
|
|
10
10
|
|---|---|---|---|---|---|
|
|
11
|
-
| `agent-config-maintainer` |
|
|
11
|
+
| `agent-config-maintainer` | 250 | 0 | 0 | 0 | 0 |
|
|
12
12
|
| `engineering` | 85 | 41 | 0 | 0 | 0 |
|
|
13
13
|
| `finance` | 2 | 3 | 0 | 1 | 0 |
|
|
14
14
|
| `founder` | 7 | 0 | 0 | 1 | 0 |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"checksum": "sha256:
|
|
3
|
-
"generated_at": "2026-05-
|
|
2
|
+
"checksum": "sha256:fd6102dc4515859fe55d3e85c8ad839c19bb5d8b1e579a5e8defcb137ecd3993",
|
|
3
|
+
"generated_at": "2026-05-25T12:26:32Z",
|
|
4
4
|
"scanner_version": "80c8c0b8b827",
|
|
5
5
|
"workspaces": [
|
|
6
6
|
{
|
|
@@ -441,7 +441,7 @@
|
|
|
441
441
|
]
|
|
442
442
|
},
|
|
443
443
|
{
|
|
444
|
-
"artefact_count":
|
|
444
|
+
"artefact_count": 250,
|
|
445
445
|
"default_packs": [
|
|
446
446
|
"meta"
|
|
447
447
|
],
|
|
@@ -451,7 +451,7 @@
|
|
|
451
451
|
"optional_packs": [],
|
|
452
452
|
"packs": [
|
|
453
453
|
{
|
|
454
|
-
"artefact_count":
|
|
454
|
+
"artefact_count": 250,
|
|
455
455
|
"artefacts": [
|
|
456
456
|
"packages/core/.agent-src.uncompressed/commands/agent-handoff.md",
|
|
457
457
|
"packages/core/.agent-src.uncompressed/commands/agent-status.md",
|
|
@@ -465,6 +465,9 @@
|
|
|
465
465
|
"packages/core/.agent-src.uncompressed/commands/agents/user/review.md",
|
|
466
466
|
"packages/core/.agent-src.uncompressed/commands/agents/user/show.md",
|
|
467
467
|
"packages/core/.agent-src.uncompressed/commands/agents/user/update.md",
|
|
468
|
+
"packages/core/.agent-src.uncompressed/commands/analytics.md",
|
|
469
|
+
"packages/core/.agent-src.uncompressed/commands/analytics/prune.md",
|
|
470
|
+
"packages/core/.agent-src.uncompressed/commands/analytics/show.md",
|
|
468
471
|
"packages/core/.agent-src.uncompressed/commands/analyze-reference-repo.md",
|
|
469
472
|
"packages/core/.agent-src.uncompressed/commands/bug-fix.md",
|
|
470
473
|
"packages/core/.agent-src.uncompressed/commands/bug-investigate.md",
|
|
@@ -523,6 +526,10 @@
|
|
|
523
526
|
"packages/core/.agent-src.uncompressed/commands/judge/on-diff.md",
|
|
524
527
|
"packages/core/.agent-src.uncompressed/commands/judge/solo.md",
|
|
525
528
|
"packages/core/.agent-src.uncompressed/commands/judge/steps.md",
|
|
529
|
+
"packages/core/.agent-src.uncompressed/commands/knowledge.md",
|
|
530
|
+
"packages/core/.agent-src.uncompressed/commands/knowledge/forget.md",
|
|
531
|
+
"packages/core/.agent-src.uncompressed/commands/knowledge/ingest.md",
|
|
532
|
+
"packages/core/.agent-src.uncompressed/commands/knowledge/list.md",
|
|
526
533
|
"packages/core/.agent-src.uncompressed/commands/memory.md",
|
|
527
534
|
"packages/core/.agent-src.uncompressed/commands/memory/add.md",
|
|
528
535
|
"packages/core/.agent-src.uncompressed/commands/memory/learn-low-impact.md",
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"discovery": {
|
|
3
|
-
"artefact_count":
|
|
3
|
+
"artefact_count": 430,
|
|
4
4
|
"scanner_version": "80c8c0b8b827"
|
|
5
5
|
},
|
|
6
|
-
"generated_at": "2026-05-
|
|
6
|
+
"generated_at": "2026-05-25",
|
|
7
7
|
"package": {
|
|
8
8
|
"description": "Universal AI Agent OS \u2014 audited skills, governance rules, commands, and templates for AI coding tools (Claude Code, Cursor, Windsurf, Copilot).",
|
|
9
9
|
"homepage": "https://github.com/event4u-app/agent-config#readme",
|
|
10
10
|
"name": "@event4u/agent-config",
|
|
11
11
|
"repository": "https://github.com/event4u-app/agent-config",
|
|
12
|
-
"version": "3.
|
|
12
|
+
"version": "3.3.0"
|
|
13
13
|
},
|
|
14
14
|
"registries": [
|
|
15
15
|
{
|
|
@@ -46,8 +46,10 @@
|
|
|
46
46
|
},
|
|
47
47
|
"topics": [
|
|
48
48
|
"agent-governance",
|
|
49
|
+
"agent-skills",
|
|
49
50
|
"ai-agent",
|
|
50
51
|
"ai-video",
|
|
52
|
+
"cinematic-ai-video",
|
|
51
53
|
"claude-code",
|
|
52
54
|
"copilot",
|
|
53
55
|
"cursor",
|
package/docs/architecture.md
CHANGED
|
@@ -144,7 +144,7 @@ note, package-internal path-swap, description budget, and the
|
|
|
144
144
|
|---|---|---|
|
|
145
145
|
| **Skills** | 218 | On-demand expertise — stack analysis (Laravel · Symfony · Zend / Laminas · Next.js · React · Node), testing, Docker, API design, security, observability, … |
|
|
146
146
|
| **Rules** | 75 | Always-active constraints — coding standards, scope control, verification, language-and-tone, agent-authority |
|
|
147
|
-
| **Commands** |
|
|
147
|
+
| **Commands** | 136 | Slash-command workflows — `/commit`, `/create-pr`, `/fix ci`, `/optimize skills`, `/feature plan`, `/work`, `/implement-ticket`, `/compress`, … |
|
|
148
148
|
| **Guidelines** | 73 | Reference material cited by skills — PHP patterns, Eloquent, Playwright, agent-infra, … |
|
|
149
149
|
| **Templates** | 7 | Scaffolds for features, roadmaps, contexts, skills, overrides |
|
|
150
150
|
| **Contexts** | 5 | Shared knowledge about the system itself |
|