@sourcegraph/cody-cli
v0.0.1
Published
Cody CLI (experimental)
Downloads
33
Keywords
Readme
Cody CLI (experimental)
Cody CLI is an experimental command-line interface for Cody.
Getting started
pnpm run build
Then ask a question:
Or have it write a commit message for your Git changes:
$ dist/cody commit --dry-run
Use --help
for more information.
Development
pnpm run start
Release
To publish a new release of the @sourcegraph/cody-cli
package:
- Increment the
version
inpackage.json
. - Commit the version increment.
git tag cli-v$(jq -r .version package.json)
git push --tags
- Wait for the cli-release workflow to finish.