Agentscope Skill

PassAudited by VirusTotal on May 10, 2026.

Overview

Type: OpenClaw Skill Name: agentscope-skill Version: 1.0.0 The skill bundle provides a comprehensive integration of the AgentScope multi-agent framework, including its full source code, extensive documentation, and practical examples. The SKILL.md file acts as a legitimate instructional guide for an AI agent, detailing how to navigate the repository, use built-in tools like `execute_shell_command`, and implement complex patterns such as RAG and task decomposition. While the bundle includes scripts with powerful capabilities (e.g., `build.sh` using `rm -rf` and `find -delete`), these are standard for documentation build processes and aligned with the framework's stated purpose. No evidence of data exfiltration, intentional prompt injection, or malicious persistence was found.

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

The agent may modify local files and contact remote sources even for simple AgentScope questions.

Why it was flagged

This directs the agent to perform network and filesystem operations before the user's actual task, without a clear per-use approval boundary.

Skill content
**CRITICAL**: Before doing anything else, clone or update the AgentScope repository. ... # Clone into this skill directory so that you can refer to it across different sessions
Recommendation

Do not clone or update automatically. Ask the user first, use a user-approved project or temporary directory, and avoid modifying the installed skill directory.

What this means

Future repository changes could change the material the agent relies on, and potentially the code a user is encouraged to run.

Why it was flagged

The skill asks for an external repository update, but the visible instruction does not show a pinned commit, verified source, or install specification.

Skill content
clone or update the AgentScope repository
Recommendation

Pin repository references to a reviewed commit or release, document the source clearly, and avoid automatic updates.

What this means

Downloaded or updated content can remain available to later sessions and may affect later answers.

Why it was flagged

This explicitly creates persistent local state in the skill directory across sessions, with no visible cleanup or retention controls.

Skill content
Clone into this skill directory so that you can refer to it across different sessions
Recommendation

Store reference material outside the skill install path, make persistence optional, and document how to remove it.

What this means

If a user runs the example, the created agent may execute local code or shell commands.

Why it was flagged

The sample shows how to give an AgentScope ReAct agent Python and shell execution tools. This is purpose-aligned framework documentation, but powerful if copied and run.

Skill content
toolkit.register_tool_function(execute_python_code) ... toolkit.register_tool_function(execute_shell_command)
Recommendation

Run such examples only in a sandbox or test environment and do not expose shell/code tools to untrusted prompts.

What this means

Users who run examples may need to provide provider API credentials.

Why it was flagged

The examples use model-provider API keys from environment variables, which is expected for AgentScope model integrations and not shown leaking elsewhere.

Skill content
api_key=os.getenv("DASHSCOPE_API_KEY")
Recommendation

Use least-privilege API keys, keep them in environment variables or a secrets manager, and avoid sharing logs that include credentials.