chore(agents): implement v2 hardening and enforcement-ready QA

This commit is contained in:
2026-04-01 19:41:56 +02:00
parent 7121732fcf
commit dba589b495
31 changed files with 1349 additions and 78 deletions

View File

@@ -188,7 +188,7 @@ final class ModuleRegistryTest extends TestCase
]);
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage("must define non-empty 'path' and 'target'");
$this->expectExceptionMessage('Manifest schema validation failed');
ModuleRegistry::boot($this->fixturesDir, ['mod-a']);
}
@@ -205,7 +205,7 @@ final class ModuleRegistryTest extends TestCase
]);
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage("must define a non-empty 'key'");
$this->expectExceptionMessage('Manifest schema validation failed');
ModuleRegistry::boot($this->fixturesDir, ['mod-a']);
}