AgentMetadata.fromJson constructor
Implementation
factory AgentMetadata.fromJson(Map<String, dynamic> json) {
return AgentMetadata(
agentType: json['agentType'] as String,
worktreePath: json['worktreePath'] as String?,
description: json['description'] as String?,
);
}