Borrowing it
Nothing to install: this file belongs to faborsky/sklik-ppc-app. 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/faborsky/sklik-ppc-app/main/CLAUDE.mdgit clone --depth 1 https://github.com/faborsky/sklik-ppc-appWrote 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/instructions/faborsky/sklik-ppc-app/claude-md)<a href="https://agentmods.dev/instructions/faborsky/sklik-ppc-app/claude-md"><img src="https://agentmods.dev/badge/instructions/faborsky/sklik-ppc-app/claude-md/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/instructions/faborsky/sklik-ppc-app/claude-md"><img src="https://agentmods.dev/badge/instructions/faborsky/sklik-ppc-app/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.03185 | $0.03185 |
| Opus 5 | $0.01592 | $0.01592 |
| Sonnet 5 | $0.00637 | $0.00637 |
| Haiku 4.5 | $0.00318 | $0.00318 |
Grade A, and why
sklik-ppc-app CLAUDE.md 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 2d 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 — 92 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Sklik Search App — CLI for Sklik DRAK API
Python CLI for managing PPC search & display campaigns on Seznam Sklik via the DRAK JSON API. Built to be driven by a human and by Claude Code: structured --json I/O, parseable errors, and a self-enforcing per-account request budget.
Setup
source venv/bin/activate && python sklik_cli.py <command> [flags]
# or: ./run.sh <command> [flags]
Code structure
The implementation is a package under sklik/; sklik_cli.py is a thin entrypoint.
sklik/api.py— engine: config, account/token discovery, auth + session cache, the cross-session request budget (rate limiting),_api_call, paging of list methods (_fetch_all,_list_page_size), and structured errors (_fail/_fail_msg).sklik/fenix.py— engine for the Fénix REST API (api.sklik.cz/v1, Seznam Nákupy): separate auth (SKLIK_FENIX_REFRESH_TOKEN→ 1h access token cached per account+managed user in.fenix_cache_<account>.json),fenix.call(), cursor paging (fenix.fetch_all()),poll_report()for async stats. Reusesapi._fail_msg. Needs apremiseId(shop) viafenix.resolve_premise().sklik/formatting.py— CZK⇄haléře conversion +_output_json.sklik/reports.py— two-step report helper (createReport→readReport).sklik/images.py— image loading/base64 shared by combined ads and banners.sklik/commands/*.py— one module per domain (account,campaigns,groups,keywords,ads,research,sitelinks,conversions,retargeting,banners,placements,nakupy).sklik/cli.py— argparse wiring + dispatch.
Shared mutable state (ACTIVE_ACCOUNT, _JSON_OUTPUT, session) lives in api.py and changes only through api.set_account() / api.set_json_output(). Fénix keeps its own ACTIVE_USER_ID in fenix.py (fenix.set_user_id()), because there the managed account is chosen when the token is minted, not per call. Command modules read it via the api module — never from sklik.api import ACTIVE_ACCOUNT, which would copy a stale value. BASE_DIR in api.py resolves to the project root, so .env and the .session_cache_* / .rate_limit_* files stay where they were.
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.
- 2d ago Changed · +6 lines · +666 tokens per session c2fa481b68e2
- 10d ago First seen · 86 lines · 2,519 tokens per session scan A 8a27a1afd2ca
sklik-ppc-app CLAUDE.md is an instructions file published in the GitHub repository faborsky/sklik-ppc-app (13 stars, last pushed 2d ago), licensed MIT. It adds 3,185 tokens to every session, about $0.0159 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-08-30.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.