portable-agent-layer 0.14.0 → 0.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "portable-agent-layer",
3
- "version": "0.14.0",
3
+ "version": "0.14.1",
4
4
  "description": "PAL — Portable Agent Layer: persistent personal context for AI coding assistants",
5
5
  "type": "module",
6
6
  "bin": {
@@ -22,6 +22,7 @@ import {
22
22
  findSimilarOpinion,
23
23
  readOpinions,
24
24
  saveOpinion,
25
+ setLastReflectDate,
25
26
  } from "../hooks/lib/opinions";
26
27
  import { palHome } from "../hooks/lib/paths";
27
28
  import { similarity } from "../hooks/lib/text-similarity";
@@ -457,6 +458,7 @@ if (dryRun) {
457
458
  } else {
458
459
  const report = formatReport(period, notes, ratings, opinionChanges);
459
460
  const filepath = writeReport(report, period);
461
+ setLastReflectDate(new Date().toISOString().slice(0, 10));
460
462
  console.log(`\nCreated reflection report: ${filepath}`);
461
463
 
462
464
  const opinions = readOpinions();