Use when documenting architecture, onboarding guides, tech stack summaries, integration guides, or runbooks — writes to GitHub Wiki
From nightshiftnpx claudepluginhub klefix/nightshift --plugin nightshiftThis skill uses the workspace's default tool permissions.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Create and update GitHub Wiki pages for documentation that doesn't belong in code comments or ADRs. Write for someone onboarding or a PM who needs to understand the system.
Belongs in wiki:
Does NOT belong in wiki:
docs/adr/)# Wiki is a separate git repo
gh repo clone <OWNER>/<REPO>.wiki.git /tmp/<REPO>-wiki
# If wiki doesn't exist yet, this will fail — create first page via:
# gh api repos/<OWNER>/<REPO>/pages (or create via GitHub UI)
ls /tmp/<REPO>-wiki/
cat /tmp/<REPO>-wiki/Home.md 2>/dev/null
Decide: update existing page or create new one.
Home.md# <Page Title>
> <One-sentence summary of what this page covers>
## Overview
<High-level context — what is this, why does it exist>
## <Topic sections>
<Content — use diagrams, tables, code blocks where they aid understanding>
<Be concrete: name the technologies, reference the file paths, show the commands>
## Related
- [ADR: <decision>](../docs/adr/NNNN-*.md)
- [Wiki: <other page>](<Other-Page>)
- Issue #NNN, PR #NNN
Home.md (index page):
# <Project Name> Wiki
## Contents
- [Architecture](Architecture)
- [Getting Started](Getting-Started)
- [Tech Stack](Tech-Stack)
- ...
_Sidebar.md (navigation — create if missing):
**Navigation**
- [Home](Home)
- [Architecture](Architecture)
- [Getting Started](Getting-Started)
- ...
cd /tmp/<REPO>-wiki
git add -A
git commit -m "docs: add/update <page-name>"
git push
rm -rf /tmp/<REPO>-wiki
Wiki page that duplicates an ADR
Stale content
No navigation