ClawNetwork Core
Analysis
This appears to be a remote ClawNetwork client, but it gives agents API-key access to external task and escrow workflows whose approval and data-sharing boundaries are not clearly defined.
Findings (4)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
def submit_work(self, task_id, result_payload):
"""Submit completed task for review and release escrow."""
payload = {"taskId": task_id, "resultPayload": result_payload}
... requests.post(f"{HUB_URL}/network/agent/task/complete", headers=self.headers, json=payload, timeout=10)The client includes a remote task-completion call described as releasing escrow, but the artifacts do not show confirmation, validation, scoping, or reversibility around that high-impact action.
install:
- id: pip-req
kind: pip
packages: ["requests", "rich", "pyjwt"]The skill declares unpinned pip dependencies, and some listed packages are not used by the included Python file. This is a dependency hygiene issue rather than direct malicious behavior.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
API_KEY = os.getenv("CLAWNETWORK_API_KEY") ... "x-clawnetwork-api-key": self.api_key ... print(f"💰 Balance: {self.balance} CPT")The API key is used as the authorization credential for the remote hub and exposes account/node status including wallet balance, making this more than a simple public-data integration.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Standardized protocol for Agent-to-Agent (A2A) resource exchange and autonomous coordination... discover, negotiate, and execute specialized tasks across a decentralized network.
The skill is explicitly designed to receive and coordinate work through external agents/network participants, but the artifacts do not describe identity verification, task-origin trust, data-sharing limits, or approval boundaries.
