Skip to content

Conversation

@cpdata
Copy link
Owner

@cpdata cpdata commented Oct 14, 2025

Summary

  • add run/install_setup.sh and run/maintenance_setup.sh to provision system packages and sync Python dependencies with uv
  • update README, SETUP, SOT, PLAN, RECOMMENDATIONS, and ISSUES to document the new automation scripts and upcoming LLM client refactor
  • enforce atomic TODO entries via AGENTS.md, refresh TODO.md priorities, and capture the new workflow in the changelog and resume notes

Testing

  • not run (documentation and scripting updates only)

https://chatgpt.com/codex/tasks/task_b_68ee1c9ee92c83218cbbebce8b0667b8

Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting

Comment on lines +82 to +85
if annotation is datetime:
if isinstance(value, datetime):
return value
return datetime.fromisoformat(str(value))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Parse UTC timestamps ending with “Z” in pydantic fallback

The fallback BaseModel converts datetime fields with datetime.fromisoformat. Unlike real Pydantic, datetime.fromisoformat raises ValueError for common ISO-8601 strings that use a trailing Z (e.g. 2025-01-01T12:00:00Z). When the project runs in environments without pydantic—the exact scenario this module targets—ingesting a Memory or Triplet containing a reference_time formatted with Z will now crash during construction instead of coercing to UTC. Consider normalizing Z to +00:00 (or using fromisoformat(value.replace('Z', '+00:00'))) before parsing so the compatibility layer accepts the same inputs as Pydantic.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants