Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 959 Bytes

File metadata and controls

17 lines (16 loc) · 959 Bytes

Memory Repo Instructions

Use the dev environment to store/retrieve/search for memories

Version control

  • Keep commits small and incremental.
  • Commit during a task if the subtask is contained.
  • Always commit at the end of a task.
  • For direct no-plan implementation work, record the task start before edits with memory-direct-task-start / start-task-execution; completed work should still be remembered as implementation.
  • Use expressive commit prefixes when they fit:
    • Feat: for user-visible features or capabilities
    • Fix: for bugs, regressions, and broken behavior
    • Docs: for documentation-only changes
    • Build: for packaging, release, or dependency/build-system changes
    • Refactor: for internal code reshaping without intended behavior change
    • Test: for test-only changes
    • Chore: for maintenance work that does not fit the categories above
  • Prefer the most specific prefix instead of defaulting to Chore:.