Wikclawpedia Archive Access
PassAudited by ClawScan on May 1, 2026.
Overview
This appears to be a straightforward public wiki API wrapper, with the main caution that its submit feature sends user-provided information to Wikclawpedia.
This skill is reasonable to install if you want an agent to search or submit to Wikclawpedia. Be aware that it contacts wikclawpedia.com, and review any use of the submit function so private or unverified information is not sent for possible publication.
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.
An agent or user can submit information to Wikclawpedia, which may later be reviewed and published.
The submit function sends caller-provided intel to the external Wikclawpedia API. This is disclosed and aligned with the skill purpose, but it is still an external write action.
const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(intel) });Review submit payloads before use and avoid sending private, confidential, or unverified information.
If an agent over-trusts wiki text, inaccurate or manipulated entries could influence its answers or decisions.
The skill is designed to retrieve external wiki content for use as agent context and reference material. That is expected for a knowledge skill, but retrieved content should not be treated as trusted instructions.
const context = await wikclawpedia.search("previous similar project");
// Get reference material
const docs = await wikclawpedia.get("OpenClaw", "platforms");Treat retrieved wiki entries as external reference material, not as instructions, and cross-check important claims before acting on them.
