portable-agent-layer 0.8.0 → 0.8.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.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "PAL — Portable Agent Layer: persistent personal context for AI coding assistants",
5
5
  "type": "module",
6
6
  "bin": {
@@ -183,10 +183,7 @@ export function getUpdateNotice(): string | null {
183
183
  const cache = JSON.parse(readFileSync(fp, "utf-8")) as UpdateCache;
184
184
  if (!cache.available) return null;
185
185
 
186
- if (cache.mode === "repo") {
187
- return `📦 Update available: ${cache.current} → ${cache.latest} (git pull)`;
188
- }
189
- return `📦 Update available: ${cache.current} → ${cache.latest} (bun update -g portable-agent-layer)`;
186
+ return `📦 Update available: ${cache.current} ${cache.latest} (pal cli update)`;
190
187
  } catch {
191
188
  return null;
192
189
  }