@kennethsolomon/shipkit 1.0.1 → 3.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 +7 -7
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -8,14 +8,14 @@ Ship features with TDD, auto-detecting linters, security audits, and AI-powered
|
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
[](#)
|
|
10
10
|
|
|
11
|
-
```
|
|
12
|
-
|
|
11
|
+
```bash
|
|
12
|
+
npm install -g @kennethsolomon/shipkit && shipkit
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
Works on Mac, Linux, and Windows.
|
|
16
16
|
|
|
17
17
|
```
|
|
18
|
-
~ $
|
|
18
|
+
~ $ shipkit
|
|
19
19
|
|
|
20
20
|
⚑
|
|
21
21
|
|
|
|
@@ -31,7 +31,7 @@ Works on Mac, Linux, and Windows.
|
|
|
31
31
|
▀██████████████▀
|
|
32
32
|
≋ ≋ ≋ ≋ ≋
|
|
33
33
|
|
|
34
|
-
ShipKit
|
|
34
|
+
ShipKit v3.0.0
|
|
35
35
|
A structured workflow toolkit for Claude Code.
|
|
36
36
|
by Kenneth Solomon
|
|
37
37
|
|
|
@@ -62,7 +62,7 @@ Every gate must pass before the next step. If lint fails, you fix it. If tests d
|
|
|
62
62
|
## Installation
|
|
63
63
|
|
|
64
64
|
```bash
|
|
65
|
-
|
|
65
|
+
npm install -g @kennethsolomon/shipkit && shipkit
|
|
66
66
|
```
|
|
67
67
|
|
|
68
68
|
Or clone and install locally (symlinks — changes reflect immediately):
|
|
@@ -76,7 +76,7 @@ cd shipkit
|
|
|
76
76
|
### Update
|
|
77
77
|
|
|
78
78
|
```bash
|
|
79
|
-
|
|
79
|
+
npm install -g @kennethsolomon/shipkit && shipkit
|
|
80
80
|
```
|
|
81
81
|
|
|
82
82
|
Re-running always installs the latest version.
|
|
@@ -84,7 +84,7 @@ Re-running always installs the latest version.
|
|
|
84
84
|
### Uninstall
|
|
85
85
|
|
|
86
86
|
```bash
|
|
87
|
-
|
|
87
|
+
shipkit --uninstall
|
|
88
88
|
```
|
|
89
89
|
|
|
90
90
|
---
|
package/package.json
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kennethsolomon/shipkit",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "A structured workflow toolkit for Claude Code.",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"claude",
|
|
7
|
+
"claude-code",
|
|
8
|
+
"workflow",
|
|
9
|
+
"tdd",
|
|
10
|
+
"ai",
|
|
11
|
+
"developer-tools"
|
|
12
|
+
],
|
|
6
13
|
"author": "Kenneth Solomon",
|
|
7
14
|
"license": "MIT",
|
|
8
15
|
"bin": {
|