@codeneter/cli 0.10.1 → 0.10.3
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 +19 -6
- package/dist/codeneter.js +149 -149
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,15 +32,28 @@ To run one prompt without opening the interactive UI:
|
|
|
32
32
|
codeneter run --prompt "Review this project and summarize the main risks"
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
## Common Commands
|
|
35
|
+
## Common Terminal Commands
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
|
-
codeneter
|
|
39
|
-
codeneter # Start the interactive terminal UI
|
|
38
|
+
codeneter # Start the interactive terminal UI
|
|
40
39
|
codeneter run -p "..." # Run a single prompt
|
|
41
|
-
codeneter
|
|
42
|
-
codeneter
|
|
43
|
-
codeneter
|
|
40
|
+
codeneter update # Check for CLI updates
|
|
41
|
+
codeneter --version # Print the installed CLI version
|
|
42
|
+
codeneter --help # Show all terminal commands
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Interactive Slash Commands
|
|
46
|
+
|
|
47
|
+
Inside `codeneter`, type `/` to browse available commands:
|
|
48
|
+
|
|
49
|
+
```text
|
|
50
|
+
/login Authenticate in your browser
|
|
51
|
+
/model Switch model or use auto
|
|
52
|
+
/mode Switch agent, plan, or ask mode
|
|
53
|
+
/clear Start a new conversation
|
|
54
|
+
/update Check for CLI updates
|
|
55
|
+
/commands Browse saved commands
|
|
56
|
+
/exit Quit the CLI
|
|
44
57
|
```
|
|
45
58
|
|
|
46
59
|
## Workspace Access
|