wiki-editing

Edit MediaWiki pages in your browser console using MediaWiki's API and JavaScript.

Updated Jun 13, 2026
One-click install
npx skills add https://github.com/DonZzzilla/kalshi-explorer --skill wiki-editing
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wiki-editing
Source: https://github.com/DonZzzilla/kalshi-explorer/tree/main/skills/user-skills/.archive/wiki-editing
Command: npx skills add https://github.com/DonZzzilla/kalshi-explorer --skill wiki-editing

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires browser, and includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill streamlines the process of editing MediaWiki wikis without the need for complex software installations or terminal access.

Core Features & Use Cases

  • Browser-based Editing: Perform wiki edits directly in the browser console.
  • API Integration: Utilize MediaWiki's API for advanced operations like reading, modifying, and creating pages.
  • Data Retrieval: Fetch and parse Discord content for reference.
  • Use Case: Quickly update a wiki page by retrieving information from a Discord channel and directly editing the page using the browser console.

Quick Start

Open the browser console, run the following script to fetch the latest messages from a Discord channel:

(function() {
  var token = 'YOUR_DISCORD_TOKEN';
  var channelId = 'CHANNEL_ID';
  return new Promise(function(resolve) {
    var xhr = new XMLHttpRequest();
    xhr.open('GET', 'https://discord.com/api/v9/channels/' + channelId + '/messages?limit=50', true);
    xhr.setRequestHeader('Authorization', 'Bearer ' + token);
    xhr.onload = function() {
      var msgs = JSON.parse(xhr.responseText);
      resolve(JSON.stringify(clean(msgs)));
    };
    xhr.onerror = function() { resolve('error'); };
    xhr.send();
  });
})();

Frequently Asked Questions about wiki-editing

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I edit MediaWiki pages directly from my browser without installing software?

You can edit MediaWiki pages directly from your browser by executing JavaScript in the browser console to interact with the MediaWiki API. This approach requires no software installation or terminal access, allowing you to read, modify, and create pages efficiently.

Can I fetch Discord channel messages and use them to update a wiki page?

Yes, you can fetch Discord channel messages and use them to update a wiki page by running a JavaScript script in your browser console. The script retrieves messages via the Discord API using your token, parses the content, and inputs it as a reference for MediaWiki editing.

Do I need terminal access or technical expertise to use the MediaWiki API for wiki editing?

No, you do not need terminal access or advanced technical expertise to use the MediaWiki API for wiki editing. The process is entirely browser-based, utilizing JavaScript within the browser console to perform reading, modifying, and creating pages.

What is the best way to automate reading and modifying pages on a MediaWiki site?

The best way to automate reading and modifying pages on a MediaWiki site is by using the MediaWiki API through JavaScript executed in the browser console. This method streamlines advanced operations without requiring complex software installations or terminal commands.

Are there limitations to browser-based wiki editing using the browser console?

Browser-based wiki editing using the browser console is limited to operations supported by the MediaWiki API and the browser environment. It requires a valid Discord token for fetching external content and depends on browser JavaScript execution capabilities for running the scripts.

How does the Discord API integration work when fetching content for wiki editing?

Discord API integration works by sending an XMLHttpRequest from your browser console to retrieve channel messages using your authorization token. The fetched JSON response is then parsed and cleaned, providing the reference content needed for your MediaWiki page modifications.