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 skills add KevinInoCol/coppeliasim-mcp --skill estructura-de-proyectogit clone --depth 1 https://github.com/KevinInoCol/coppeliasim-mcpWrote 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/kevininocol/coppeliasim-mcp/estructura-de-proyecto)<a href="https://agentmods.dev/skills/kevininocol/coppeliasim-mcp/estructura-de-proyecto"><img src="https://agentmods.dev/badge/skills/kevininocol/coppeliasim-mcp/estructura-de-proyecto/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.
<a href="https://agentmods.dev/skills/kevininocol/coppeliasim-mcp/estructura-de-proyecto"><img src="https://agentmods.dev/badge/skills/kevininocol/coppeliasim-mcp/estructura-de-proyecto.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00092 | $0.01401 |
| Opus 5 | $0.00046 | $0.00700 |
| Sonnet 5 | $0.00018 | $0.00280 |
| Haiku 4.5 | $0.00009 | $0.00140 |
Grade A, and why
estructura-de-proyecto 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 11d 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.
How it starts
The opening of the file, as written. The whole thing — 137 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Estructura de un proyecto de CoppeliaSim
Un proyecto de CoppeliaSim que se pueda entregar, repetir y corregir tiene una forma concreta. Esta skill la describe. No es estilo: cada pieza resuelve un problema que aparece siempre.
Antes de escribir código: qué va dónde
Todo lo que deba ser reproducible se escribe en Python contra
coppeliasim_zmqremoteapi_client. Eso incluye construir la escena, montar el
robot y cualquier bucle de control.
Las tools del MCP son para mirar y comprobar, no para construir: listar objetos, leer una posición, disparar un sensor, ver si la simulación corre. Un bucle de control no cabe en ellas, y cuarenta paredes son cuarenta llamadas que no dejan ningún archivo detrás.
Regla práctica: si el resultado tiene que sobrevivir a cerrar CoppeliaSim, va en un script. Si es una pregunta ("¿dónde quedó la pared?"), va en una tool.
Un script por artefacto
No metas la escena, el robot y el control en el mismo archivo. Se separan porque tienen ritmos distintos: la escena se construye una vez, el robot se retoca veinte veces, y el control se ejecuta constantemente.
escena.py el mundo: suelo, paredes, obstáculos
robot.py el robot dentro de esa escena: chasis, juntas, sensores
control.py lo que hace el robot: teleoperación, navegación, la tarea
Cada uno se ejecuta solo y deja la escena en un estado conocido.
El orden de las funciones
Los scripts siguen siempre la misma secuencia. Respetarla hace que cualquiera —incluido tú dentro de un mes— sepa dónde mirar.
def conectar():
return RemoteAPIClient(host=COPPELIA_HOST, port=COPPELIA_PUERTO).require("sim")
def limpiar(sim):
"""Borra lo que dejó la corrida anterior."""
def crear_pieza(sim, ...):
"""Una función por tipo de pieza. Devuelve el handle."""
def construir(sim):
"""Llama a las crear_* en orden y devuelve lo construido."""
def verificar(...):
"""MIDE el resultado. No supone que salió bien."""
def main():
sim = conectar()
cosa = construir(sim)
ok = verificar(cosa)
if "--sin-guardar" not in sys.argv:
sim.saveScene(RUTA_ESCENA)
print("\nVeredicto:", "listo" if ok else "revisar")
if __name__ == "__main__":
main()
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.
- 11d ago First seen · 137 lines · 92 tokens per session scan A 92acd79efc8a
estructura-de-proyecto is a skill published in the GitHub repository KevinInoCol/coppeliasim-mcp (0 stars, last pushed 16d ago), licensed MIT. It adds 92 tokens to every session and 1,401 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-31.
Other skills, from other repositories
kernelcad-sdformat
Export multi-part assemblies to SDFormat — closed kinematic loops, native ball joints, solved per-link poses, per-link inertial/visual/collision with mesh files. Use when the downstream simulator ingests SDFormat directly or the assembly needs closed-loop / native-spherical-joint support.
okx-cex-portfolio
This skill should be used when the user asks about 'account balance', 'how much USDT do I have', 'my funding account', 'show my positions', 'open positions', 'position P&L', 'unrealized PnL', 'closed positions', 'position history', 'realized PnL', 'account bills', 'transaction history', 'trading fees', 'fee tier'…
isuzu-unity-cli
Control Unity Editor from the CLI with the isuzu-unity-cli command. Execute C# code, browse scene hierarchy, inspect/modify GameObjects, capture screenshots, read console logs, check compile status, control play mode, and execute menu items. Use when: user wants to interact with Unity Editor programmatically, run C#…
hz-unity-meta-movement-sdk-retargeting
Set up and tweak Meta Movement SDK (MSDK) retargeting for a character model. Use this whenever the user wants to retarget a humanoid FBX/prefab for Meta Quest body tracking, generate a retargeting config, or hand-edit the resulting .json (fix known-joint mappings, exclude joints from auto-mapping, rename target…
hz-unity-face-tracking
Drive ARKit-blendshape-rigged head/face models in Unity with the wearer's facial expressions on Meta Quest via Meta Movement SDK (face tracking + A2E). Use when a user has an FBX with the 52 ARKit blendshapes (any prefix, L/R suffixes) and wants it to animate from face tracking on Quest Pro / Quest 3 / Quest 3S.
metavr-cli
Provides the complete metavr (Meta VR CLI) reference for Meta Quest and Horizon OS development — installation, device setup, command discovery, MCP server mode, documentation search, app deployment, device testing setup, audio control, screenshots, and performance analysis. Use when the user needs to install metavr…