quantum-sim
Analysis
This appears to be a coherent local quantum circuit simulator with no artifact-backed credential, network, or persistence behavior, but it runs a bundled Python script and large qubit counts may strain system resources.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
python3 {baseDir}/scripts/quantum_sim.py --preset bellThe skill is intended to work by running a bundled Python simulator. This local code execution is clearly disclosed and directly aligned with the quantum-simulation purpose.
for i in range(n-1, -1, -1):
if i == qubit:
op = np.kron(op, np.array(gate_mat, dtype=complex))
...
self.state = op @ self.stateThe visible single-qubit gate implementation builds a full operator matrix before applying it. For high qubit counts, this can use far more CPU and memory than users may expect from a simple statevector simulator.
