@loxtep/sdk 0.7.6 → 0.7.7
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/CHANGELOG.md +8 -0
- package/dist/cli/help.d.ts +1 -1
- package/dist/cli/help.d.ts.map +1 -1
- package/dist/cli/help.js +13 -15
- package/dist/cli/help.js.map +1 -1
- package/dist/cli/index.d.ts +1 -1
- package/dist/cli/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
and this project adheres to
|
|
7
7
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
8
8
|
|
|
9
|
+
## [0.7.7] - 2026-07-23
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- **CLI help** no longer exposes internal MCP facade names (`loxtep_session`,
|
|
14
|
+
`client.build`, etc.). Commands are grouped under customer-facing headings
|
|
15
|
+
(Authentication, Workspace, Build & deploy, Governance, …).
|
|
16
|
+
|
|
9
17
|
## [0.7.6] - 2026-07-23
|
|
10
18
|
|
|
11
19
|
### Added
|
package/dist/cli/help.d.ts
CHANGED
package/dist/cli/help.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"help.d.ts","sourceRoot":"","sources":["../../src/cli/help.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,QAAQ,
|
|
1
|
+
{"version":3,"file":"help.d.ts","sourceRoot":"","sources":["../../src/cli/help.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,QAAQ,QA0EV,CAAC;AAEZ,wBAAgB,YAAY,IAAI,IAAI,CAEnC"}
|
package/dist/cli/help.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Top-level CLI help
|
|
2
|
+
* Top-level CLI help — customer-facing command groups (no internal MCP facade names).
|
|
3
3
|
*/
|
|
4
4
|
export const CLI_HELP = `
|
|
5
5
|
Loxtep — the Enterprise Context Layer.
|
|
@@ -8,15 +8,13 @@ Turns organizational knowledge, expertise, and norms into machine-usable context
|
|
|
8
8
|
Usage: loxtep <command> [subcommand] [options]
|
|
9
9
|
loxtep --version | loxtep -V
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
Session (client.session · loxtep_session)
|
|
11
|
+
Authentication
|
|
14
12
|
login Log in (browser by default; --console for email/password/TOTP)
|
|
15
13
|
Saves to ./.loxtep/credentials.json by default (--global for ~/.loxtep)
|
|
16
14
|
logout Remove stored credentials (--local / --global to force scope)
|
|
17
15
|
whoami Print current user and organization
|
|
18
16
|
|
|
19
|
-
Workspace
|
|
17
|
+
Workspace
|
|
20
18
|
init [--template <slug>] [--create-repo | --from-repo <url>]
|
|
21
19
|
Scaffold .loxtep/project.json + domains/, connectors/, workflows/, data-products/
|
|
22
20
|
attach [--instance <id>]
|
|
@@ -25,7 +23,7 @@ Workspace (client.workspace · loxtep_workspace)
|
|
|
25
23
|
instances list | get <id> | create … | deployment-urls | register … | registration
|
|
26
24
|
Provision and register runtime instances
|
|
27
25
|
|
|
28
|
-
Build
|
|
26
|
+
Build & deploy
|
|
29
27
|
test <module> --event <file>
|
|
30
28
|
Run a workflow module locally (action trace)
|
|
31
29
|
deploy Compile workflow modules and deploy to the attached instance
|
|
@@ -36,32 +34,32 @@ Build (client.build · loxtep_build)
|
|
|
36
34
|
data-products list | get <id> | create … | readiness <id> | promote <id> --target …
|
|
37
35
|
Data product CRUD and medallion promotion
|
|
38
36
|
|
|
39
|
-
|
|
37
|
+
Governance
|
|
40
38
|
domains list | get <id>
|
|
41
|
-
standards list | get <id>
|
|
39
|
+
standards list | get <id> Standards (policies)
|
|
42
40
|
data-contracts list | get <id> | create …
|
|
43
41
|
|
|
44
|
-
Review
|
|
42
|
+
Review
|
|
45
43
|
improvements list [--status …] [--workflow <name>]
|
|
46
44
|
improvements apply <id> | reject <id> Adopt or reject AI-eval workflow improvements
|
|
47
45
|
|
|
48
|
-
|
|
46
|
+
Analytics
|
|
49
47
|
data-products query <id> "SQL" | --file <path>
|
|
50
48
|
data-products tables <id> List tables for analytics SQL
|
|
51
49
|
|
|
52
|
-
Observe
|
|
53
|
-
observe status Platform / instance
|
|
50
|
+
Observe
|
|
51
|
+
observe status Platform / instance health snapshot
|
|
54
52
|
queue info <data-product-id> | --queue <name>
|
|
55
53
|
queue checkpoint <id> --bot <bot-id> Reader checkpoint for a bot
|
|
56
54
|
metrics rate-limits | log --id <id> --value <n>
|
|
57
55
|
|
|
58
|
-
|
|
56
|
+
Activity
|
|
59
57
|
activity list [--source …] [--actor …] [--resource-type …] [--from …] [--to …]
|
|
60
58
|
|
|
61
|
-
|
|
59
|
+
Configuration
|
|
62
60
|
config list | paths | set <key> <value>
|
|
63
61
|
config export --from-connector <id> | --from-data-product <id> [--format sh|json|env]
|
|
64
|
-
bus login
|
|
62
|
+
bus login Stream bus vs JWT explainer (placeholder)
|
|
65
63
|
|
|
66
64
|
Examples:
|
|
67
65
|
pnpm exec loxtep login
|
package/dist/cli/help.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"help.js","sourceRoot":"","sources":["../../src/cli/help.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,MAAM,CAAC,MAAM,QAAQ,GAAG
|
|
1
|
+
{"version":3,"file":"help.js","sourceRoot":"","sources":["../../src/cli/help.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,MAAM,CAAC,MAAM,QAAQ,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0EvB,CAAC,OAAO,EAAE,CAAC;AAEZ,MAAM,UAAU,YAAY;IAC1B,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;AACxB,CAAC"}
|
package/dist/cli/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* context for AI across heterogeneous systems.
|
|
6
6
|
*
|
|
7
7
|
* Usage: loxtep <command> [options]
|
|
8
|
-
* Help is grouped by
|
|
8
|
+
* Help is grouped by customer-facing command areas — see ./help.ts
|
|
9
9
|
*/
|
|
10
10
|
export {};
|
|
11
11
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/cli/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* context for AI across heterogeneous systems.
|
|
6
6
|
*
|
|
7
7
|
* Usage: loxtep <command> [options]
|
|
8
|
-
* Help is grouped by
|
|
8
|
+
* Help is grouped by customer-facing command areas — see ./help.ts
|
|
9
9
|
*/
|
|
10
10
|
import { runLogin } from './commands/login.js';
|
|
11
11
|
import { runLogout } from './commands/logout.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loxtep/sdk",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.7",
|
|
4
4
|
"description": "Loxtep SDK for Node.js — the Enterprise Context Layer: data products, workflows, projects, queues, and machine-usable context for AI",
|
|
5
5
|
"author": "Loxtep <engineering@loxtep.io>",
|
|
6
6
|
"homepage": "https://loxtep.io",
|