files

files is a skill for Claude Code, Codex from Rayan55050/progressive-agent. It costs 22 tokens per session (836 once invoked), scanned A, original, MIT.

A file-management toolkit for searching, reading, listing, writing, copying, opening, sending, deleting, and extracting text from PDF files. Deletion requires explicit confirmation.

In plain words
What is it for?
It is for finding files, inspecting folders, reading or editing text, working with PDFs, opening or sending files, and explicitly deleting selected files.
Why use it?
It puts common file operations in one interface and can extract text from PDFs without opening them manually. The confirmation rule helps prevent accidental deletion.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/rayan55050/progressive-agent/files
Any agent
npx skills add Rayan55050/progressive-agent --skill files
Clone the repo
git clone --depth 1 https://github.com/Rayan55050/progressive-agent

Made for: Claude Code, Codex.

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 files

README.md
[![agentmods](https://agentmods.dev/badge/skills/rayan55050/progressive-agent/files.svg)](https://agentmods.dev/skills/rayan55050/progressive-agent/files)
Your own site
<a href="https://agentmods.dev/skills/rayan55050/progressive-agent/files"><img src="https://agentmods.dev/badge/skills/rayan55050/progressive-agent/files.svg" alt="Measured on agentmods" height="20"></a>
Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 836 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00022 $0.00836
Opus 5 $0.00011 $0.00418
Sonnet 5 $0.00004 $0.00167
Haiku 4.5 $0.00002 $0.00084

Measured 4d ago against content hash 98ae9c2f2ff4, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

files 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 4d 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/files/SKILL.md · 102 lines

What it actually says

Работа с файлами

У тебя есть 9 инструментов для работы с файлами на компьютере владельца:

Инструменты

file_search

Поиск файлов и папок по имени/паттерну. Рекурсивный поиск.

  • query — имя файла или паттерн (например "*.py", "report")
  • path — где искать (по умолчанию домашняя директория)
  • max_results — лимит результатов (по умолчанию 20)

file_read

Чтение текстового файла. UTF-8 с fallback на Latin-1.

  • path — полный путь к файлу
  • max_lines — лимит строк (по умолчанию 200)

file_list

Листинг содержимого папки (ls/dir).

  • path — путь к директории
  • show_hidden — показывать скрытые файлы (по умолчанию false)

file_write

Создание или запись в файл.

  • path — путь к файлу
  • content — содержимое
  • mode — "write" (перезаписать) или "append" (дописать)

file_delete

Удаление файла. ТОЛЬКО когда пользователь ЯВНО просит удалить.

  • path — путь к файлу
  • confirm — должно быть true

file_open

Открыть файл в системном приложении (как двойной клик).

  • path — путь к файлу

file_send

Отправить файл в Telegram.

  • path — путь к файлу

file_pdf

Чтение PDF-файлов (извлекает текст).

  • path — путь к PDF
  • max_pages — лимит страниц (по умолчанию 50)

file_copy

Копирование файла.

  • source — откуда
  • destination — куда

Правила

  1. Безопасность: НИКОГДА не удаляй файлы без явной просьбы пользователя
  2. Пути: разрешён доступ только к домашней директории пользователя и вложенным папкам
  3. Запрещённые файлы: НЕ читай и НЕ показывай .env, credentials, файлы с токенами/паролями
  4. Удаление: используй file_delete ТОЛЬКО когда пользователь напрямую сказал "удали"
  5. Большие файлы: если файл больше 200 строк, покажи первые строки и спроси — показать полностью?
  6. Навигация: если пользователь говорит "рабочий стол" → домашняя директория + /Desktop
  7. PDF: для PDF файлов используй file_pdf, не file_read
  8. Отправка: если просят "скинь", "отправь", "пришли" файл → file_send
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. 4d ago First seen · 102 lines · 22 tokens per session scan A 98ae9c2f2ff4

Subscribe to this mod's changes

files is a skill published in the GitHub repository Rayan55050/progressive-agent (2 stars, last pushed 6d ago), licensed MIT. It adds 22 tokens to every session and 836 once invoked, about $0.0001 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-31.

Related

Other skills, from other repositories

hive.pdf

Read, write, merge, split, rotate, watermark, encrypt, and OCR PDF files using Python (pypdf, pdfplumber, reportlab, pypdfium2) and command-line tools (poppler-utils, qpdf). Use when the user asks to extract text/tables/images from a PDF, create or modify a PDF, combine or split PDFs, OCR a scanned PDF…

aden-hive/hive · 98 tokens

document-comparison

Compare two or more PDF documents by extracting targeted sections, building a structured comparison matrix, and highlighting differences with page references.

vladkesler/initrunner · 28 tokens

citedy-lead-magnets

Generate AI-powered lead magnets — checklists, swipe files, and frameworks that convert visitors into subscribers. PDF generation with optional AI illustrations. No competitors in any MCP/skill store. Powered by Citedy.

citedy/adclaw · 51 tokens

save-as-pdf

Reformat the current HTML design into a paginated, paper-ready PDF. The "Instant" export already gives the user a PDF at the design's native pixel size — this path is for when they want real pages.

asgeirtj/system_prompts_leaks · 9 tokens

foundry-hosted-agent-validation

Step-by-step process for validating a Python Foundry hosted agent sample (under python/samples/04-hosting/foundry-hosted-agents/) end to end — running it locally (native runtime and azd ai agent run) and after deploying it to an Azure AI Foundry project with azd. Use this when asked to validate a hosted agent sample.

microsoft/agent-framework · 82 tokens

canvas-design

Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.

netease-youdao/LobsterAI · 59 tokens