picoclaw/known-issues.md
anthrodjear 21b5e6b0d4 feat: Add research backend integration design document
- Introduced a new design document for research backend integration, outlining scope, architecture, and API specifications.
- Added frontend API service functions for managing research agents, nodes, and reports.
- Extended existing Go backend packages to support new research functionalities.

feat: Implement PicoClaw context window improvements

- Created a design document detailing seven context-window improvements to enhance performance and prevent errors.
- Improvements include token estimation fixes, structured error handling, and proactive context management strategies.

fix: Document known issues and resolutions

- Added a known issues document detailing a critical compile error related to invalid Unicode escapes in Go, including the fix applied.

docs: Add context management skill documentation

- Introduced a new skill for context management, detailing usage scenarios, project mapping, state persistence, and integration with PicoClaw.
2026-05-08 08:49:17 +03:00

475 B

Known Issues (Resolved)

2026-05-08: Invalid Unicode Escapes in Go (Critical Compile Error)

  • File: web/backend/api/config.go lines 399-401
  • Issue: Invalid \uXXXX escape sequences in Go string literals (Go only supports \UXXXXXXXX for Unicode code points)
  • Impact: Prevented backend from compiling
  • Fix: Replaced \uXXXX with \UXXXXXXXX format (e.g., \u200B\U0000200B)
  • Status: Fixed, verified via go build ./web/backend/...