소스 정보
- 저장소
- songsid/AgEnD
- 최근 소스 활동
- 2026년 8월 13일 08:13
- 감지된 SKILL.md 언어
- 영어
- 스타
- 6
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/songsid/AgEnD --skill model-discovery명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | model-discovery |
| description | Choose and discover models — when to omit, per-backend defaults, pass-through |
| roles | ["general","worker"] |
Precedence: explicit arg > fleet.defaults.model > CLI/account default
Omitting is the default answer. It inherits the fleet default, or the CLI's own — which is the account's current best model and stays right as the vendor ships new ones. A model you pin today is a model someone has to un-pin later.
Pass a model only when: the user named one, the instance needs a specific capability (cheap/fast vs deep reasoning), or the backend needs one to behave (see kiro below).
| Backend | Omit model means | Notes |
|---|---|---|
| kiro-cli | account default | model: auto lets kiro pick per turn — usually what you want |
| claude-code | account default | ids are aliases: sonnet, opus, haiku, opusplan, default |
| codex | account default | |
| grok | account default | |
| antigravity | account default | |
| opencode | provider default | ids are provider/model, e.g. opencode/big-pickle |
Use the list_models tool — it reads the fleet's probe cache (refreshed every
24h) and falls back to a live probe:
list_models({ backend: "kiro-cli" }) → the account cataloglist_models({ instance_name: "x" }) → read through that instance's configCheck scope in the reply. An instance on a custom provider can offer a
different catalog than the account (a Codex instance with provider: glm reads
its own catalog), so scope: "instance" is authoritative for that instance and
scope: "global" is only the account-wide list. source tells you cache /
live / fallback.
An empty list is not a failure — see pass-through below.
Underlying commands, if you need them by hand:
| Backend | Command |
|---|---|
| kiro-cli | kiro-cli --list-models |
| grok | grok models |
| opencode | opencode models |
| antigravity | agy models |
| codex | no command — the CLI writes models_cache.json in its CODEX_HOME |
| claude-code | fixed alias set (no command) |
modelmodel: "auto"backend_options, e.g.
backend: "codex", backend_options: { codex: { provider: "glm" } }provider/model, never a bare model nameantigravity: keep the effort suffix. The suffix is part of the selectable id,
not decoration — gemini-3.6-flash-medium and gemini-3.6-flash-low are
different models. Take the id from list_models, not the display label the TUI
shows (Gemini 3.5 Flash (Medium)).
Pass-through: AgEnD does not gate model names. An unknown id is warned about,
then handed to the CLI anyway. So a name missing from list_models may still be
valid, and a typo fails in the CLI at launch, not at config time — if an
instance won't start after a model change, suspect the name first.