cline 1.0.0-nightly.9 → 1.0.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/README.md +0 -10
- package/bin/cline +0 -0
- package/bin/cline-darwin-amd64 +0 -0
- package/bin/cline-darwin-arm64 +0 -0
- package/bin/cline-host +0 -0
- package/bin/cline-host-darwin-amd64 +0 -0
- package/bin/cline-host-darwin-arm64 +0 -0
- package/bin/cline-host-linux-amd64 +0 -0
- package/bin/cline-host-linux-arm64 +0 -0
- package/bin/cline-linux-amd64 +0 -0
- package/bin/cline-linux-arm64 +0 -0
- package/bin/cline-test +0 -0
- package/cline-core.js +3940 -650
- package/extension/package.json +4 -2
- package/fake_node_modules/vscode/enhanced-terminal.js +11 -3
- package/man/cline.1 +331 -0
- package/package.json +60 -66
- package/proto/cline/hooks.proto +40 -7
- package/proto/cline/state.proto +13 -0
- package/proto/cline/task.proto +2 -0
- package/proto/cline/ui.proto +3 -0
- package/test-startup.sh +14 -0
package/README.md
CHANGED
|
@@ -21,22 +21,12 @@ npm install -g cline
|
|
|
21
21
|
|
|
22
22
|
## Usage
|
|
23
23
|
|
|
24
|
-
### Start Cline
|
|
25
|
-
|
|
26
24
|
```bash
|
|
27
25
|
cline
|
|
28
26
|
```
|
|
29
27
|
|
|
30
28
|
This will start the Cline CLI interface where you can interact with the autonomous coding agent.
|
|
31
29
|
|
|
32
|
-
### Host Service
|
|
33
|
-
|
|
34
|
-
```bash
|
|
35
|
-
cline-host
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
Starts the Cline host service for advanced integrations and multi-instance management. This is typically managed by `cline` automatically
|
|
39
|
-
|
|
40
30
|
## Features
|
|
41
31
|
|
|
42
32
|
- **Autonomous Coding**: AI-powered code generation, editing, and refactoring
|
package/bin/cline
CHANGED
|
Binary file
|
package/bin/cline-darwin-amd64
CHANGED
|
Binary file
|
package/bin/cline-darwin-arm64
CHANGED
|
Binary file
|
package/bin/cline-host
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/cline-linux-amd64
CHANGED
|
Binary file
|
package/bin/cline-linux-arm64
CHANGED
|
Binary file
|
package/bin/cline-test
ADDED
|
Binary file
|