estrutura-de-projeto

estrutura-de-projeto is a skill for Claude Code from KevinInoCol/coppeliasim-mcp. It costs 91 tokens per session (1,402 once invoked), scanned A, original, MIT.

A guide to organizing CoppeliaSim robotics projects so they can be rebuilt, checked, and corrected. CoppeliaSim is software for simulating robots and their surroundings.

In plain words
What is it for?
Use it when creating a scene, robot, or control program, or when adding new scripts to an existing CoppeliaSim project.
Why use it?
It separates reusable Python scripts that build things from MCP tools that inspect them, so work is not lost in a series of manual commands.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the coppeliasim plugin — 9 skills, 1 MCP server shipped together

Good fit Use it when creating a scene, robot, or control program, or when adding new scripts to an existing CoppeliaSim project.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kevininocol/coppeliasim-mcp/estrutura-de-projeto
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 KevinInoCol/coppeliasim-mcp --skill estrutura-de-projeto
Clone the repo
git clone --depth 1 https://github.com/KevinInoCol/coppeliasim-mcp

Made for: Claude Code.

Or install coppeliasim, the plugin that ships this one along with the rest of its 9 skills, 1 MCP server.

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 estrutura-de-projeto

README.md
[![agentmods](https://agentmods.dev/badge/skills/kevininocol/coppeliasim-mcp/estrutura-de-projeto/github.svg)](https://agentmods.dev/skills/kevininocol/coppeliasim-mcp/estrutura-de-projeto)
Your own site
<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.

agentmods 80×15 button for estrutura-de-projeto

Your own site · 80×15
<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>
Per session 91 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,402 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.
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.00091 $0.01402
Opus 5 $0.00046 $0.00701
Sonnet 5 $0.00018 $0.00280
Haiku 4.5 $0.00009 $0.00140

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

Security

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.

skills/estrutura-de-projeto/SKILL.md · 138 lines

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()

Read the full file on GitHub · 138 lines

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. 11d ago First seen · 138 lines · 91 tokens per session scan A 8c734bfc6402

Subscribe to this mod's changes

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.

Related

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.

bulaofen0036-coder/TIA_Portal_Openness_MCP · 103 tokens

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).

serac-labs/serac · 43 tokens

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.

w1ne/kernelCAD-web · 50 tokens

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.

w1ne/kernelCAD-web · 65 tokens

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.

w1ne/kernelCAD-web · 48 tokens

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.

w1ne/kernelCAD-web · 51 tokens