pushci 1.0.3 → 1.1.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 +9 -2
- package/bin/pushci.js +1 -1
- package/package.json +13 -3
package/README.md
CHANGED
|
@@ -21,8 +21,11 @@ git push # tests run automatically
|
|
|
21
21
|
## Quick Start
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
# Install
|
|
25
|
-
npm install -g pushci
|
|
24
|
+
# Install (pick one)
|
|
25
|
+
npm install -g pushci # npm (recommended)
|
|
26
|
+
brew install finsavvyai/tap/pushci # Homebrew
|
|
27
|
+
go install github.com/finsavvyai/pushci/cmd/pushci@latest # Go
|
|
28
|
+
curl -fsSL https://pushci.dev/install.sh | sh # Script
|
|
26
29
|
|
|
27
30
|
# Auto-detect your stack
|
|
28
31
|
pushci init
|
|
@@ -30,6 +33,9 @@ pushci init
|
|
|
30
33
|
# Run CI locally
|
|
31
34
|
pushci run
|
|
32
35
|
|
|
36
|
+
# Something broken? Get actionable fixes
|
|
37
|
+
pushci troubleshoot
|
|
38
|
+
|
|
33
39
|
# Start webhook agent
|
|
34
40
|
GITHUB_TOKEN=xxx pushci agent
|
|
35
41
|
```
|
|
@@ -112,6 +118,7 @@ pushci agent Start webhook server (GitHub/GitLab/BB)
|
|
|
112
118
|
pushci login Authenticate with PushCI (Pro)
|
|
113
119
|
pushci logout Remove saved credentials
|
|
114
120
|
pushci doctor Check environment health
|
|
121
|
+
pushci troubleshoot Diagnose issues with actionable fixes
|
|
115
122
|
pushci version Print version
|
|
116
123
|
```
|
|
117
124
|
|
package/bin/pushci.js
CHANGED
|
@@ -4,7 +4,7 @@ const fs = require('fs');
|
|
|
4
4
|
const path = require('path');
|
|
5
5
|
const os = require('os');
|
|
6
6
|
|
|
7
|
-
const VERSION = '1.0
|
|
7
|
+
const VERSION = '1.1.0';
|
|
8
8
|
const BINARY_NAME = os.platform() === 'win32' ? 'pushci.exe' : 'pushci';
|
|
9
9
|
const CDN = 'https://pushci-releases.broad-dew-49ad.workers.dev';
|
|
10
10
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pushci",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "AI-native CI/CD that runs on your machine. Zero config, zero cost. 19 languages, 69 skills, Tailscale mesh, blast radius analysis.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"pushci": "bin/pushci.js"
|
|
7
7
|
},
|
|
@@ -51,7 +51,17 @@
|
|
|
51
51
|
"claude",
|
|
52
52
|
"cursor",
|
|
53
53
|
"windsurf",
|
|
54
|
-
"copilot"
|
|
54
|
+
"copilot",
|
|
55
|
+
"tailscale",
|
|
56
|
+
"llamafile",
|
|
57
|
+
"blast-radius",
|
|
58
|
+
"impact-analysis",
|
|
59
|
+
"self-hosted-runner",
|
|
60
|
+
"free-ci",
|
|
61
|
+
"kubernetes",
|
|
62
|
+
"terraform",
|
|
63
|
+
"vercel",
|
|
64
|
+
"cloudflare"
|
|
55
65
|
],
|
|
56
66
|
"author": "FinsavvyAI",
|
|
57
67
|
"license": "BUSL-1.1",
|