Company Brain Core OS

PassAudited by VirusTotal on May 9, 2026.

Overview

Type: OpenClaw Skill Name: company-brain-os Version: 1.1.2 The bundle provides a local knowledge base system, but its installation process involves high-risk behaviors. The `install.sh` script uses a `curl | bash` pattern to install the Bun runtime and performs a `git clone` from a remote GitHub repository followed by `pip install`. While these actions are aligned with the stated purpose of setting up the environment, they represent significant attack surfaces for supply chain compromise and remote code execution without clear verification of the downloaded artifacts.

Findings (0)

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

Installing the skill may execute code that was not reviewed in these artifacts, so the real installed behavior could differ from the package under evaluation.

Why it was flagged

The installer depends on remote code and dependency files that are not included in the reviewed package, with no pinned commit, checksum, or lockfile shown.

Skill content
curl -fsSL https://bun.sh/install | bash ... git clone --depth 1 https://github.com/CertainLogicAI/company-brain-os.git "$INSTALL_DIR" ... pip3 install -q -r "$INSTALL_DIR/requirements.txt"
Recommendation

Only install if you trust the author and upstream sources; prefer a packaged, pinned release with checksums and reviewed dependency lockfiles.

What this means

A compromised or changed remote installer could run arbitrary commands on the user's machine during installation.

Why it was flagged

If Bun is missing, the installer pipes a downloaded shell script directly into bash during setup.

Skill content
if ! command -v bun &> /dev/null; then ... curl -fsSL https://bun.sh/install | bash
Recommendation

Avoid curl-to-bash installers; download, inspect, verify, and pin installer versions before execution, ideally inside a sandbox.

What this means

Incorrect or sensitive facts added to the local brain may persist and influence future agent answers.

Why it was flagged

The skill is designed to store and reuse facts/corrections as persistent agent knowledge.

Skill content
**Self-improving** | Add facts via markdown files, brain auto-learns ... `proactive` → WAL writes to brain for persistence
Recommendation

Review what is added to the knowledge base, avoid storing secrets or sensitive personal data, and keep a clear way to edit or delete persisted facts.

What this means

Users or agents may over-trust answers from the knowledge base without independently checking important facts.

Why it was flagged

The artifacts make absolute reliability claims that are not substantiated by the bundled files.

Skill content
100% verifiable ... No hallucinations ... Zero hallucinations. Every answer backed by stored knowledge.
Recommendation

Treat the knowledge base as a helpful local source, not a guarantee of correctness; validate important outputs.