Reference

๐Ÿš€ Ultra Quick Start

One-screen operator cheat sheet for building, publishing, navigating, and safely operating the wiki workspace.

Use this when you want the whole workspace in your head without spelunking.

1. Wiki loop#

cd /home/mc/wiki
npm run wiki:content
npm run wiki
npm run wiki:build
npm run wiki:deploy
  • wiki:content regenerates safe Hermes/service pages.
  • wiki previews locally.
  • wiki:build writes public/wiki from source.
  • wiki:deploy publishes the verified build to wiki.moincraft.de.
  • Moincraft bot/server commands run from /home/mc/moincraft, not from the wiki source root.

2. Navigation map#

Need Go here
Project inventory Projects
Ports, deploy, verification, security Operations
OMP CLI, tools, Pi plugin compatibility OMP
Hermes profiles, skills, kanban Hermes
Minecraft bots and runtime Moincraft
AIRI monorepo AIRI
Nexus data/research engine Nexus
Roadmap and cleanup direction Plans
Wiki editing workflow Hugo knowledge-site skill

3. Safe command ladder#

cd /home/mc/wiki
npm run wiki:content        # update generated Markdown only
npm run wiki:build          # generate static site

cd /home/mc/moincraft
npm run check               # Moincraft relay/dashboard checks when code changes
npm run green               # full Moincraft stack verification when runtime changes matter

Do not start/stop live services unless the task is explicitly operational.

4. Secret hygiene before publishing#

Search source and output for secret-like strings. Names such as PI_DISCORD_BOT_TOKEN may appear as documentation, but values must not.

Blocked from public pages: .env, raw logs, auth state, session state, databases, API key values, RCON credentials, private memories, and hidden runtime directories.

5. Emergency map#