@staff0rd/assist 0.93.1 → 0.93.3
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 +1 -0
- package/claude/commands/pr.md +7 -0
- package/dist/index.js +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,6 +35,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
35
35
|
- `/commit` - Commit only relevant files from the session
|
|
36
36
|
- `/devlog` - Generate devlog entry for the next unversioned day
|
|
37
37
|
- `/next-backlog-item` - Pick and implement the next backlog item
|
|
38
|
+
- `/pr` - Raise a PR with a concise description
|
|
38
39
|
- `/refactor` - Run refactoring checks for code quality
|
|
39
40
|
- `/restructure` - Analyze and restructure tightly-coupled files
|
|
40
41
|
- `/review-comments` - Process PR review comments one by one
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Raise a PR with a concise description
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
Raise a pull request for the current branch. Use a concise description with no headers. Do not reference Claude or any AI assistance in the title or body.
|
|
6
|
+
|
|
7
|
+
Use `gh pr create` to create the PR. Keep the title short and the body to a brief plain-text summary of the changes.
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { Command } from "commander";
|
|
|
6
6
|
// package.json
|
|
7
7
|
var package_default = {
|
|
8
8
|
name: "@staff0rd/assist",
|
|
9
|
-
version: "0.93.
|
|
9
|
+
version: "0.93.3",
|
|
10
10
|
type: "module",
|
|
11
11
|
main: "dist/index.js",
|
|
12
12
|
bin: {
|
|
@@ -220,6 +220,9 @@ function getTranscriptConfig() {
|
|
|
220
220
|
// src/shared/shellQuote.ts
|
|
221
221
|
function shellQuote(arg) {
|
|
222
222
|
if (/[^a-zA-Z0-9_./:=@%^+,-]/.test(arg)) {
|
|
223
|
+
if (process.platform === "win32") {
|
|
224
|
+
return `"${arg.replace(/"/g, '\\"')}"`;
|
|
225
|
+
}
|
|
223
226
|
return `'${arg.replace(/'/g, "'\\''")}'`;
|
|
224
227
|
}
|
|
225
228
|
return arg;
|