diff --git a/CHANGELOG.md b/CHANGELOG.md index a548450..8c0ab07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +# [1.3.0](https://github.com/salesforcecli/plugin-agent/compare/1.2.1...1.3.0) (2024-11-12) + +### Bug Fixes + +- update success message ([f37d979](https://github.com/salesforcecli/plugin-agent/commit/f37d979937eb7bbc19373bcca470d569facc4a2b)) +- update UX ([10fcd5e](https://github.com/salesforcecli/plugin-agent/commit/10fcd5ed44ecc41316fdb17cc54cf44da6815e2b)) + +### Features + +- add multi-stage-output ([633e484](https://github.com/salesforcecli/plugin-agent/commit/633e4849c304bc54ce3b028497607efd5007299b)) + +## [1.2.1](https://github.com/salesforcecli/plugin-agent/compare/1.2.0...1.2.1) (2024-11-12) + +### Bug Fixes + +- add salesforce/agents ([ce88c06](https://github.com/salesforcecli/plugin-agent/commit/ce88c06bbdfbff83a8633e00c4f99eb6bd6652e4)) +- use agents library ([d66ff89](https://github.com/salesforcecli/plugin-agent/commit/d66ff89ddcd9bfa453455eeb3bd2826a307354c9)) + # [1.2.0](https://github.com/salesforcecli/plugin-agent/compare/1.1.3...1.2.0) (2024-11-09) ### Bug Fixes diff --git a/README.md b/README.md index f5793d8..ba05fc6 100644 --- a/README.md +++ b/README.md @@ -72,10 +72,11 @@ Create an Agent from an agent spec. ``` USAGE - $ sf agent create -o -f [--json] [--flags-dir ] [--api-version ] + $ sf agent create -o -f -n [--json] [--flags-dir ] [--api-version ] FLAGS - -f, --spec= (required) The path to an agent spec file. + -f, --job-spec= (required) The path to an agent spec file. + -n, --name= (required) The name of the agent. -o, --target-org= (required) Username or alias of the target org. Not required if the `target-org` configuration variable is already set. --api-version= Override the api version used for api requests made by this command @@ -95,13 +96,13 @@ EXAMPLES $ sf agent create --spec ./agent-spec.json FLAG DESCRIPTIONS - -f, --spec= The path to an agent spec file. + -f, --job-spec= The path to an agent spec file. The agent spec file defines job titles and descriptions for the agent and can be created using the `sf agent create spec` command. ``` -_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.2.0/src/commands/agent/create.ts)_ +_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.3.0/src/commands/agent/create.ts)_ ## `sf agent generate spec` @@ -109,14 +110,14 @@ Create an Agent spec. ``` USAGE - $ sf agent generate spec -o [--json] [--flags-dir ] [--api-version ] [-n ] [-t + $ sf agent generate spec -o [--json] [--flags-dir ] [--api-version ] [-t customer_facing|employee_facing] [--role ] [--company-name ] [--company-description ] - [--company-website ] [-d ] + [--company-website ] [-d ] [-f ] FLAGS -d, --output-dir= [default: config] The location within the project where the agent spec will be written. - -n, --name= The name of the agent to create. + -f, --file-name= [default: agentSpec.json] The name of the file to write the agent spec to. -o, --target-org= (required) Username or alias of the target org. Not required if the `target-org` configuration variable is already set. -t, --type=