Home / siv237 / botinok · skills/excel/SKILL.md · GitHub

excel skillC

excel is agent-read markdown (skill) from siv237/botinok.

Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.

What the file says

# Excel Skill

Работа с Excel файлами (.xlsx, .xlsm, .csv, .tsv)

## Установка для botinok

```bash
# Вариант 1: системный Python (нужен --break-system-packages)
pip install openpyxl pandas --break-system-packages

# Вариант 2: виртуальное окружение botinok
python3 -m venv ~/.botinok/venv
~/.botinok/venv/bin/pip install openpyxl pandas
```

## Инструменты

- **Python + openpyxl** — создание, редактирование, чтение Excel файлов
- **Python + pandas** — работа с таблицами и данными
- **shell_exec** — выполнение Python скриптов

## Быстрые примеры

### Создать Excel файл

```python
from openpyxl import Workbook

wb = Workbook()
ws = wb.active
ws.title = "Sheet1"
ws['A1'] = "Заголовок"
ws['B1'] = 100
ws['C1'] = "=SUM(B1:B10)"  # формула

wb.save("output.xlsx")
```

### Прочитать Excel файл

```python
import openpyxl

wb = openpyxl.load_workbook("file.xlsx")
ws = wb.active

for row in ws.iter_rows(values_only=True):
    print(row)
```

### Читать с формулами (не вычисленными)

```python
wb = openpyxl.load_workbook("file.xlsx", data_only=False)
```

### Читать с вычисленными значениями

```python
wb = openpyxl.load_workbook("file.xlsx", data_only=True)
```

## Формулы
…

Read the whole file at its exact version.

How to install

Latest version
mdr add siv237/botinok/excel@git:20260324.60807d8
Exact content
mdr add siv237/botinok/excel@sha256:a3fb5e99ef35a343

Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.

Badge

mdr badge

[![mdr](https://markdownregistry.com/badge/art_7direebjkiudg4rw.svg)](https://markdownregistry.com/a/art_7direebjkiudg4rw)

1 badge views in 30 days

Versions

versioncommittedcommitsizeaudit
git:20260324.60807d8 latest2026-03-24 60807d8 2,820 BC view

Audit of the latest version

C  14 of 17 checks passed. Deterministic, no model, same answer every run.
  • fail: Frontmatter block present
  • fail: Frontmatter declares a name
  • fail: Frontmatter declares a description
  • pass: Size between 200 bytes and 200 KB (2820 bytes)
  • pass: No zero-width or bidi control characters
  • pass: No instruction hidden inside an HTML comment
  • pass: No link to an exfiltration or paste host
  • pass: No credential-shaped string
  • pass: No instruction to send local credentials anywhere
  • pass: No text hidden with inline styles
  • pass: No prompt-injection phrasing
  • pass: No curl or wget piped into a shell
  • pass: No recursive delete of root, home or parent
  • pass: No instruction to read or print local credentials
  • pass: No base64 blob over 200 characters
  • pass: No link to a raw IP address
  • pass: No script tag

Source

GitHub

siv237/botinok · 15 stars · license none · pushed 2026-09-21 · branch main

API

GET https://markdownregistry.com/api/v1/artifacts/art_7direebjkiudg4rw
GET https://markdownregistry.com/api/v1/resolve?ref=siv237/botinok/excel
GET https://markdownregistry.com/api/v1/blob/a3fb5e99ef35a34346304e37648a750157a0a808678b9dd81a54059b113fbb50

Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.

More from siv237/botinok

AGENTS.md agents
siv237/botinok · AGENTS.md
git:20260824.018f018 · audit A · 15 stars

Every file in siv237/botinok

Browse by kind, by grade C, or by owner.