verify-implementation

verify-implementation is a skill for Claude Code from Dannykkh/skill-olympus. It costs 32 tokens per session (1,742 once invoked), scanned A, original, MIT.

A coordinator that runs every verification skill registered in a project and combines the results into one report. It also suggests how to fix issues and supports rechecking after approved changes.

In plain words
What is it for?
Use it after building a feature, before opening a pull request, during code review, or when checking project rules.
Why use it?
It gives implementation checks a single entry point instead of requiring each verification task to be run separately.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions AGENTS.md.

Part of the skill-olympus plugin — 98 skills, 7 commands, 42 agents, 5 MCP servers shipped together

Good fit Use it after building a feature, before opening a pull request, during code review, or when checking project rules.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dannykkh/skill-olympus/verify-implementation
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Dannykkh/skill-olympus --skill verify-implementation
Clone the repo
git clone --depth 1 https://github.com/Dannykkh/skill-olympus

Made for: Claude Code.

Or install skill-olympus, the plugin that ships this one along with the rest of its 98 skills, 7 commands, 42 agents, 5 MCP servers.

Wrote 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.

agentmods badge for verify-implementation

README.md
[![agentmods](https://agentmods.dev/badge/skills/dannykkh/skill-olympus/verify-implementation/github.svg)](https://agentmods.dev/skills/dannykkh/skill-olympus/verify-implementation)
Your own site
<a href="https://agentmods.dev/skills/dannykkh/skill-olympus/verify-implementation"><img src="https://agentmods.dev/badge/skills/dannykkh/skill-olympus/verify-implementation/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.

agentmods 80×15 button for verify-implementation

Your own site · 80×15
<a href="https://agentmods.dev/skills/dannykkh/skill-olympus/verify-implementation"><img src="https://agentmods.dev/badge/skills/dannykkh/skill-olympus/verify-implementation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,742 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00032 $0.01742
Opus 5 $0.00016 $0.00871
Sonnet 5 $0.00006 $0.00348
Haiku 4.5 $0.00003 $0.00174

Measured 7d ago against content hash c9c4cb5047f3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

verify-implementation 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 7d 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.

skills/verify-implementation/SKILL.md · 236 lines

How it starts

The opening of the file, as written. The whole thing — 236 lines — stays where its author put it; the contents beside it link to each section on GitHub.

구현 검증

목적

프로젝트에 등록된 모든 verify-* 스킬을 순차적으로 실행하여 통합 검증을 수행합니다:

  • 각 스킬의 Workflow에 정의된 검사를 실행
  • 각 스킬의 Exceptions를 참조하여 false positive 방지
  • 발견된 이슈에 대해 수정 방법을 제시
  • 사용자 승인 후 수정 적용 및 재검증

실행 시점

  • 새로운 기능을 구현한 후
  • Pull Request를 생성하기 전
  • 코드 리뷰 중
  • 코드베이스 규칙 준수 여부를 감사할 때

실행 대상 스킬

이 스킬이 순차 실행하는 검증 스킬 목록입니다. /manage-skills가 스킬을 생성/삭제할 때 이 목록을 자동 업데이트합니다.

(아직 등록된 검증 스킬이 없습니다)

워크플로우

Step 1: 소개

위의 실행 대상 스킬 섹션에 나열된 스킬을 확인합니다.

선택적 인수가 제공된 경우, 해당 스킬만 필터링합니다.

등록된 스킬이 0개인 경우:

## 구현 검증

검증 스킬이 없습니다. `/manage-skills`를 실행하여 프로젝트에 맞는 검증 스킬을 생성하세요.

이 경우 워크플로우를 종료합니다.

등록된 스킬이 1개 이상인 경우:

실행 대상 스킬 테이블의 내용을 표시합니다:

## 구현 검증

다음 검증 스킬을 순차 실행합니다:

| # | 스킬 | 설명 |
|---|------|------|
| 1 | verify-<name1> | <description1> |
| 2 | verify-<name2> | <description2> |

검증 시작...

Step 2: 순차 실행

실행 대상 스킬 테이블에 나열된 각 스킬에 대해 다음을 수행합니다:

2a. 스킬 SKILL.md 읽기

해당 스킬의 skills/verify-<name>/SKILL.md를 읽고 다음 섹션을 파싱합니다:

  • Workflow — 실행할 검사 단계와 탐지 명령어
  • Exceptions — 위반이 아닌 것으로 간주되는 패턴
  • Related Files — 검사 대상 파일 목록
2b. 검사 실행

Workflow 섹션에 정의된 각 검사를 순서대로 실행합니다:

  1. 검사에 명시된 도구(Grep, Glob, Read, Bash)를 사용하여 패턴 탐지
  2. 탐지된 결과를 해당 스킬의 PASS/FAIL 기준에 대조
  3. Exceptions 섹션에 해당하는 패턴은 면제 처리
  4. FAIL인 경우 이슈를 기록:
    • 파일 경로 및 라인 번호
    • 문제 설명
    • 수정 권장 사항 (코드 예시 포함)
2c. 스킬별 결과 기록

각 스킬 실행 완료 후 진행 상황을 표시합니다:

### verify-<name> 검증 완료

- 검사 항목: N개
- 통과: X개
- 이슈: Y개
- 면제: Z개

[다음 스킬로 이동...]

Step 3: 통합 보고서

모든 스킬 실행 완료 후, 결과를 하나의 보고서로 통합합니다:

## 구현 검증 보고서

### 요약

| 검증 스킬 | 상태 | 이슈 수 | 상세 |
|-----------|------|---------|------|
| verify-<name1> | PASS / X개 이슈 | N | 상세... |
| verify-<name2> | PASS / X개 이슈 | N | 상세... |

**발견된 총 이슈: X개**

모든 검증 통과 시:

모든 검증을 통과했습니다!

구현이 프로젝트의 모든 규칙을 준수합니다:

- verify-<name1>: <통과 내용 요약>
- verify-<name2>: <통과 내용 요약>

코드 리뷰 준비가 완료되었습니다.

Read the full file on GitHub · 236 lines

Changes

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.

  1. 7d ago First seen · 236 lines · 32 tokens per session scan A c9c4cb5047f3

Subscribe to this mod's changes

verify-implementation is a skill published in the GitHub repository Dannykkh/skill-olympus (5 stars, last pushed today), licensed MIT. It adds 32 tokens to every session and 1,742 once invoked, about $0.0002 per session on Opus 5. 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-09-03.