Ai Intelligent Chatbot Builder

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

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 unreviewed external dependencies could affect the local environment if the remote repository or packages are unsafe.

Why it was flagged

The skill directs users to fetch code and dependencies from an external repository that is not included in the reviewed artifact set. This is a normal setup pattern for a Python app, but users should verify the repository and dependencies before installing.

Skill content
git clone https://github.com/openclaw-skills/ai-intelligent-chatbot-builder
cd ai-intelligent-chatbot-builder
pip install -r requirements.txt
Recommendation

Review the referenced repository, requirements file, and package sources before running the install commands; prefer pinned versions and a virtual environment.

What this means

Running the external application will execute local Python code from the cloned repository.

Why it was flagged

The documentation asks the user to run an application file after cloning the external repository. This is user-directed and consistent with launching a chatbot builder, but the executable code was not present in the reviewed artifacts.

Skill content
python app.py
Recommendation

Only run the app after inspecting the code or obtaining it from a trusted source, ideally inside an isolated virtual environment.