agentsclimarketplace

Mikrotik

Skill br3eze-code/br3eze-code/src/skills/mikrotik

Personal Ai Agent

Install
npx -y skills add br3eze-code/br3eze-code --skill mikrotik

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.4 KB, as published. Nobody here has run it

MikroTik Skill

Manage MikroTik RouterOS devices through the AgentOS OpenClaw gateway.

Overview

This skill provides comprehensive MikroTik router management capabilities including hotspot user management, system monitoring, and network diagnostics.

Tools

User Management

  • mikrotik.user.kick - Disconnect a hotspot user
  • mikrotik.user.add - Create new hotspot user
  • mikrotik.users.active - List active sessions

System Operations

  • mikrotik.system.stats - CPU, memory, uptime
  • mikrotik.system.reboot - Restart router (requires confirmation)

Network Tools

  • mikrotik.network.ping - ICMP ping test
  • mikrotik.network.traceroute - Route tracing
  • mikrotik.firewall.list - View firewall rules

Configuration

Set in your .env file:

ROUTER_HOST=192.168.88.1
ROUTER_PORT=8728
ROUTER_USERNAME=admin
ROUTER_PASSWORD=yourpassword

Or configure per-request via the config parameter.

Safety

The following operations require explicit confirmation:

  • System reboot
  • User disconnection (kick)
  • Firewall modifications

Examples

// Kick a user
await runtime.executeTool('mikrotik.user.kick', { user: 'john' });

// Add a user
await runtime.executeTool('mikrotik.user.add', {
  username: 'guest',
  password: 'temp123',
  profile: '1Day'
});

// Get stats
const stats = await runtime.executeTool('mikrotik.system.stats', {});

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.