Thanks for helping build GoAgent. This project sits at the intersection of Go education, local desktop engineering, KataGo analysis, and LLM agent design, so changes should be careful and grounded.
pnpm install
python3 -m pip install -r scripts/requirements.txt
pnpm devBefore opening a pull request:
pnpm typecheck
pnpm build- KataGo structured analysis is the source of truth.
- LLM output is teaching language, not factual authority.
- The right-side teacher should stay agentic. Prefer adding reusable tools and context over hard-coding narrow flows.
- Keep student data local by default.
- Do not commit API keys, private SGFs, local reports, KataGo model files, or platform-specific KataGo binaries.
- Match the existing UI direction: dense, professional, workbench-like, not a marketing landing page.
- Improve SGF compatibility with real-world exported files.
- Add focused KataGo analysis fields to the teacher prompt.
- Improve board and graph rendering without adding visual clutter.
- Add knowledge cards under
data/knowledge. - Improve cross-platform packaging and runtime discovery.
- The change is scoped to one coherent problem.
-
pnpm typecheckpasses. -
pnpm buildpasses. - UI changes were checked in the desktop app.
- Privacy implications are documented if LLM or web-search data changes.
- New teacher-agent tools include a clear purpose and private-input notes.
Read docs/TEACHER_AGENT.md before changing the agent runtime.
When adding a tool:
- Add it to the tool catalog with a purpose and privacy notes.
- Make tool calls visible in the chat log.
- Keep raw SGF content, screenshots, local paths, and student-identifying data out of web search.
- Save durable outputs through the report/profile layer where appropriate.
- TypeScript for Electron and React code.
- Keep IPC boundaries explicit and typed in
src/main/lib/types.ts. - Prefer structured SGF/KataGo parsing over string heuristics.
- Keep local file access inside GoAgent-managed directories unless the user explicitly chooses files.
Maintainers cut releases with semver tags:
git tag v0.1.0
git push origin v0.1.0The release workflow builds macOS, Windows, and Linux artifacts and attaches them to the GitHub Release. Signing and notarization are expected to be configured before broad public distribution.