Borrowing it
Nothing to install: this file belongs to caretive-ai/project-careti. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/caretive-ai/project-careti/main/.agents/skills/update-model-list/SKILL.mdgit clone --depth 1 https://github.com/caretive-ai/project-caretiWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/caretive-ai/project-careti/update-model-list)<a href="https://agentmods.dev/skills/caretive-ai/project-careti/update-model-list"><img src="https://agentmods.dev/badge/skills/caretive-ai/project-careti/update-model-list/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/caretive-ai/project-careti/update-model-list"><img src="https://agentmods.dev/badge/skills/caretive-ai/project-careti/update-model-list.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Agent Snooping · line 94 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.00933 |
| Opus 5 | $0.00000 | $0.00466 |
| Sonnet 5 | $0.00000 | $0.00187 |
| Haiku 4.5 | $0.00000 | $0.00093 |
Grade A, and why
update-model-list scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Update Model List Skill
Overview
Caret의 지원 모델 리스트를 자동 생성하고 관련 문서를 업데이트하는 스킬입니다.
When to Use
- 새로운 API 프로바이더나 모델이
src/shared/api.ts에 추가되었을 때 - README나 문서에서 프로바이더/모델 개수를 업데이트해야 할 때
- 지원 모델 리스트 문서를 재생성해야 할 때
Script Location
careti-scripts/build/generate-support-model-list.js
Command
node careti-scripts/build/generate-support-model-list.js
Output Files
스크립트 실행 시 다음 파일들이 자동 생성됩니다:
careti-docs/development/support-model-list.mdx(한국어)careti-docs/development/support-model-list.en.mdx(영어)
Data Source
- API 정의 파일:
src/shared/api.ts - 파싱 대상:
ApiProvider타입에서 프로바이더 목록 추출*Models객체들에서 모델 정보 추출 (maxTokens, contextWindow, supportsImages, inputPrice, outputPrice)
Workflow
1. 스크립트 실행
node careti-scripts/build/generate-support-model-list.js
2. 출력 확인
📊 추출된 데이터:
🔹 프로바이더: 30개
🔹 총 모델: 349개
🔹 유니크 모델: 266개
🔹 모델 섹션: 30개
3. README 파일 업데이트
다음 파일들의 프로바이더/모델 개수를 업데이트해야 합니다:
README.mdcareti-docs/readme-i18n/README.ko.mdcareti-docs/readme-i18n/README.ja.mdcareti-docs/readme-i18n/README.zh-cn.mdcareti-docs/readme-i18n/README.fr.mdcareti-docs/readme-i18n/README.de.mdcareti-docs/readme-i18n/README.ru.md
업데이트할 텍스트 패턴 (스크립트 출력 참조):
- 영어:
{N} providers, {M} models - 한국어:
{N}개 프로바이더, {M}개 모델 - 일본어:
{N}プロバイダー、{M}モデル - 중국어:
{N}个提供商,{M}个模型 - 프랑스어:
{N} fournisseurs, {M} modèles - 독일어:
{N} Anbieter, {M} Modelle - 러시아어:
{N} провайдеров, {M} моделей
Current Stats (2026-01)
- 프로바이더 (모델 섹션): 31개
- 유니크 모델: 266개
- 총 모델 정의: 349개
Troubleshooting
프로바이더 개수가 맞지 않을 때
extractModelData() 함수의 ApiProvider 파싱 로직 확인:
api.ts의 ApiProvider 타입 정의가 여러 줄에 걸쳐 있는지 확인- 주석이나
CARETI MODIFICATION마커가 파싱을 방해하지 않는지 확인
스크립트가 실행되지 않을 때
# 직접 실행
node careti-scripts/build/generate-support-model-list.js
# 또는 npm 스크립트 등록 후
npm run models:generate
Notes
- 스크립트는
api.ts를 파싱하여 데이터를 추출하므로,api.ts의 형식이 변경되면 스크립트도 수정이 필요할 수 있습니다. - 생성된 문서는 자동 생성이므로 직접 수정하지 마세요.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 97 lines · 0 tokens per session scan A 86cda22e4304
update-model-list is a skill published in the GitHub repository caretive-ai/project-careti (47 stars, last pushed 1mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 933 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
keybindings-help
Use when the user wants to customize keyboard shortcuts, rebind keys, add chord bindings, or modify /.claude/keybindings.json. Examples: "rebind ctrl+s", "add a chord shortcut", "change the submit key", "customize keybindings".
tmux
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
summarize
Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for “transcribe this YouTube/video”).
eliza-cloud-buy-domain
Use whenever a user wants to register or buy a custom domain for an Eliza Cloud app — including in the same request as building the app ("build me X and put it on Y.com"). Uses Cloudflare as registrar after explicit user confirmation, paid from the user's existing cloud credit balance. Pairs with build-monetized-app…
make-a-deck
Slide presentation in HTML.
peekaboo
Capture and automate macOS UI with the Peekaboo CLI.