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 +13 -0
- package/dist/http/express/index.d.ts +1 -1
- package/dist/http/express/index.js.map +1 -1
- package/dist/http/fastify/index.d.ts +1 -1
- package/dist/http/fastify/index.js.map +1 -1
- package/dist/http/hono/index.d.ts +1 -1
- package/dist/http/hono/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +95 -26
- package/dist/index.js.map +1 -1
- package/dist/{service-bridge-B1sZmWdS.d.ts → service-bridge-DGZXGuhl.d.ts} +41 -20
- package/package.json +1 -1
- package/skill/SKILL.md +2 -2
- package/skill/reference/configuration.md +1 -1
- package/skill/reference/http-integrations.md +3 -3
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.
|