Agent Skills
› zzatpku/AgentFactory
› list_saved_subagents
list_saved_subagents
GitHub列出所有已保存的子代理技能名称,帮助在创建新技能前检查是否存在合适选项。
Trigger Scenarios
需要查找已有子代理技能时
准备创建新子代理前需去重或复用
Install
npx skills add zzatpku/AgentFactory --skill list_saved_subagents -g -y
SKILL.md
Frontmatter
{
"name": "list_saved_subagents",
"description": "List all previously saved subagent skills. Use this to check if a suitable subagent already exists before creating a new one."
}
List Saved Subagents
List all previously saved subagent skills.
Usage
<action>list_saved_subagents</action>
<params>{}</params>
Parameters
None required.
Returns
{
"success": True,
"skills": [
{"name": "skill_name_1"},
{"name": "skill_name_2"},
...
],
"count": 2
}
Important Notes
- Returns only skill names, not full descriptions
- Use
get_skill_descriptionwith a specific skill name to view its details - Check if any existing subagent matches your problem category before creating a new one
Version History
- df92287 Current 2026-07-25 08:38


