@stablebaseline/cli 0.4.0 → 0.4.2
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 +2 -2
- package/dist/sb.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@stablebaseline/cli)
|
|
4
4
|
|
|
5
|
-
Command-line client for **[Stable Baseline](https://stablebaseline.io)** — the simplest, most complete, end-to-end agent-managed company brain. Drive
|
|
5
|
+
Command-line client for **[Stable Baseline](https://stablebaseline.io)** — the simplest, most complete, end-to-end agent-managed company brain. Drive 184 MCP tools (docs, diagrams, plans, Knowledge Graph, members, billing, settings) from your terminal.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
@@ -39,7 +39,7 @@ sb tool list # all categories grouped
|
|
|
39
39
|
sb tool list --category=documents # filter by category
|
|
40
40
|
sb tool search "schedule a task" # natural-language search
|
|
41
41
|
|
|
42
|
-
# Call any tool (
|
|
42
|
+
# Call any tool (184 of them)
|
|
43
43
|
sb tool call listOrganisations
|
|
44
44
|
sb tool call createDocument --json '{"folderId":"<uuid>","title":"X","cdmd":"# Hi"}'
|
|
45
45
|
sb tool call kg_search --json '{"query":"compliance posture","mode":"global"}' --pretty
|
package/dist/sb.js
CHANGED
|
@@ -153,7 +153,7 @@ function registerAuthCommands(program) {
|
|
|
153
153
|
import kleur2 from "kleur";
|
|
154
154
|
import { readFile as readFile2 } from "fs/promises";
|
|
155
155
|
function registerToolCommands(program) {
|
|
156
|
-
const tool = program.command("tool").description("Direct tool dispatch \u2014 call any of the
|
|
156
|
+
const tool = program.command("tool").description("Direct tool dispatch \u2014 call any of the 184 MCP tools.");
|
|
157
157
|
tool.command("list").description("List all tools (catalogue summary).").option("--category <category>", "Filter by category (e.g. documents, plans, knowledge_graph)").option("--json", "Output JSON instead of a table").action(async (opts) => {
|
|
158
158
|
const sdk = await makeSdkClient();
|
|
159
159
|
const { tools } = await sdk.listTools();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stablebaseline/cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "sb — command-line client for Stable Baseline. End-to-end agent-managed company brain (docs, diagrams, plans, Knowledge Graph). 184 tools across 19 categories, all exposed at the CLI.",
|
|
5
5
|
"homepage": "https://stablebaseline.io",
|
|
6
6
|
"repository": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"pretest": "npm run build"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@stablebaseline/sdk": "^0.4.
|
|
45
|
+
"@stablebaseline/sdk": "^0.4.2",
|
|
46
46
|
"commander": "^12.1.0",
|
|
47
47
|
"kleur": "^4.1.5",
|
|
48
48
|
"open": "^10.1.0"
|