pushci 0.5.5 → 0.6.1

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/LICENSE CHANGED
@@ -1,21 +1,69 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 FinsavvyAI
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ Business Source License 1.1
2
+
3
+ Licensor: FinsavvyAI
4
+ Licensed Work: PushCI
5
+ Copyright (c) 2026 FinsavvyAI. All rights reserved.
6
+
7
+ Change Date: 2029-04-06
8
+ Change License: MIT License
9
+
10
+ Additional Use Grant:
11
+
12
+ You may use the Licensed Work for any purpose, including production use,
13
+ EXCEPT for the following:
14
+
15
+ You may not offer the Licensed Work, or any modified version of it,
16
+ as a commercial CI/CD service, hosted platform, or managed service
17
+ that competes with PushCI.
18
+
19
+ For clarity, the following uses ARE permitted:
20
+
21
+ - Using PushCI to run CI/CD pipelines for your own projects
22
+ - Using PushCI within your organization (any size)
23
+ - Modifying the source code for your own internal use
24
+ - Contributing changes back to the project
25
+ - Building integrations, plugins, or extensions for PushCI
26
+ - Using the MCP server or CLI in your own development tooling
27
+
28
+ Terms
29
+
30
+ The Licensor hereby grants you the right to copy, modify, create
31
+ derivative works, redistribute, and make non-production use of the
32
+ Licensed Work. The Licensor may make an Additional Use Grant, above,
33
+ permitting limited production use.
34
+
35
+ Effective on the Change Date, or the fourth anniversary of the first
36
+ publicly available distribution of a specific version of the Licensed
37
+ Work under this License, whichever comes first, the Licensor hereby
38
+ grants you rights under the terms of the Change License, and the
39
+ rights granted in the paragraph above terminate.
40
+
41
+ If your use of the Licensed Work does not comply with the requirements
42
+ currently in effect as described in this License, you must purchase a
43
+ commercial license from the Licensor, its affiliated entities, or
44
+ authorized resellers, or you must refrain from using the Licensed Work.
45
+
46
+ All copies of the original and modified Licensed Work, and derivative
47
+ works of the Licensed Work, are subject to this License. This License
48
+ applies separately for each version of the Licensed Work and the
49
+ Change Date may vary for each version of the Licensed Work released by
50
+ Licensor.
51
+
52
+ You must conspicuously display this License on each original or
53
+ modified copy of the Licensed Work. If you receive the Licensed Work
54
+ in original or modified form from a third party, the terms and
55
+ conditions set forth in this License apply to your use of that work.
56
+
57
+ Any use of the Licensed Work in violation of this License will
58
+ automatically terminate your rights under this License for the current
59
+ and all other versions of the Licensed Work.
60
+
61
+ This License does not grant you any right in any trademark or logo of
62
+ Licensor or its affiliates (provided that you may use a trademark or
63
+ logo of Licensor as expressly required by this License).
64
+
65
+ TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS
66
+ PROVIDED ON AN "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL
67
+ WARRANTIES AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING (WITHOUT
68
+ LIMITATION) WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
69
+ PURPOSE, NON-INFRINGEMENT, AND TITLE.
package/README.md CHANGED
@@ -64,18 +64,26 @@ Fly.io, Netlify, Docker, Kubernetes, SSH
64
64
  ## Commands
65
65
 
66
66
  ```
67
- pushci init Scan repo, generate config, install hooks
68
- pushci run Run full CI pipeline locally
69
- pushci agent Start webhook server (GitHub/GitLab/BB)
70
- pushci status Show last run results
71
- pushci ask Natural language CI commands
72
- pushci mcp Start MCP server for AI agents
73
- pushci doctor Check environment health
74
- pushci deploy Deploy to configured target
75
- pushci heal AI-powered pipeline auto-fix
76
- pushci version Print version
67
+ pushci init Scan repo, generate config, install hooks
68
+ pushci run Run full CI pipeline locally
69
+ pushci deploy Deploy to configured target
70
+ pushci diagnose AI-diagnose failed runs
71
+ pushci status Show last run results
72
+ pushci secret Manage encrypted secrets
73
+ pushci heal AI-powered pipeline auto-fix
74
+ pushci ask Natural language CI commands
75
+ pushci generate AI-generate pushci.yml
76
+ pushci migrate Convert GitHub Actions workflow
77
+ pushci mcp Start MCP server for AI agents
78
+ pushci agent Start webhook server (GitHub/GitLab/BB)
79
+ pushci login Authenticate with PushCI (Pro)
80
+ pushci logout Remove saved credentials
81
+ pushci doctor Check environment health
82
+ pushci version Print version
77
83
  ```
78
84
 
85
+ See [docs/CLI.md](docs/CLI.md) for the full CLI reference with flags, examples, and plan requirements.
86
+
79
87
  ## Configuration
80
88
 
81
89
  Optional `pushci.yml`:
@@ -112,4 +120,7 @@ Or just run `pushci init` — AI figures everything out.
112
120
 
113
121
  ## License
114
122
 
115
- MIT
123
+ [BSL 1.1](LICENSE) (Business Source License). Free to use for any purpose except
124
+ offering a competing hosted CI/CD service. Converts to MIT on 2029-04-06.
125
+
126
+ PushCI is a trademark of FinsavvyAI. See [LICENSE](LICENSE) for full terms.
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 = '0.5.3';
7
+ const VERSION = '0.6.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,6 +1,6 @@
1
1
  {
2
2
  "name": "pushci",
3
- "version": "0.5.5",
3
+ "version": "0.6.1",
4
4
  "description": "Zero-config AI CI/CD — auto-detects your stack, runs on your machine",
5
5
  "bin": {
6
6
  "pushci": "bin/pushci.js"
@@ -51,7 +51,7 @@
51
51
  "copilot"
52
52
  ],
53
53
  "author": "FinsavvyAI",
54
- "license": "MIT",
54
+ "license": "BUSL-1.1",
55
55
  "repository": {
56
56
  "type": "git",
57
57
  "url": "git+https://github.com/finsavvyai/pushci.git"