Tenqua OpticalQuantumSkill

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears to run a small local quantum-kernel simulation with no evidence of hidden data access, network calls, persistence, or destructive actions.

This looks safe to review as a local numerical demo. Before using it, be aware that it runs Python code and expects NumPy even though no dependency is declared; avoid passing extremely large vectors if you are concerned about local resource use.

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.

What this means

The skill can execute its local Python simulation script when the user asks to run it.

Why it was flagged

The documented usage runs included local Python code. This is central to the simulator's purpose and the script content is simple, but users should still notice that installing or using the skill involves local code execution.

Skill content
python3 scripts/optical_kernel.py "0.5,1.2" "0.5,1.2"
Recommendation

Run it only from the reviewed package contents, preferably in a normal isolated Python environment.

What this means

The skill may fail unless NumPy is already installed, or the user may need to install a package that is not pinned by the skill.

Why it was flagged

The script depends on NumPy, but the registry requirements and install specifications declare no dependencies or install mechanism. This is a setup/provenance gap rather than evidence of malicious behavior.

Skill content
import numpy as np
Recommendation

Use a trusted Python environment and prefer a declared, pinned dependency if packaging this skill for others.