Cam

v2.0.1

Use when calculating CNC speeds and feeds, selecting cutting tools, referencing G-code commands, looking up material cutting data, or computing machining par...

0· 164·1 current·1 all-time
bybytesagain4@xueyetianya
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description match the included behavior: the script provides speeds & feeds, toolpath guidance, G-/M-code references, material data, and simple machining calculations. One minor mismatch: the registry metadata declares no required binaries, but the script invokes bash and python3 (so a runtime with python3 is necessary). This is an implementation detail rather than malicious.
Instruction Scope
SKILL.md instructs the agent to run the bundled scripts/script.sh with specific subcommands and arguments. The script's behavior is limited to printing references and performing local arithmetic via embedded Python; it does not read arbitrary user files, access secrets, or transmit data to external endpoints.
Install Mechanism
There is no install spec and no downloads — the skill is instruction-only with a bundled script. No remote install URLs, archives, or third-party package pulls are present in the repository files provided.
Credentials
The skill declares no required environment variables or credentials and does not attempt to access secrets. It uses temporary environment variables as a mechanism for passing parameters into inline Python, which is proportional to its calculation tasks.
Persistence & Privilege
The skill is not set to always:true, does not request persistent system privileges, and does not modify other skills or system configuration according to the provided files.
Assessment
This skill appears to be what it claims: a local CNC/CAM reference and calculator implemented as a bash script that calls python3. Before installing or running it: 1) ensure your runtime supports bash and python3 (the metadata omitted python3 as a required binary); 2) review the bundled scripts (you already have them) if you want to verify there are no additional commands added; 3) note the script prints a website link but does not perform network calls or request credentials. If you don't trust the author or want stricter isolation, run the script in a restricted environment (container or VM) before giving it broader access.

Like a lobster shell, security has layers — review code before you run it.

latestvk97077vrzrmbtspqbn79bpdht983mj2w
164downloads
0stars
2versions
Updated 3w ago
v2.0.1
MIT-0

CAM — Computer-Aided Manufacturing Toolpath Reference

CNC machining reference — speeds & feeds calculator, toolpath strategies, G-code command reference, material cutting data, and machining parameter computation.

Commands

speeds-feeds

Calculate spindle speed (RPM) and feed rate.

bash scripts/script.sh speeds-feeds 10 80 0.05 3

toolpath

Toolpath strategy reference (adaptive, pocket, contour, etc.).

bash scripts/script.sh toolpath
bash scripts/script.sh toolpath adaptive

gcode

G-code and M-code command reference.

bash scripts/script.sh gcode
bash scripts/script.sh gcode G02

materials

Material cutting data — recommended SFM, chipload, depth of cut.

bash scripts/script.sh materials
bash scripts/script.sh materials aluminum

calculate

General machining calculations (MRR, power, time).

bash scripts/script.sh calculate mrr 10 2 0.5 800
bash scripts/script.sh calculate power 50 1500

help

Show all commands.

bash scripts/script.sh help

Output

  • Calculated RPM, feed rates, and machining parameters
  • G-code reference with syntax and examples
  • Material-specific cutting recommendations

Feedback

https://bytesagain.com/feedback/ Powered by BytesAgain | bytesagain.com

Comments

Loading comments...