@staff0rd/assist 0.318.3 → 0.318.4

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.
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "permissions": {
31
31
  "allow": [
32
- "SlashCommand(/verify)",
32
+ "SlashCommand(/verify)",
33
33
  "SlashCommand(/commit)",
34
34
  "SlashCommand(/devlog)",
35
35
  "SlashCommand(/refactor)",
@@ -43,7 +43,7 @@
43
43
  "SlashCommand(/voice-logs)",
44
44
  "SlashCommand(/journal)",
45
45
  "SlashCommand(/standup)",
46
- "Skill(verify)",
46
+ "Skill(verify)",
47
47
  "Skill(commit)",
48
48
  "Skill(devlog)",
49
49
  "Skill(refactor)",
@@ -85,8 +85,6 @@
85
85
  "Bash(git ls-files:*)",
86
86
  "WebFetch(domain:staffordwilliams.com)"
87
87
  ],
88
- "deny": [
89
- "Bash(npm run:*)"
90
- ]
88
+ "deny": ["Bash(npm run:*)"]
91
89
  }
92
90
  }
@@ -64,8 +64,7 @@
64
64
  if (type === "" || type === "text") return xhr.responseText ?? "";
65
65
  if (type === "json")
66
66
  return xhr.response == null ? "" : JSON.stringify(xhr.response);
67
- if (type === "arraybuffer")
68
- return new TextDecoder().decode(xhr.response);
67
+ if (type === "arraybuffer") return new TextDecoder().decode(xhr.response);
69
68
  if (type === "document")
70
69
  return xhr.response?.documentElement?.outerHTML ?? "";
71
70
  if (type === "blob") return xhr.response;
@@ -80,7 +79,10 @@
80
79
  const open = OriginalXHR.prototype.open;
81
80
  const send = OriginalXHR.prototype.send;
82
81
  OriginalXHR.prototype.open = function (method, url, ...rest) {
83
- this.__netcap = { method: String(method).toUpperCase(), url: String(url) };
82
+ this.__netcap = {
83
+ method: String(method).toUpperCase(),
84
+ url: String(url),
85
+ };
84
86
  return open.call(this, method, url, ...rest);
85
87
  };
86
88
  OriginalXHR.prototype.send = function (body) {
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.318.3",
9
+ version: "0.318.4",
10
10
  type: "module",
11
11
  main: "dist/index.js",
12
12
  bin: {
@@ -20536,7 +20536,7 @@ function refreshActivity(session) {
20536
20536
  session.claudeSessionId = activity2.claudeSessionId;
20537
20537
  }
20538
20538
 
20539
- // src/commands/sessions/daemon/watchThinking.ts
20539
+ // src/commands/sessions/daemon/noteOutputForThinking.ts
20540
20540
  var ACTIVATE_MS = 500;
20541
20541
  var GAP_MS = 1e3;
20542
20542
  function noteOutputForThinking(session, onStatusChange) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@staff0rd/assist",
3
- "version": "0.318.3",
3
+ "version": "0.318.4",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "bin": {