@staff0rd/assist 0.660.0 → 0.660.2
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/dist/commands/sessions/web/bundle.js +387 -387
- package/dist/index.js +5 -4
- package/package.json +1 -1
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.660.
|
|
9
|
+
version: "0.660.2",
|
|
10
10
|
type: "module",
|
|
11
11
|
main: "dist/index.js",
|
|
12
12
|
bin: {
|
|
@@ -23278,7 +23278,7 @@ function registerCreateIssue(issueCommand) {
|
|
|
23278
23278
|
[]
|
|
23279
23279
|
).addHelpText(
|
|
23280
23280
|
"after",
|
|
23281
|
-
"\nThere is no What/Why/How template: an issue reports a problem, and the target repo's own issue template is unknowable from here. Write the body as the repo's maintainers would expect.\nIn an assist web session the title and body are previewed for approve/reject first (with inline comments); nothing is created until it is approved.\nThe reviewer may also drop or paste screenshots or video into the pane; on approval these are appended to the issue body under a ## Screenshots section automatically, and on rejection they
|
|
23281
|
+
"\nThere is no What/Why/How template: an issue reports a problem, and the target repo's own issue template is unknowable from here. Write the body as the repo's maintainers would expect.\nIn an assist web session the title and body are previewed for approve/reject first (with inline comments); nothing is created until it is approved.\nThe reviewer may also drop or paste screenshots or video into the pane; on approval these are appended to the issue body under a ## Screenshots section automatically, and on rejection they stay attached and reappear in the preview you re-propose \u2014 so never author that section yourself.\n--type, --parent, --project, --status and --label are all resolved before the preview, so an unknown name, an unreadable parent, a missing project scope or --status without --project creates nothing.\nA bare --parent number is read against --repo, or the current repo; a parent in another repository is allowed.\nThe project scope is needed for --project: gh auth refresh -h github.com -s project"
|
|
23282
23282
|
).action(createIssue);
|
|
23283
23283
|
}
|
|
23284
23284
|
|
|
@@ -27734,8 +27734,9 @@ as numbered quoted-span + note pairs on stderr. Address every comment (and the
|
|
|
27734
27734
|
reason), then run the command again to re-preview the revised PR. Repeat until it
|
|
27735
27735
|
is approved. The reviewer may also drop or paste screenshots or video into the
|
|
27736
27736
|
pane; on approval these are appended to the PR body under a ## Screenshots section
|
|
27737
|
-
automatically
|
|
27738
|
-
yourself. Just compose the sections
|
|
27737
|
+
automatically; on rejection they stay attached and reappear in the preview you
|
|
27738
|
+
re-propose, so you never author that section yourself. Just compose the sections
|
|
27739
|
+
and run the command.`;
|
|
27739
27740
|
function raiseHelpText(promptJira, promptGithub, draft) {
|
|
27740
27741
|
const config = loadConfig().prs;
|
|
27741
27742
|
const jira = promptJira ?? config?.promptJira ?? false;
|