agent-relay-server 0.3.5 → 0.3.6

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "Agent Relay integration for Codex sessions",
5
5
  "author": {
6
6
  "name": "Edin Mujkanovic"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay-server",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "Lightweight HTTP message relay for inter-agent communication across machines",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",
package/public/index.html CHANGED
@@ -875,7 +875,7 @@ function relay() {
875
875
  },
876
876
 
877
877
  get composeAgents() {
878
- return this.showOffline ? this.agents : this.agents.filter(a => a.status === 'online');
878
+ return this.showOffline ? this.agents : this.agents.filter(a => a.status !== 'offline');
879
879
  },
880
880
 
881
881
  get uniqueLabels() {