One-time setup for the Respira Community Wiki.
- Enable wiki: Settings → General → Features → check Wikis
- Clone wiki repo:
git clone https://github.com/webmyc/community.wiki.git - Copy contents from
wiki/directory to wiki repo root - Rename
Home.mdtoHome.md(GitHub wiki uses Home as front page) - Push:
git add . && git commit -m "chore: initial wiki pages" && git push - Run validation:
npm run wiki:validate
- Verify Wiki displays correctly
- Test edit workflow (Edit → change → Save)
- Create Announcement discussion (see below)
- Pin announcement in Discussions
- Add wiki link to Discord: https://go.respira.cafe/respira-discord
- Seed prompt recipes from your own usage
- Invite power users to contribute
- Set up periodic
npm run wiki:validatein CI or locally
The wiki/ folder in this repo is the source of truth. To update the live wiki:
- Clone wiki:
git clone https://github.com/webmyc/community.wiki.git community-wiki - Copy:
cp wiki/*.md community-wiki/ - In community-wiki:
git add . && git status - Commit and push changes
Or use a sync script (future improvement).