Ai Intelligent Chatbot Builder

PassAudited by ClawScan on May 1, 2026.

Overview

This is a sparse, instruction-only chatbot-builder listing; the only noteworthy issue is that it tells users to clone, install, and run external code that was not included for review.

Before installing, confirm that the GitHub repository is the one you intend to trust, inspect its requirements and app.py file, and run it in a virtual environment. The provided skill artifact itself does not show malicious behavior, but it also does not include the actual implementation.

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

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.