@director.run/cli 0.0.10 → 0.0.11
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 +3 -34
- package/dist/cli.js +283 -237
- package/package.json +9 -7
package/README.md
CHANGED
@@ -1,40 +1,9 @@
|
|
1
1
|
# Director CLI
|
2
2
|
|
3
|
-
|
3
|
+
TODO
|
4
4
|
|
5
5
|
## CLI Reference
|
6
6
|
|
7
|
-
```
|
8
|
-
|
9
|
-
|
10
|
-
Director CLI
|
11
|
-
|
12
|
-
Options:
|
13
|
-
-V, --version output the version number
|
14
|
-
-h, --help display help for command
|
15
|
-
|
16
|
-
Commands:
|
17
|
-
ls List all proxies
|
18
|
-
get <proxyId> Show proxy details
|
19
|
-
create <name> Create a new proxy
|
20
|
-
rm <proxyId> Delete a proxy
|
21
|
-
server:add <proxyId> <entryId> Add a server from the registry to a proxy.
|
22
|
-
server:remove <proxyId> <serverName> Remove a server from a proxy
|
23
|
-
sse2stdio <sse_url> Proxy a SSE connection to a stdio stream
|
24
|
-
install <proxyId> <client> Install a proxy on a client app
|
25
|
-
uninstall <proxyId> <client> Uninstall an proxy from a client app
|
26
|
-
registry:ls List all available servers in the registry
|
27
|
-
registry:get <entryId> get detailed information about a repository item
|
28
|
-
start Start the director service
|
29
|
-
config Print configuration variables
|
30
|
-
debug:seed Seed the database with test data, for
|
31
|
-
development
|
32
|
-
debug:restart <client> Restart client
|
33
|
-
help [command] display help for command
|
34
|
-
|
35
|
-
|
36
|
-
Examples:
|
37
|
-
$ director create my-proxy
|
38
|
-
$ director server:add my-proxy fetch
|
39
|
-
$ director install my-proxy claude
|
7
|
+
```bash
|
8
|
+
TODO: Update
|
40
9
|
```
|