Working without an AI agent¶
Everything below works without Codex, Claude Code, Cursor, or any AI tool. The AI toolchain is optional — the repo itself guards the workflow (git hooks + PR checks), so a manual engineer is fully covered.
Daily loop¶
- Pull latest main:
- Build once per day with the helper: then run the bat normally and open the Rune Showcase level.
- Create a task branch (never work on
main): Name it<category>/<area-or-level>-<short-task>with one of:feature/,fix/,bugfix/,docs/,chore/,refactor/,test/,experiment/. The repo's git hooks automatically block commits/pushes onmain/master, detached HEAD, and badly named branches — this works for manual engineers too, no setup needed. - Commit on your branch:
- Push and open a PR into
main: Use the PR template (summary, linked ticket, what changed/why, verification evidence, review checklist, rollback notes, video/screenshot when relevant). GitHub validates the template sections automatically.
Reviews without an agent¶
convention_check(MCP-only): self-check your C++ against the coding conventions before committing: ASCII-onlyUE_LOG, no banner comments, actor ids viaGetActorNameOrLabel(), include order (own header → engine → project → third-party), no unused placeholder blocks.- Team review (
request_review, MCP-only): ask your lead or a teammate with an agent to run the review pass on your branch before merging. A human reviews the PR regardless. - Compile + PIE: always yours — build in VS and playtest before opening the PR.
Devlog without an agent¶
Write the weekly entry by hand, following the devlogs README: one ## YYYY-MM-DD section per day, with a one-line summary, files touched, decisions/blockers, and the team task link if any. File lives at Rephrased Wiki/wiki/devlogs/YYYY-Www-<your-name>.md. Or ask a teammate with an agent to draft it via the devlog tool.
Keys and MCP¶
Not needed. The review key (rephr_...) only gates the agent-side tools. If you start using Codex / Claude Code / Cursor later, follow the two-phase "onboard me" flow in MCP setup — no manual config.
Change history¶
- 2026-08-27 - Gabriel Li - Created manual workflow page so engineers without AI agents have a documented path.