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 estrutura-de-projetogit 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/estrutura-de-projeto)<a href="https://agentmods.dev/skills/kevininocol/coppeliasim-mcp/estrutura-de-projeto"><img src="https://agentmods.dev/badge/skills/kevininocol/coppeliasim-mcp/estrutura-de-projeto/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/estrutura-de-projeto"><img src="https://agentmods.dev/badge/skills/kevininocol/coppeliasim-mcp/estrutura-de-projeto.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.00091 | $0.01402 |
| Opus 5 | $0.00046 | $0.00701 |
| Sonnet 5 | $0.00018 | $0.00280 |
| Haiku 4.5 | $0.00009 | $0.00140 |
Grade A, and why
estrutura-de-projeto 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 — 138 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Estrutura de um projeto de CoppeliaSim
Um projeto de CoppeliaSim que dá para entregar, repetir e corrigir tem uma forma concreta. Esta skill descreve ela. Nada disso é estilo: cada peça resolve um problema que aparece sempre.
Antes de escrever código: o que vai onde
Tudo que precisa ser reprodutível se escreve em Python contra
coppeliasim_zmqremoteapi_client. Isso inclui construir a cena, montar o robô e
qualquer laço de controle.
As tools do MCP são para olhar e conferir, não para construir: listar objetos, ler uma posição, disparar um sensor, ver se a simulação está rodando. Um laço de controle não cabe nelas, e quarenta paredes são quarenta chamadas que não deixam arquivo nenhum atrás.
Regra prática: se o resultado precisa sobreviver ao fechar o CoppeliaSim, vai num script. Se é uma pergunta ("onde foi parar a parede?"), vai numa tool.
Um script por artefato
Não coloque a cena, o robô e o controle no mesmo arquivo. Eles mudam em ritmos diferentes: a cena se constrói uma vez, o robô se ajusta vinte vezes, e o controle roda o tempo todo.
cena.py o mundo: chão, paredes, obstáculos
robo.py o robô dentro dela: chassi, juntas, sensores
controle.py o que o robô faz: teleoperação, navegação, a tarefa
Cada um roda sozinho e deixa a cena num estado conhecido.
A ordem das funções
Os scripts seguem sempre a mesma sequência. Respeitar isso faz com que qualquer pessoa — inclusive você daqui a um mês — saiba onde olhar.
def conectar():
return RemoteAPIClient(host=COPPELIA_HOST, port=COPPELIA_PORTA).require("sim")
def limpar(sim):
"""Apaga o que a rodada anterior deixou."""
def criar_peca(sim, ...):
"""Uma função por tipo de peça. Devolve o handle."""
def construir(sim):
"""Chama as criar_* em ordem e devolve o que foi construído."""
def verificar(...):
"""MEDE o resultado. Não supõe que deu certo."""
def main():
sim = conectar()
coisa = construir(sim)
ok = verificar(coisa)
if "--sem-salvar" not in sys.argv:
sim.saveScene(CAMINHO_CENA)
print("\nVeredito:", "pronto" 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 · 138 lines · 91 tokens per session scan A 8c734bfc6402
estrutura-de-projeto is a skill published in the GitHub repository KevinInoCol/coppeliasim-mcp (0 stars, last pushed 16d ago), licensed MIT. It adds 91 tokens to every session and 1,402 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
tiaportal-mcp
A skill for controlling Siemens TIA Portal, the engineering software used to configure Siemens PLCs and HMIs. It works through an MCP server, a tool connection that lets an agent inspect and change projects.
asset-management
Manage ServiceNow hardware assets, software licenses, and lifecycle states on almhardware/almlicense — license allocation, CMDB-to-asset linking, warranty tracking, inventory aggregation (HAM/SAM).
kernelcad-assemblies
Multi-part assemblies — assembly(), parts, connectors, 7 mate types, fixed and revolute joints, .model()/.solvedModel(). Use for any model with two or more mechanical parts that need joint metadata.
kernelcad-kinematic
Use when verifying whether a moving assembly is buildable — sampled-pose collision sweeps across joint ranges, IK reachability for end-effector targets, mounting-hole fastener consistency, and static-load capacity on cantilever-shaped parts. Loads alongside kernelcad-authoring to gate design-time mechanism feasibility.
kernelcad-parts
Bundled parts catalog — discover, fetch, and mate standard fasteners, bearings, motors, headers, and connectors. Use whenever the model needs an off-the-shelf component instead of hand-modeled placeholder geometry.
use-the-available-kernel
Hard rules for which kernelCAD primitive to reach for when authoring from a reference photo. The from-reference loop fails most often because the author defaults to easy primitives and skips ones that exist. Read before writing any geometry.