coconuts 1.0.0 → 1.0.4
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 +41 -0
- package/bin.js +4 -0
- package/package.json +23 -9
package/README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# coconuts
|
|
2
|
+
|
|
3
|
+
The official command-line interface for GAIT - the Agent-Native Source Control Management System.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Install globally to use the `nut` command:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g coconuts
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or run directly with npx:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx coconuts init
|
|
17
|
+
npx coconuts serve
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
After installation, use the `nut` command:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
# Initialize a new GAIT project
|
|
26
|
+
nut init
|
|
27
|
+
|
|
28
|
+
# Start the web interface
|
|
29
|
+
nut serve
|
|
30
|
+
|
|
31
|
+
# View all commands
|
|
32
|
+
nut --help
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Documentation
|
|
36
|
+
|
|
37
|
+
For more information, visit the [GAIT documentation](https://github.com/bluer/gait).
|
|
38
|
+
|
|
39
|
+
## License
|
|
40
|
+
|
|
41
|
+
MIT
|
package/bin.js
ADDED
package/package.json
CHANGED
|
@@ -1,12 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coconuts",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
3
|
+
"version": "1.0.4",
|
|
4
|
+
"description": "Command-line interface wrapper for GAIT",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"nut": "./bin.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"bin.js",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/bluer/gait.git"
|
|
16
|
+
},
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@lovelybunch/cli": "^1.0.3"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=18.0.0"
|
|
25
|
+
}
|
|
12
26
|
}
|