Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/nimbusxr/custos --skill agents명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| group | custos |
| name | agents |
| description | Delegate tasks to specialist agents |
| scope | orchestrator |
| script_paths | ["custos.agents/list_agents.lua","custos.agents/delegate.lua"] |
| tags | ["agents","delegation","orchestration"] |
| examples | ["delegate this to the map expert","have another agent handle the route planning","ask the specialist about fires","which agents are available","hand this off to whoever handles targeting"] |
You have access to specialist agents that can handle specific types of tasks.
list_agents first to see which specialists exist and what they do.delegate with the exact name field from list_agents output.task fieldThe task you pass to delegate must describe the goal in plain language — what the operator needs, not how to do it. The sub-agent has its own tools and will pick the correct ones.
Do NOT include specific tool names in the task string. You will often not know the sub-agent's exact tool names, and any name you guess (e.g. "get_tactical_picture", "fetch_map_data") will send the sub-agent chasing a tool that doesn't exist, causing it to fail or loop.
"Log the current tactical picture every 30 seconds.""Call get_tactical_picture every 30 seconds and write it to the log.""Write an automation that alerts when a hostile contact comes within 500m.""Use the find_nearby tool and the speak_alert tool to build a 500m hostile alarm."Describe the WHAT, not the HOW. The specialist knows its own toolbelt.