# Github Wiki Editing

> Edit GitHub Wiki pages programmatically via git clone, edit, and push

- Skill: `clowlove/github-wiki-editing` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add clowlove/github-wiki-editing`
- Raw SKILL.md: https://api.skillmd.com/api/skills/clowlove/github-wiki-editing/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: clowlove (https://skillmd.com/u/clowlove)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/clowlove/github-wiki-editing

---


# GitHub Wiki Editing

GitHub Wiki is a separate git repo at `https://github.com/OWNER/REPO.wiki.git`.

## Workflow

1. Clone wiki repo:
   ```bash
   cd /tmp && rm -rf REPO.wiki && git clone https://github.com/OWNER/REPO.wiki.git
   ```

2. Edit markdown files (Home.md is the main page)

3. Commit and push:
   ```bash
   cd /tmp/REPO.wiki
   git add File.md
   git commit -m "feat: description"
   git push origin master
   ```

## Key Points

- Wiki pages are separate from the main repo
- Use GitHub-flavored Markdown with HTML for rich formatting
- Internal wiki links: `[Page Name](Page-Name)` (spaces become hyphens)
- Supports badges, tables, images, code blocks
- Changes are immediate (no PR needed unless branch protection enabled)

## Design Elements for Professional Wikis

- Animated headers: `https://readme-typing-svg.demolab.com?...`
- Status badges: `https://img.shields.io/...`
- Visitor badges: `https://api.visitorbadge.io/...`
- Tech icons: `https://cdn.jsdelivr.net/gh/devicons/devicon/icons/...`
- ASCII art diagrams for architecture
- Tables with emoji for visual appeal

## Verification

After push, check `https://github.com/OWNER/REPO/wiki` to verify changes.

