@hyperdrive.bot/gut 0.1.15-alpha.0 → 0.1.16
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 +25 -1
- package/package.json +2 -2
- package/oclif.manifest.json +0 -2457
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ $ npm install -g @hyperdrive.bot/gut
|
|
|
18
18
|
$ gut COMMAND
|
|
19
19
|
running command...
|
|
20
20
|
$ gut (--version)
|
|
21
|
-
@hyperdrive.bot/gut/0.1.
|
|
21
|
+
@hyperdrive.bot/gut/0.1.16-alpha.0 linux-x64 node-v22.22.2
|
|
22
22
|
$ gut --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ gut COMMAND
|
|
@@ -35,6 +35,7 @@ USAGE
|
|
|
35
35
|
* [`gut auth status`](#gut-auth-status)
|
|
36
36
|
* [`gut back`](#gut-back)
|
|
37
37
|
* [`gut checkout BRANCH`](#gut-checkout-branch)
|
|
38
|
+
* [`gut claude init`](#gut-claude-init)
|
|
38
39
|
* [`gut commit`](#gut-commit)
|
|
39
40
|
* [`gut context`](#gut-context)
|
|
40
41
|
* [`gut contexts`](#gut-contexts)
|
|
@@ -265,6 +266,29 @@ EXAMPLES
|
|
|
265
266
|
$ gut checkout -b PRD-123 --from main
|
|
266
267
|
```
|
|
267
268
|
|
|
269
|
+
## `gut claude init`
|
|
270
|
+
|
|
271
|
+
Scaffold Claude Code configuration for gut
|
|
272
|
+
|
|
273
|
+
```
|
|
274
|
+
USAGE
|
|
275
|
+
$ gut claude init [--dry-run] [-f]
|
|
276
|
+
|
|
277
|
+
FLAGS
|
|
278
|
+
-f, --force Overwrite existing gut section and command files
|
|
279
|
+
--dry-run Preview changes without writing files
|
|
280
|
+
|
|
281
|
+
DESCRIPTION
|
|
282
|
+
Scaffold Claude Code configuration for gut
|
|
283
|
+
|
|
284
|
+
EXAMPLES
|
|
285
|
+
$ gut claude init
|
|
286
|
+
|
|
287
|
+
$ gut claude init --dry-run
|
|
288
|
+
|
|
289
|
+
$ gut claude init --force
|
|
290
|
+
```
|
|
291
|
+
|
|
268
292
|
## `gut commit`
|
|
269
293
|
|
|
270
294
|
Commit changes in focused repositories
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperdrive.bot/gut",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"description": "Git Unified Tooling - Enhanced git with workspace intelligence for entity-based organization",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -93,4 +93,4 @@
|
|
|
93
93
|
"access": "public",
|
|
94
94
|
"registry": "https://registry.npmjs.org/"
|
|
95
95
|
}
|
|
96
|
-
}
|
|
96
|
+
}
|