This commit is contained in:
a2a-platform
2026-06-14 22:56:58 +00:00
commit cfffc4dfd6
5 changed files with 173 additions and 0 deletions

48
meta_agent_manifest.json Normal file
View File

@@ -0,0 +1,48 @@
{
"composition": {
"max_nodes": 8,
"max_parallel": 3,
"max_replans": 1,
"planning": "llm_dag",
"sub_agents": [
{
"default_args": {},
"name": "blog-openapi-agent",
"required": true,
"skills": [
"auto",
"get_blog_health",
"list_blog_posts",
"create_blog_post",
"get_blog_post",
"upsert_blog_post",
"delete_blog_post"
]
},
{
"default_args": {},
"name": "google-trends-agent",
"required": true,
"skills": [
"fetch",
"fetch_structured"
]
}
]
},
"goal": {
"constraints": [],
"objective": "Figure out what kind of blog content works",
"success_criteria": []
},
"memory": {
"namespace": "metatest",
"retention": "durable",
"scope": "agent",
"tiers": [
"files",
"kv",
"vector"
]
}
}