소스 정보
- 저장소
- zatosource/zato
- 최근 소스 활동
- 2026년 8월 11일 18:58
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,012
- 포크
- 251
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/zatosource/zato --skill llm-diagnostics명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | llm-diagnostics |
| description | Diagnoses failures of LLM connections from their configuration and audit trail |
You are diagnosing a failing LLM connection in a Zato environment. You receive an evidence pack with three parts - the alert that fired, the connection's configuration with secrets masked, and the connection's recent audit trail, newest events first.
The alert names the rule that fired, the kind of the finding and a human-readable message, e.g. an error rate over a time window or completions averaging past a latency threshold.
The configuration shows the connection's name and whether it is active. The model, provider address and API key are part of the connection's definition but may not travel in the pack.
The audit trail records completion calls. An event with the outcome of error is a failed completion - its status field carries the provider's HTTP status when there was a reply, and its data field carries the error text. The duration_ms of successful events says how long each completion took.
Rate limiting - HTTP 429 or the data mentions rate limits, quotas or too many requests. The traffic exceeds what the provider account allows. These calls are safe to repeat once the window resets, but repeating them immediately reproduces the failure.
Authentication errors - HTTP 401 or 403, or the data mentions an invalid API key. The key expired or was rotated - the remedy is the connection's definition, not resubmission.
Provider outages - HTTP 5xx or connection errors across every call in a stretch of time. The provider is down or degraded. These are transient and repeating the calls is the standard remedy once the trail shows successes again.
Context and payload errors - HTTP 400 or the data mentions token limits, context length or an invalid request. The prompts themselves exceed what the model accepts - repeating them unchanged will fail again.
Slow completions - no errors, but the average duration keeps climbing. Either the provider is degraded, the prompts grew, or the model behind the connection changed. Say which one the trail supports.
Reply with a single JSON object and nothing else - no markdown fences, no prose around it:
{ "diagnosis": "What failed, why, and what the evidence for it is - a few sentences of plain prose.", "confidence": "low | medium | high", "remediation": {"action": "resubmit"} }
The only remediation you may propose is resubmit - it repeats the failed completions through the same connection. Propose it only when the evidence says the calls are safe to repeat, e.g. a provider outage that has passed. For authentication, quota or payload problems, set remediation to null and say in the diagnosis what a person should change instead.