gibil 0.1.4 → 0.1.5
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 +7 -0
- package/package.json +13 -5
package/README.md
CHANGED
|
@@ -90,6 +90,13 @@ Teach your AI agent how to use gibil. Works with Claude Code, Cursor, Copilot, G
|
|
|
90
90
|
npx skills add https://github.com/AlexikM/gibil-skills --skill gibil
|
|
91
91
|
```
|
|
92
92
|
|
|
93
|
+
## Links
|
|
94
|
+
|
|
95
|
+
- [Documentation](https://gibil.dev/docs)
|
|
96
|
+
- [Quick Start](https://gibil.dev/docs/quickstart)
|
|
97
|
+
- [Recipes](https://gibil.dev/docs/recipes/code-test-loop)
|
|
98
|
+
- [Blog](https://gibil.dev/blog)
|
|
99
|
+
|
|
93
100
|
## License
|
|
94
101
|
|
|
95
102
|
Proprietary. See [LICENSE](LICENSE) for details.
|
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gibil",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Ephemeral dev compute for humans and AI agents",
|
|
5
|
+
"homepage": "https://gibil.dev",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"bin": {
|
|
7
8
|
"gibil": "./dist/index.js"
|
|
8
9
|
},
|
|
9
10
|
"files": [
|
|
10
|
-
"dist"
|
|
11
|
+
"dist",
|
|
12
|
+
"LICENSE"
|
|
11
13
|
],
|
|
12
14
|
"scripts": {
|
|
13
15
|
"build": "tsup",
|
|
@@ -23,20 +25,26 @@
|
|
|
23
25
|
"ephemeral",
|
|
24
26
|
"compute",
|
|
25
27
|
"cli",
|
|
26
|
-
"ai-agent"
|
|
28
|
+
"ai-agent",
|
|
29
|
+
"mcp",
|
|
30
|
+
"remote-server",
|
|
31
|
+
"ssh",
|
|
32
|
+
"hetzner",
|
|
33
|
+
"claude-code",
|
|
34
|
+
"dev-environment"
|
|
27
35
|
],
|
|
28
|
-
"author": "
|
|
36
|
+
"author": "AlexikM",
|
|
29
37
|
"license": "SEE LICENSE IN LICENSE",
|
|
30
38
|
"dependencies": {
|
|
31
39
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
32
40
|
"commander": "^14.0.3",
|
|
33
|
-
"dotenv": "^17.3.1",
|
|
34
41
|
"picocolors": "^1.1.1",
|
|
35
42
|
"ssh2": "^1.17.0",
|
|
36
43
|
"yaml": "^2.8.2",
|
|
37
44
|
"zod": "^4.3.6"
|
|
38
45
|
},
|
|
39
46
|
"devDependencies": {
|
|
47
|
+
"dotenv": "^17.3.1",
|
|
40
48
|
"@types/node": "^25.5.0",
|
|
41
49
|
"@types/ssh2": "^1.15.5",
|
|
42
50
|
"tsup": "^8.5.1",
|