routeros-app-yaml

routeros-app-yaml is a skill for Claude Code, Codex from tikoci/routeros-skills. It costs 90 tokens per session (2,642 once invoked), scanned A, original, MIT.

A guide to RouterOS `/app` YAML, the format MikroTik RouterOS uses to define and manage container-based applications. It covers services, storage volumes, networks, configuration files, and app loading through the command line or REST API.

In plain words
What is it for?
Writing or checking RouterOS app YAML, creating MikroTik container applications, building app-store entries, and diagnosing validation errors.
Why use it?
It explains the differences between RouterOS `/app` YAML and Docker Compose, helping prevent invalid definitions and configuration errors.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Writing or checking RouterOS app YAML, creating MikroTik container applications, building app-store entries, and diagnosing validation errors.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tikoci/routeros-skills/routeros-app-yaml
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 tikoci/routeros-skills --skill routeros-app-yaml
Clone the repo
git clone --depth 1 https://github.com/tikoci/routeros-skills

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 routeros-app-yaml

README.md
[![agentmods](https://agentmods.dev/badge/skills/tikoci/routeros-skills/routeros-app-yaml/github.svg)](https://agentmods.dev/skills/tikoci/routeros-skills/routeros-app-yaml)
Your own site
<a href="https://agentmods.dev/skills/tikoci/routeros-skills/routeros-app-yaml"><img src="https://agentmods.dev/badge/skills/tikoci/routeros-skills/routeros-app-yaml/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 routeros-app-yaml

Your own site · 80×15
<a href="https://agentmods.dev/skills/tikoci/routeros-skills/routeros-app-yaml"><img src="https://agentmods.dev/badge/skills/tikoci/routeros-skills/routeros-app-yaml.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,642 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00090 $0.02642
Opus 5 $0.00045 $0.01321
Sonnet 5 $0.00018 $0.00528
Haiku 4.5 $0.00009 $0.00264

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

Security

Grade A, and why

routeros-app-yaml 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 12d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

routeros-app-yaml/SKILL.md · 281 lines

How it starts

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

RouterOS /app YAML Format (7.21+)

RouterOS 7.21 introduced the /app path (built-in app listing and management). The full YAML app creation feature (/app/add) appeared in 7.22 (first seen in 7.22beta5). Think of it as MikroTik's opinionated alternative to docker-compose — but it is NOT docker-compose, with significant differences.

What /app Is

The /app subsystem lets users define one or more containers as a single "application" in YAML. RouterOS parses the YAML, creates containers, volumes, networks, and config files, then manages the lifecycle.

Key concepts:

  • Each /app is defined by a YAML document with services, configs, volumes, and networks
  • The YAML is loaded into RouterOS via CLI (/app/add yaml-url=...) or REST API
  • Built-in apps ship with RouterOS (visible at GET /rest/app)
  • Custom apps can be added from URLs or inline YAML
  • App stores (app-store-urls=) provide curated collections

Critical Differences from docker-compose

Feature docker-compose RouterOS /app
Port format host:container[/protocol] Two styles (see below)
Environment KEY=value or list Same, but placeholders expand
Volumes Named or bind mounts Subset — no bind mount options
Networks Full docker network model Simplified — name + external
Build Full Dockerfile support Minimal (context + dockerfile)
Configs Docker configs API Inline content only
Deploy/resources Yes No — not supported
Top-level version: Deprecated (was required) Not used
File extension .yml / .yaml .tikapp.yaml (convention)

Top-Level Properties

Property Type Required Description
name string No Unique identifier for the /app
descr string No Human-readable description shown in app UI
page string (URI) No Project homepage URL
category string (enum) No App store classification
icon string (URI) No Icon URL (shown in WebFig with show-in-webfig=yes)
default-credentials string or null No username:password shown in UI
url-path string No URL path suffix for browser access (e.g., /admin)
credentials string No Credential hint (alternative to default-credentials)
option boolean No Whether app is optional
auto-update boolean No Pull and restart containers on every boot
services object Yes Container service definitions (≥1 required)
volumes object No Named volume declarations
networks object No Network declarations
configs object No Config file declarations with inline content

Read the full file on GitHub · 281 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 281 lines · 90 tokens per session scan A 4ed1df4004e0

Subscribe to this mod's changes

routeros-app-yaml is a skill published in the GitHub repository tikoci/routeros-skills (58 stars, last pushed 1mo ago), licensed MIT. It adds 90 tokens to every session and 2,642 once invoked, about $0.0005 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.

Related

Other skills, from other repositories

authos-platform-deployment

Deploy and configure an AuthOS API instance from source or Docker. Use when setting database backend, JWT signing keys, environment variables, billing provider, SMTP, GeoIP, Docker images, health checks, or production reverse proxy settings.

drmhse/authos_skill · 52 tokens

manage-mounts

Configure which host directories agent containers can access. View, add, or remove mount allowlist entries. Triggers on "mounts", "mount allowlist", "agent access to directories", "container mounts".

nanocoai/nanoclaw · 47 tokens

apple-container

Apple's open-source container CLI to build, run, and manage OCI/Linux containers as lightweight per-container VMs on Apple-silicon macOS — no Docker daemon required. Use when the user mentions the container CLI, "apple container", running or building containers on macOS without Docker/Podman, container run, container…

sanjay3290/ai-skills · 146 tokens

mirror-optimizer

A skill that detects a project’s package managers and configures regional package mirrors, mainly for deployments from mainland China. Package mirrors are alternate servers for downloading dependencies such as libraries and container images.

huangwb8/skills · 73 tokens

kubernetes-skill

Prevent Kubernetes hallucinations by diagnosing and fixing failure modes: insecure workload defaults, resource starvation, network exposure, privilege sprawl, fragile rollouts, and API drift. Use when generating, reviewing, refactoring, or migrating manifests, Helm charts, Kustomize overlays, cluster policies, and…

LukasNiessen/kubernetes-skill · 89 tokens

requirements-elicitation

Turns vague intent into testable requirements.

andreaswasita/copilot-agents-dojo · 13 tokens