service-bridge 2.0.0-alpha.3 → 2.0.0-alpha.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.
package/README.md CHANGED
@@ -41,6 +41,7 @@ You declare what your service handles and what it calls. ServiceBridge does the
41
41
 
42
42
  - [Install](#install)
43
43
  - [AI coding skill](#ai-coding-skill)
44
+ - [CLI](#cli)
44
45
  - [Why ServiceBridge](#why-servicebridge)
45
46
  - [Use cases](#use-cases)
46
47
  - [Quick start](#quick-start)
@@ -110,6 +111,18 @@ Restart the agent so it loads the skill. Source and contents: [`node/skill/`](ht
110
111
 
111
112
  ---
112
113
 
114
+ ## CLI
115
+
116
+ The runtime ships with `sb`, a command-line client for managing services, traces, events, jobs, workflows, alerts and settings. It comes with the runtime image — there is no separate install — so a running runtime already has it at `/usr/local/bin/sb`. Use `docker exec <container> sb …` or the host binary, and pass `-o json` to get machine-readable output for AI agents. Check it with:
117
+
118
+ ```sh
119
+ sb version
120
+ ```
121
+
122
+ Full command reference: **[servicebridge.dev/#docs/cli](https://servicebridge.dev/#docs/cli)**.
123
+
124
+ ---
125
+
113
126
  ## Why ServiceBridge
114
127
 
115
128
  Microservices rarely fail because of business logic. They fail in the gaps *between* services — the broker that dropped a message, the workflow engine nobody fully understands, the trace that stops at a service boundary, the mesh config that takes a week to debug. Each gap is another system to run, secure and correlate.
@@ -1,5 +1,5 @@
1
1
  import { Express } from 'express';
2
- import { p as ServiceBridge } from '../../service-bridge-B1sZmWdS.js';
2
+ import { p as ServiceBridge } from '../../service-bridge-DGZXGuhl.js';
3
3
  import '@grpc/grpc-js';
4
4
  import '@bufbuild/protobuf/wire';
5
5