@neovate/code 0.12.0 → 0.12.2
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 +31 -19
- package/dist/cli.mjs +559 -548
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +560 -549
- package/package.json +14 -6
- package/dist/logfiles/index.html +0 -2846
- package/dist/logfiles/live.html +0 -1465
package/README.md
CHANGED
|
@@ -1,45 +1,57 @@
|
|
|
1
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
<img src="https://mdn.alipayobjects.com/huamei_9rin5s/afts/img/0uIJQaelzccAAAAAQCAAAAgADiB8AQFr/original" alt="Neovate Code Logo" width="60" />
|
|
3
|
+
<br />
|
|
4
|
+
<br />
|
|
5
|
+
<img src="https://mdn.alipayobjects.com/huamei_9rin5s/afts/img/UdphTJIBImUAAAAAQKAAAAgADiB8AQFr/original" alt="Neovate Code Logo Text" width="160" />
|
|
6
|
+
|
|
7
|
+
---
|
|
2
8
|
|
|
3
9
|
[](https://www.npmjs.com/package/@neovate/code)
|
|
4
10
|
[](https://www.npmjs.com/package/@neovate/code)
|
|
5
11
|
[](https://github.com/neovateai/neovate-code/actions/workflows/test.yml)
|
|
6
12
|
[](https://www.npmjs.com/package/@neovate/code)
|
|
7
13
|
|
|
8
|
-
Neovate
|
|
14
|
+
**Neovate**, pronounced as `['niːəʊveɪt]`, is a **coding agent** to enhance your development workflow. You can use it to generate code, fix bugs, review code, add tests, and more.
|
|
9
15
|
|
|
10
|
-
|
|
16
|
+
✨ See more at [neovateai.dev](https://neovateai.dev).
|
|
11
17
|
|
|
12
|
-
|
|
18
|
+

|
|
13
19
|
|
|
14
|
-
|
|
20
|
+
</div>
|
|
15
21
|
|
|
16
|
-
|
|
17
|
-
$ npm install -g @neovate/code
|
|
18
|
-
```
|
|
22
|
+
## Quick Start
|
|
19
23
|
|
|
20
|
-
|
|
24
|
+
Ready to try Neovate Code? Getting started is simple:
|
|
21
25
|
|
|
22
26
|
```bash
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
$ export XAI_API_KEY="sk-..."
|
|
28
|
-
$ export AIHUBMIX_API_KEY="sk-..."
|
|
29
|
-
$ export OPENROUTER_API_KEY="sk-..."
|
|
27
|
+
npm install -g @neovate/code
|
|
28
|
+
neovate
|
|
29
|
+
# Or use the shorter alias
|
|
30
|
+
neo
|
|
30
31
|
```
|
|
31
32
|
|
|
32
|
-
|
|
33
|
+
We respect the API KEY environment variable for all providers. If you don't have an API Key, enter `/login`, select a provider, open the website, and enter the API Key.
|
|
34
|
+
|
|
35
|
+
Then enter `/model` to select a model of that provider.
|
|
36
|
+
|
|
37
|
+
Then you can start to use Neovate Code, describe what you want to do in the command line, review proposed changes and approve tools calls.
|
|
33
38
|
|
|
34
39
|
```bash
|
|
35
|
-
|
|
36
|
-
|
|
40
|
+
# Examples of what you can do:
|
|
41
|
+
"Add error handling to the user authentication function"
|
|
42
|
+
"Refactor this component to use TypeScript"
|
|
43
|
+
"Create unit tests for the payment service"
|
|
44
|
+
"Optimize this database query"
|
|
37
45
|
```
|
|
38
46
|
|
|
47
|
+
Visit our [quickstart](https://neovateai.dev/en/docs/quickstart) documentation for detailed installation and setup instructions.
|
|
48
|
+
|
|
39
49
|
## Contributing
|
|
40
50
|
|
|
41
51
|
Contributions are welcome! Please read the [CONTRIBUTING.md](./CONTRIBUTING.md) file for guidelines on setting up the development environment, running tests, and submitting pull requests.
|
|
42
52
|
|
|
53
|
+
[](https://www.openomy.com/github/neovateai/neovate-code)
|
|
54
|
+
|
|
43
55
|
## License
|
|
44
56
|
|
|
45
57
|
[MIT](./LICENSE)
|