# Send Mediawiki Wikitext to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mediawiki-wikitext",
    "name": "Mediawiki Wikitext",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/kongyo2/mediawiki-wikitext",
    "canonicalUrl": "https://clawhub.ai/kongyo2/mediawiki-wikitext",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mediawiki-wikitext",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mediawiki-wikitext",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "assets/snippets.yaml",
      "references/syntax.md",
      "references/templates.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/mediawiki-wikitext"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mediawiki-wikitext",
    "downloadUrl": "https://openagent3.xyz/downloads/mediawiki-wikitext",
    "agentUrl": "https://openagent3.xyz/skills/mediawiki-wikitext/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mediawiki-wikitext/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mediawiki-wikitext/agent.md"
  }
}
```
## Documentation

### MediaWiki Wikitext

Generate and edit content using MediaWiki's wikitext markup language.

### Text Formatting

''italic''  '''bold'''  '''''bold italic'''''
<code>inline code</code>  <sub>subscript</sub>  <sup>superscript</sup>
<s>strikethrough</s>  <u>underline</u>

### Headings (line start only, avoid level 1)

== Level 2 ==
=== Level 3 ===
==== Level 4 ====

### Lists

* Bullet item        # Numbered item       ; Term
** Nested            ## Nested             : Definition

### Links

[[Page Name]]                      Internal link
[[Page Name|Display Text]]         With display text
[[Page Name#Section]]              Section link
[https://url Display Text]         External link
[[File:image.jpg|thumb|Caption]]   Image
[[Category:Name]]                  Category (place at end)

### Table

{| class="wikitable"
|+ Caption
|-
! Header 1 !! Header 2
|-
| Cell 1 || Cell 2
|}

### Templates & Variables

{{TemplateName}}                   Basic call
{{TemplateName|arg1|name=value}}   With arguments
{{{parameter|default}}}            Parameter (in template)
{{PAGENAME}}  {{CURRENTYEAR}}      Magic words

### References

Text<ref>Citation here</ref>
<ref name="id">Citation</ref>      Named reference
<ref name="id" />                  Reuse reference
{{Reflist}}                        Display footnotes

### Special Tags

<nowiki>[[escaped]]</nowiki>       Disable markup
<pre>preformatted block</pre>      Preformatted (no markup)
<syntaxhighlight lang="python">    Code highlighting
code here
</syntaxhighlight>
<math>x^2 + y^2 = z^2</math>       LaTeX math
<!-- comment -->                   Comment (hidden)
----                               Horizontal rule
#REDIRECT [[Target Page]]          Redirect (first line only)

### Magic Words

__NOTOC__           Hide table of contents
__TOC__             Position TOC here
__NOEDITSECTION__   Hide section edit links

### Article Structure

{{Infobox Type
| name = Example
| image = Example.jpg
}}

'''Article Title''' is a brief introduction.

== Section ==
Content with citation<ref>Source</ref>.

=== Subsection ===
More content.

== See also ==
* [[Related Article]]

== References ==
{{Reflist}}

== External links ==
* [https://example.com Official site]

{{DEFAULTSORT:Sort Key}}
[[Category:Category Name]]

### Template Definition

<noinclude>{{Documentation}}</noinclude><includeonly>
{| class="wikitable"
! {{{title|Default Title}}}
|-
| {{{content|No content provided}}}
{{#if:{{{footer|}}}|
{{!}}-
{{!}} {{{footer}}}
}}
|}
</includeonly>

### Key Syntax Rules

Headings: Use == to ======; don't use = (reserved for page title)
Line-start markup: Lists (*#;:), headings, tables ({|) must start at line beginning
Closing tags: Close heading equals on same line; no text after closing ==
Blank lines: Create paragraph breaks; single newlines are ignored
Pipes in templates: Use {{!}} for literal | inside templates
Escaping: Use <nowiki> to escape markup; &amp; for &, &lt; for <

### Resources

For detailed syntax, see:

references/syntax.md: Complete markup reference with all options
references/templates.md: Template and parser function details
assets/snippets.yaml: Editor snippets for common patterns
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: kongyo2
- Version: 0.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mediawiki-wikitext)
- [Send to Agent page](https://openagent3.xyz/skills/mediawiki-wikitext/agent)
- [JSON manifest](https://openagent3.xyz/skills/mediawiki-wikitext/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mediawiki-wikitext/agent.md)
- [Download page](https://openagent3.xyz/downloads/mediawiki-wikitext)