@hesed/myplugin
v0.1.0
Published
A new CLI generated with oclif
Downloads
62
Readme
myplugin
A new CLI generated with oclif
Usage
$ npm install -g @hesed/myplugin
$ my COMMAND
running command...
$ my (--version)
@hesed/myplugin/0.1.0 darwin-arm64 node-v22.14.0
$ my --help [COMMAND]
USAGE
$ my COMMAND
...Commands
my auth add
Add authentication
USAGE
$ my auth add [--json] [-e <value>] [-p <value>] [-t <value>] [-u <value>]
FLAGS
-e, --email=<value> Account email
-p, --profile=<value> Profile name
-t, --token=<value> API Token
-u, --url=<value> API endpoint URL (start with https://)
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Add authentication
EXAMPLES
$ my auth add
$ my auth add --p workSee code: @hesed/plugin-lib
my auth test
Test authentication and connection
USAGE
$ my auth test [--json] [-p <value>]
FLAGS
-p, --profile=<value> Authentication profile name
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Test authentication and connection
EXAMPLES
$ my auth test
$ my auth test --p workSee code: @hesed/plugin-lib
my hello PERSON
Say hello
USAGE
$ my hello PERSON -f <value>
ARGUMENTS
PERSON Person to say hello to
FLAGS
-f, --from=<value> (required) Who is saying hello
DESCRIPTION
Say hello
EXAMPLES
$ my hello friend --from oclif
hello friend from oclif! (./src/commands/hello/index.ts)See code: src/commands/hello/index.ts
my hello world
Say hello world
USAGE
$ my hello world
DESCRIPTION
Say hello world
EXAMPLES
$ my hello world
hello world! (./src/commands/hello/world.ts)See code: src/commands/hello/world.ts
