*/ private function decodeAgentJson(string $path): array { $decoded = json_decode($this->readProjectFile($path), true); $this->assertIsArray($decoded, 'Invalid JSON in ' . $path); return $decoded; } }