Coding
Personal Ai Agent
npx -y skills add br3eze-code/br3eze-code --skill codingAssembled 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
Skill: coding
Version: 1.0.0
Domain: development
Description
Code generation and execution for AgentOS automation tasks. Generates MikroTik scripts, Node.js snippets, shell commands, and RouterOS configuration blocks. Supports syntax validation before execution.
When to Use
Invoke when the user asks about:
- Generating a RouterOS script for a specific task
- Writing a Node.js helper or automation snippet
- Generating shell commands for the AgentOS host
- Validating code before running it
Tools
| Action | Description |
|---|---|
generate | Generate code from a natural language description |
validate | Check code for syntax errors and safety issues |
execute | Run a validated script (sandboxed) |
explain | Explain what a code snippet does |
refactor | Improve or clean up existing code |
Example: Generate RouterOS Script
{
"action": "generate",
"language": "routeros",
"description": "Block all traffic from IP 10.0.0.55 on the hotspot interface"
}
Supported Languages
routeros— MikroTik RouterOS scripting languagejavascript/nodejs— Node.jsbash— Shell scripts for Linuxpowershell— Windows PowerShell
Safety Rules
executeonly runs in a sandboxed environment- RouterOS scripts are validated against the shell-injection denylist before execution
- No
eval()or dynamic code loading in generated JavaScript