OCAX Passport

PassAudited by ClawScan on May 1, 2026.

Overview

The skill appears to match its stated purpose, but users should know it reads and displays local hardware details and includes an optional periodic update feature.

This skill looks purpose-aligned for generating a hardware-based node passport. Before installing or invoking it, be comfortable with it reading and displaying local device details such as CPU, memory, GPU, storage, OS, and node/owner names. Review the generated output before sharing it, and only enable auto-update if you want periodic local refreshes.

Findings (3)

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

Hardware and node identity details may be reused in later skill responses during the same running session.

Why it was flagged

The skill keeps a generated passport object in process memory for reuse, which can include node name, owner name, and local hardware profile data.

Skill content
# 全局 passport 实例
_passport = None
...
if _passport is None:
    _passport = generate_passport(node_name, owner)
return _passport
Recommendation

Use non-sensitive node and owner names, and review the passport output before sharing it outside the local conversation.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

If enabled, the skill may continue periodically refreshing local node information while the process is running.

Why it was flagged

The documentation includes an optional periodic auto-update call, indicating the skill can refresh node data on a schedule when enabled.

Skill content
# 启用自动更新
passport.enable_auto_update(86400)  # 24小时
Recommendation

Enable auto-update only when periodic refresh is desired, and stop or restart the process if you no longer want it active.

What this means

A future install could pull a different psutil release than the one originally tested by the skill author.

Why it was flagged

The dependency is declared with a lower-bound version rather than a pinned exact version, so future installs may resolve to newer package versions.

Skill content
psutil>=5.9.0
Recommendation

Install from trusted package indexes and consider pinning dependency versions in controlled environments.