@cybermem/cli 0.13.13 → 0.13.14

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.
@@ -265,8 +265,9 @@
265
265
  args:
266
266
  chdir: "{{ project_dir }}"
267
267
  ignore_errors: true
268
- when: health_status.failed or (health_status.content | from_json).overall != 'ok'
268
+ when: (health_status is failed) or (health_status.json is defined and health_status.json.overall != 'ok')
269
269
 
270
270
  - name: Deployment Summary
271
271
  debug:
272
- msg: "CyberMem v{{ global_version }} successfully deployed. Health: {{ (health_status.content | from_json).overall | default('UNKNOWN') }}"
272
+ msg: "CyberMem v{{ global_version }} successfully deployed. Health: {{ health_status.json.overall | default('UNKNOWN') }}"
273
+ when: health_status.json is defined
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cybermem/cli",
3
- "version": "0.13.13",
3
+ "version": "0.13.14",
4
4
  "description": "CyberMem — Universal Long-Term Memory for AI Agents",
5
5
  "homepage": "https://cybermem.dev",
6
6
  "repository": {
@@ -265,8 +265,9 @@
265
265
  args:
266
266
  chdir: "{{ project_dir }}"
267
267
  ignore_errors: true
268
- when: health_status.failed or (health_status.content | from_json).overall != 'ok'
268
+ when: (health_status is failed) or (health_status.json is defined and health_status.json.overall != 'ok')
269
269
 
270
270
  - name: Deployment Summary
271
271
  debug:
272
- msg: "CyberMem v{{ global_version }} successfully deployed. Health: {{ (health_status.content | from_json).overall | default('UNKNOWN') }}"
272
+ msg: "CyberMem v{{ global_version }} successfully deployed. Health: {{ health_status.json.overall | default('UNKNOWN') }}"
273
+ when: health_status.json is defined