@event4u/agent-config 3.2.0 → 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/skills/compress-memory/SKILL.md +1 -1
- package/.claude-plugin/marketplace.json +1 -1
- package/AGENTS.md +5 -4
- package/CHANGELOG.md +24 -0
- package/dist/discovery/deprecation-report.md +1 -1
- package/dist/discovery/discovery-manifest.json +4 -4
- 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 +2 -2
- package/dist/discovery/trust-report.md +1 -1
- package/dist/discovery/workspaces.json +2 -2
- package/dist/mcp/registry-manifest.json +1 -1
- package/docs/benchmarks.md +4 -4
- package/docs/contracts/CHANGELOG-conventions.md +1 -1
- package/docs/contracts/adr-mcp-runtime.md +1 -1
- 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/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/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/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 +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/_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/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/pack_mcp_content.py +6 -6
- package/scripts/skill_trigger_eval.py +2 -2
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
Walks `.agent-src/skills/`, `.agent-src/commands/`, `.agent-src/rules/`,
|
|
4
4
|
`docs/guidelines/`, `.agent-src/contexts/` via the same Python loaders
|
|
5
5
|
that drive the local stdio kernel, emits one JSON blob and a sidecar
|
|
6
|
-
manifest for `workers/mcp/`.
|
|
6
|
+
manifest for `internal/workers/mcp/`.
|
|
7
7
|
|
|
8
8
|
Outputs (relative to repo root):
|
|
9
|
-
- `workers/mcp/content.json` — uncompressed, bundled by `wrangler deploy`.
|
|
10
|
-
- `workers/mcp/content.json.gz` — gzipped archival copy for R2.
|
|
11
|
-
- `workers/mcp/manifest.json` — manifest only (RCA / R2 sidecar).
|
|
9
|
+
- `internal/workers/mcp/content.json` — uncompressed, bundled by `wrangler deploy`.
|
|
10
|
+
- `internal/workers/mcp/content.json.gz` — gzipped archival copy for R2.
|
|
11
|
+
- `internal/workers/mcp/manifest.json` — manifest only (RCA / R2 sidecar).
|
|
12
12
|
|
|
13
13
|
Hard-fail thresholds (Phase 2-5 council verdict D2):
|
|
14
14
|
- Uncompressed JSON > 2 MB → SystemExit(1).
|
|
@@ -262,14 +262,14 @@ def main(argv: list[str] | None = None) -> int:
|
|
|
262
262
|
"--out",
|
|
263
263
|
type=Path,
|
|
264
264
|
default=None,
|
|
265
|
-
help="Output directory (defaults to <root>/workers/mcp).",
|
|
265
|
+
help="Output directory (defaults to <root>/internal/workers/mcp).",
|
|
266
266
|
)
|
|
267
267
|
parser.add_argument(
|
|
268
268
|
"--quiet", action="store_true", help="Suppress success summary."
|
|
269
269
|
)
|
|
270
270
|
args = parser.parse_args(argv)
|
|
271
271
|
|
|
272
|
-
out_dir = args.out or (args.root / "workers" / "mcp")
|
|
272
|
+
out_dir = args.out or (args.root / "internal" / "workers" / "mcp")
|
|
273
273
|
manifest = pack(args.root, out_dir)
|
|
274
274
|
|
|
275
275
|
if not args.quiet:
|
|
@@ -35,7 +35,7 @@ from typing import Callable, IO, Protocol
|
|
|
35
35
|
|
|
36
36
|
PROJECT_ROOT = Path(__file__).resolve().parent.parent
|
|
37
37
|
SKILLS_SOURCE = PROJECT_ROOT / ".agent-src.uncompressed" / "skills"
|
|
38
|
-
RESULTS_DIR = PROJECT_ROOT / "evals" / "results"
|
|
38
|
+
RESULTS_DIR = PROJECT_ROOT / "internal" / "evals" / "results"
|
|
39
39
|
DEFAULT_MODEL = "claude-sonnet-4-5"
|
|
40
40
|
|
|
41
41
|
# Approximate Anthropic API pricing (USD per 1M tokens). Used for the
|
|
@@ -577,7 +577,7 @@ def build_arg_parser() -> argparse.ArgumentParser:
|
|
|
577
577
|
type=Path,
|
|
578
578
|
default=None,
|
|
579
579
|
help=(
|
|
580
|
-
"Path to write the result. Default: evals/results/"
|
|
580
|
+
"Path to write the result. Default: internal/evals/results/"
|
|
581
581
|
"<timestamp>-<skill>-<model>.json (live) or "
|
|
582
582
|
"<triggers-dir>/last-run.json (dry-run)."
|
|
583
583
|
),
|