@codeneter/cli 0.10.0
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/LICENSE.md +13 -0
- package/README.md +52 -0
- package/dist/codeneter.js +783 -0
- package/package.json +38 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# CodeNeter CLI License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 CodeNeter.
|
|
4
|
+
|
|
5
|
+
All rights reserved.
|
|
6
|
+
|
|
7
|
+
Use of the CodeNeter CLI is subject to the CodeNeter Terms of Service:
|
|
8
|
+
|
|
9
|
+
https://codeneter.com/terms
|
|
10
|
+
|
|
11
|
+
The CodeNeter CLI is proprietary software. You may install and use this package only to access CodeNeter services and only in accordance with the CodeNeter Terms of Service.
|
|
12
|
+
|
|
13
|
+
No license is granted to copy, modify, distribute, sublicense, reverse engineer, decompile, or create derivative works from this package except where expressly permitted by the CodeNeter Terms of Service, written permission from CodeNeter, or applicable law.
|
package/README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# CodeNeter CLI
|
|
2
|
+
|
|
3
|
+
CodeNeter CLI brings the CodeNeter coding agent into your terminal. It connects to the CodeNeter cloud backend, runs against your current workspace, and can read files, edit files, search code, execute commands, and stream agent responses in an interactive terminal UI.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @codeneter/cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
CodeNeter requires Node.js 20 or newer.
|
|
12
|
+
|
|
13
|
+
## Sign In
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
codeneter login
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
The login command opens your browser and stores a local session under `~/.codeneter`.
|
|
20
|
+
|
|
21
|
+
## Start
|
|
22
|
+
|
|
23
|
+
Open a project directory and run:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
codeneter
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
To run one prompt without opening the interactive UI:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
codeneter run --prompt "Review this project and summarize the main risks"
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Common Commands
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
codeneter login # Authenticate in your browser
|
|
39
|
+
codeneter # Start the interactive terminal UI
|
|
40
|
+
codeneter run -p "..." # Run a single prompt
|
|
41
|
+
codeneter whoami # Show the authenticated account
|
|
42
|
+
codeneter doctor # Check backend, auth, and local dependencies
|
|
43
|
+
codeneter logout # Remove the stored local session
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Workspace Access
|
|
47
|
+
|
|
48
|
+
Local workspace access stays on your machine. File reads, edits, searches, and shell commands are executed by the CLI in the current workspace after the CLI asks for the required confirmations.
|
|
49
|
+
|
|
50
|
+
## Support
|
|
51
|
+
|
|
52
|
+
Website: https://codeneter.com
|