Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CLI polish #494

Merged
merged 19 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,13 @@
"env": {
"MODUS_DEBUG": "true"
}
},
{
"name": "Debug Modus CLI",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/cli/bin/modus.js",
"args": []
}
],
"inputs": [
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ In previous releases, the name "Hypermode" was used for all three._
- Highlight endpoints when running in dev [#490](https://github.com/hypermodeinc/modus/pull/490)
- Fix data race in logging adapter [#491](https://github.com/hypermodeinc/modus/pull/491)
- Add Anthropic model interface to the Go SDK [#493](https://github.com/hypermodeinc/modus/pull/493)
- Simplify and polish `modus new` experience [#494](https://github.com/hypermodeinc/modus/pull/494)
- Move hyp settings for local model invocation to env variables [#495](https://github.com/hypermodeinc/modus/pull/495) [#504](https://github.com/hypermodeinc/modus/pull/504)
- Change GraphQL SDK examples to use a generic public GraphQL API [#501](https://github.com/hypermodeinc/modus/pull/501)

Expand Down
13 changes: 12 additions & 1 deletion cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,15 @@ This package contains the Modus CLI, which is responsible for the Modus local de

## Getting Started

Please refer to the docs at: https://docs.hypermode.com/modus/quickstart
Please refer to the docs at: https://docs.hypermode.com/modus/quickstart

## Contributing

```bash
npm i
npm run watch
```

You can make changes and run `./bin/modus.js` in a terminal to test changes.

Alternatively, you can set breakpoints and use the VS Code debug target `Debug Modus CLI` to launch the terminal to debug issues.
Loading