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.
npx agentmods add skills/radif-ru/ai-multi-agent-system/bash-linuxnpx skills add radif-ru/ai-multi-agent-system --skill bash-linuxgit clone --depth 1 https://github.com/radif-ru/ai-multi-agent-systemWrote 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/skills/radif-ru/ai-multi-agent-system/bash-linux)<a href="https://agentmods.dev/skills/radif-ru/ai-multi-agent-system/bash-linux"><img src="https://agentmods.dev/badge/skills/radif-ru/ai-multi-agent-system/bash-linux.svg" alt="Measured on agentmods" 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 | $0.00050 | $0.01705 |
| Opus 5 | $0.00025 | $0.00852 |
| Sonnet 5 | $0.00010 | $0.00341 |
| Haiku 4.5 | $0.00005 | $0.00170 |
Grade B, and why
bash-linux scanned grade B with 2 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 3d 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.
Sends data to an external URLmediumData exfiltration
A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.
| POST с JSON | `curl -X POST -H "Content-Type: application/json" -d '{"key":"value"}' URL` | Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
| Скачать файл | `curl -O https://example.com/file` | How it starts
The opening of the file, as written. The whole thing — 212 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill: bash-linux
Базовые шаблоны Bash для Linux/macOS.
1. Операторы и связки
Цепочки команд
| Оператор | Значение | Пример |
|---|---|---|
; |
Запуск последовательно | cmd1; cmd2 |
&& |
Запуск, если предыдущая успешна | npm install && npm run dev |
|| |
Запуск, если предыдущая упала | npm test || echo "Tests failed" |
| |
Передать вывод по конвейеру | ls | grep ".js" |
2. Файловые операции
Базовые команды
| Задача | Команда |
|---|---|
| Список всех файлов | ls -la |
| Найти файлы по шаблону | find . -name "*.js" -type f |
| Содержимое файла | cat file.txt |
| Первые N строк | head -n 20 file.txt |
| Последние N строк | tail -n 20 file.txt |
| Следить за логом | tail -f log.txt |
| Поиск в файлах | grep -r "pattern" --include="*.js" |
| Размер файла/каталога | du -sh * |
| Свободное место | df -h |
3. Управление процессами
| Задача | Команда |
|---|---|
| Список процессов | ps aux |
| Найти по имени | ps aux | grep node |
| Убить по PID | kill -9 <PID> |
| Кто слушает порт | lsof -i :3000 |
| Убить процесс на порту | kill -9 $(lsof -t -i :3000) |
| Запустить в фоне | npm run dev & |
| Список фоновых задач | jobs -l |
| Вернуть в foreground | fg %1 |
4. Обработка текста
Основные инструменты
| Инструмент | Назначение | Пример |
|---|---|---|
grep |
Поиск | grep -rn "TODO" src/ |
sed |
Замена | sed -i 's/old/new/g' file.txt |
awk |
Извлечь столбцы | awk '{print $1}' file.txt |
cut |
Вырезать поля | cut -d',' -f1 data.csv |
sort |
Сортировка | sort -u file.txt |
uniq |
Уникальные строки | sort file.txt | uniq -c |
wc |
Подсчёт | wc -l file.txt |
5. Переменные окружения
| Задача | Команда |
|---|---|
| Показать все | env или printenv |
| Показать одну | echo $PATH |
| Установить временно | export VAR="value" |
| Установить только для команды | VAR="value" command |
| Добавить в PATH | export PATH="$PATH:/new/path" |
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.
- 3d ago First seen · 212 lines · 50 tokens per session scan B b418a4a2aaa6
bash-linux is a skill published in the GitHub repository radif-ru/ai-multi-agent-system (6 stars, last pushed 1mo ago), licensed MIT. It adds 50 tokens to every session and 1,705 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
shortfilm-prompt
电影感 AI 视频提示词的 5 段式写法(Seedance / 小云雀 / Sora / 可灵 / 即梦通用),含 14 条翻车规避规则。挂给写视频提示词、分镜、短剧脚本的步骤。.
ao-workflow-runner
多角色 YAML 工作流执行引擎——解析 workflow YAML,加载 agency-agents-zh 角色,按 DAG 顺序执行.
task_automation
Design effective automated workflows using scheduled tasks, prompt chaining, and delivery channels.
claude_code_delegation
Delegate coding, review, and refactor tasks to Claude Code CLI through Row-Bot's approval-gated shell workflow.
designer_guide
Guidance for creating and editing designs using the designer tool.
row_bot_status_guide
Guidance for querying and managing Row-Bot's own configuration and logs.