소스 정보
- 저장소
- PhyAgentOS/PhyAgentOS-core
- 최근 소스 활동
- 2026년 3월 31일 14:04
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,907
- 포크
- 107
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/PhyAgentOS/PhyAgentOS-core --skill agent-mode명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | agent-mode |
| description | Unified tool for managing agent LLM modes (add, remove, update, list, switch). |
| metadata | {"nanobot":{"emoji":"🔄"}} |
Unified tool for managing agent LLM modes including adding, removing, updating, listing, and switching models.
This skill provides the following tool:
agent_modeUnified tool for agent mode management.
Parameters:
method (string, required): The method to perform - add, remove, update, list, or switchmode (string, optional): Mode name (e.g., "common", "coding", "multimodal"). Default is "common". Required for all methods except list.model (string, optional): Model identifier (e.g., "openai/qwen3.5:cloud"). Required for add and update methods.describe (string, optional): Description of the model. Required for add and update methods.Example - List all models:
<tool>agent_mode</tool>
<parameter name="method">list</parameter>
Example - Switch to coding mode:
<tool>agent_mode</tool>
<parameter name="method">switch</parameter>
<parameter name="mode">coding</parameter>
Example - Switch to common mode:
<tool>agent_mode</tool>
<parameter name="method">switch</parameter>
<parameter name="mode">common</parameter>
Example - Add a new coding model openai/qwen3-coder-next:cloud with describe: a coding model:
<tool>agent_mode</tool>
<parameter name="method">add</parameter>
<parameter name="mode">coding</parameter>
<parameter name="model">openai/qwen3-coder-next:cloud</parameter>
<parameter name="describe">a coding model</parameter>
Example - Remove the coding mode:
<tool>agent_mode</tool>
<parameter name="method">remove</parameter>
<parameter name="mode">coding</parameter>
Example - Update a model for coding to openai/qwen3-coder-next:cloud:
<tool>agent_mode</tool>
<parameter name="method">update</parameter>
<parameter name="mode">coding</parameter>
<parameter name="model">openai/qwen3-coder-next:cloud</parameter>
When users want to manage agent modes:
agent_mode with method: "list"agent_mode with method: "switch", mode: "coding"agent_mode with method: "add", mode: "xxx", model: "xxx", describe: "xxx"agent_mode with method: "remove", mode: "xxx"agent_mode with method: "update", mode: "xxx", model: "xxx", describe: "xxx"Always use tool to manage agent modes, do not think by you self!