技能详情(站内镜像,无评论)
作者:Krishna Aditya @AadiPapp
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 443 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:aadipapp/optical-quantum-skill
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's files and runtime instructions align with its stated purpose (an optical/photonic quantum-kernel simulator); it does not request credentials, external network access, or elevated persistence and its behavior is limited and local.
目的
The name/description (optical quantum kernel simulator) match the included Python implementation. Minor inconsistency: the package includes a Python script that imports numpy but the skill metadata does not declare dependencies or an install step. That is an operational omission (you need numpy available to run the script) but not a functional or security mismatch with the stated purpose.
说明范围
SKILL.md describes a single simulation command and embeds the full source. The runtime behavior shown in the code is limited to local numeric computation, randomness, printing output, and argument parsing. The instructions do not direct the agent to read unrelated system files, access environment variables, or transmit data to external endpoints.
安装机制
There is no install spec (instruction-only), which minimizes installation risk. Note that the included script requires Python + numpy; because no dependency/install step is declared, users must ensure the runtime environment has these available. No downloads or archive extraction are present.
证书
The skill requests no environment variables, no credentials, and no config paths. The code does not attempt to read secrets or external configuration. Required permissions are minimal and proportionate to a local simulation task.
持久
The skill is not marked always:true and does not request persistent/privileged presence or modify other skills or system-wide settings. It runs as an on-demand local script.
综合结论
This skill appears to do what it says: a local optical-quantum kernel simulation implemented in Python. Before running, (1) inspect the included script (already small and readable) and confirm you are comfortable executing it; (2) ensure the runtime has Python and numpy installed; (3) run it in an isolated environment (container or VM) if you treat unreviewed code as sensitive; and (4) note there are no network calls or credential requests in …
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Tenqua OpticalQuantumSkill」。简介:Simulates a quantum kernel using optical fiber storage and linear optics.。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aadipapp/optical-quantum-skill/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: optical-quantum-kernel
description: Simulates a quantum kernel using optical fiber storage and linear optics.
author: tempguest
version: 0.1.0
license: MIT
---
# Optical Quantum Kernel Skill
This skill simulates a photonic quantum computer that uses optical fibers for storage and linear optics for computation.
It calculates the quantum kernel (similarity) between two data vectors by encoding them into optical phases, passing them through simulated fibers (with loss), and interfering them.
## Security Features
- **Resource Bounding**: Capped at 8 modes to prevent resource exhaustion.
- **Input Validation**: Strict checks on input vector dimensions and limits.
- **Physics-Based Constraints**: Includes attenuation and phase noise for realism.
## Commands
- `simulate`: Run the quantum kernel simulation on two input vectors.