Problem
The jon agent (protoContent) is reachable via A2A (2ms latency, card available) but advertises zero skills in its agent card. The fleet health monitor flags this as orphanedSkillCount: 1.
Evidence
From agent_health domain snapshot:
"jon": {
"skills": [],
"executorType": "a2a",
"reachable": true,
"latencyMs": 2,
"cardAvailable": true
}
The GOAP goal fleet.no_skill_orphaned is violated because Jon's skills (chat, content strategy, antagonistic review) are expected by the system but not declared in the A2A card.
Expected
Jon's A2A agent card should declare its supported skills (at minimum chat). The AgentCardProvider or Jon's /.well-known/agent.json needs to include the skill list.
Impact
- GOAP fires autonomous dispatch every tick to investigate this
- Any action routing to Jon's skills silently fails
- Fleet health dashboard shows degraded state
Fix
Update Jon's A2A card to declare skills, or update the agent registration in agents.yaml to include the expected skill names.
Problem
The
jonagent (protoContent) is reachable via A2A (2ms latency, card available) but advertises zero skills in its agent card. The fleet health monitor flags this asorphanedSkillCount: 1.Evidence
From
agent_healthdomain snapshot:The GOAP goal
fleet.no_skill_orphanedis violated because Jon's skills (chat, content strategy, antagonistic review) are expected by the system but not declared in the A2A card.Expected
Jon's A2A agent card should declare its supported skills (at minimum
chat). TheAgentCardProvideror Jon's/.well-known/agent.jsonneeds to include the skill list.Impact
Fix
Update Jon's A2A card to declare skills, or update the agent registration in
agents.yamlto include the expected skill names.