claude-remote-approver 0.6.0 → 0.6.1

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 CHANGED
@@ -21,7 +21,7 @@ cli.mjs hook
21
21
 
22
22
  ├──POST──▶ ntfy.sh/<topic> ──push──▶ Phone (ntfy app)
23
23
  │ │
24
- │ Approve / Always Allow / Deny tap
24
+ │ Approve / Always Approve / Deny tap
25
25
  │ │
26
26
  └──SSE───▶ ntfy.sh/<topic>-response ◀──POST──┘
27
27
 
@@ -31,7 +31,7 @@ Claude Code continues or stops
31
31
  ```
32
32
 
33
33
  1. Claude Code invokes the hook, piping the tool request as JSON to stdin.
34
- 2. `cli.mjs hook` sends a notification to your ntfy topic with **Approve**, **Always Allow**, and **Deny** action buttons.
34
+ 2. `cli.mjs hook` sends a notification to your ntfy topic with **Approve**, **Always Approve**, and **Deny** action buttons.
35
35
  3. The hook subscribes to a response topic (`<topic>-response`) via server-sent events.
36
36
  4. When you tap a button on your phone, ntfy.sh publishes your decision to the response topic.
37
37
  5. The hook reads the decision and writes `{"behavior":"allow"}` or `{"behavior":"deny"}` to stdout. If the notification fails or times out, the hook returns `{"behavior":"ask"}` so Claude Code falls back to the CLI prompt.
@@ -41,12 +41,12 @@ Claude Code continues or stops
41
41
 
42
42
  When Claude Code calls the `AskUserQuestion` tool, the hook sends the question to your phone as a notification. Each option appears as an action button you can tap. If the question has more than 3 options, they are split across multiple notifications. If no response is received before the timeout, the hook falls back to the CLI prompt so you can answer at your terminal.
43
43
 
44
- ### Always Allow
44
+ ### Always Approve
45
45
 
46
- When Claude Code sends a `permission_suggestions` field with the hook request (indicating the tool can be auto-approved in future), the notification shows three buttons: **Approve**, **Always Allow**, and **Deny**.
46
+ When Claude Code sends a `permission_suggestions` field with the hook request (indicating the tool can be auto-approved in future), the notification shows three buttons: **Approve**, **Always Approve**, and **Deny**.
47
47
 
48
48
  - **Approve** -- Allow this one request.
49
- - **Always Allow** -- Allow this request and tell Claude Code to auto-approve this tool in future sessions. Claude Code adds the permission rule to its settings so it won't ask again.
49
+ - **Always Approve** -- Allow this request and tell Claude Code to auto-approve this tool in future sessions. Claude Code adds the permission rule to its settings so it won't ask again.
50
50
  - **Deny** -- Reject this request.
51
51
 
52
52
  If the hook request does not include `permission_suggestions`, only the standard **Approve** and **Deny** buttons are shown.
package/bin/cli.mjs CHANGED
@@ -36,15 +36,18 @@ export async function main(args, deps) {
36
36
  deps.stdout.write(`Setup complete. Topic: ${result.topic}\n\n`);
37
37
 
38
38
  try {
39
- const host = new URL(result.ntfyServer).host;
40
- const ntfyUrl = `ntfy://${host}/${result.topic}`;
41
- const httpsUrl = `${result.ntfyServer.replace(/\/+$/, "")}/${result.topic}`;
39
+ const serverUrl = new URL(result.ntfyServer);
40
+ const isHttps = serverUrl.protocol === "https:";
41
+ const ntfyUrl = isHttps
42
+ ? `ntfy://${serverUrl.host}/${result.topic}`
43
+ : `${result.ntfyServer.replace(/\/+$/, "")}/${result.topic}`;
44
+ const subscribeUrl = `${result.ntfyServer.replace(/\/+$/, "")}/${result.topic}`;
42
45
 
43
46
  deps.stdout.write("Scan this QR code in the ntfy app to subscribe:\n\n");
44
47
  // qrcode-terminal invokes the callback synchronously
45
48
  deps.generateQR(ntfyUrl, { small: true }, (qrString) => {
46
49
  deps.stdout.write(qrString + "\n\n");
47
- deps.stdout.write(`Subscribe URL: ${httpsUrl}\n`);
50
+ deps.stdout.write(`Subscribe URL: ${subscribeUrl}\n`);
48
51
  });
49
52
  } catch {
50
53
  deps.stderr.write(`Warning: Invalid ntfyServer URL in config: ${result.ntfyServer}\n`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-remote-approver",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Approve or deny Claude Code permission prompts remotely from your phone via ntfy.sh",
5
5
  "type": "module",
6
6
  "bin": {
package/src/hook.mjs CHANGED
@@ -11,13 +11,13 @@ export const RETRY_DELAY_MS = 1000;
11
11
  export const _internal = { delay: ms => new Promise(r => setTimeout(r, ms)) };
12
12
 
13
13
  /**
14
- * Build ntfy action buttons for Approve / Deny (and optionally Always Allow).
14
+ * Build ntfy action buttons for Approve / Deny (and optionally Always Approve).
15
15
  *
16
16
  * @param {string} server - ntfy server URL
17
17
  * @param {string} topic - ntfy topic
18
18
  * @param {string} requestId - Unique request identifier
19
19
  * @param {object} [options] - Optional settings
20
- * @param {string[]} [options.permissionSuggestions] - When non-empty, adds an "Always Allow" button
20
+ * @param {string[]} [options.permissionSuggestions] - When non-empty, adds an "Always Approve" button
21
21
  * @returns {Array<object>} Array of action objects
22
22
  */
23
23
  export function buildActions(server, topic, requestId, { permissionSuggestions } = {}) {
@@ -41,7 +41,7 @@ export function buildActions(server, topic, requestId, { permissionSuggestions }
41
41
  if (permissionSuggestions?.length > 0) {
42
42
  actions.splice(1, 0, {
43
43
  action: "http",
44
- label: "Always Allow",
44
+ label: "Always Approve",
45
45
  url,
46
46
  body: JSON.stringify({ requestId, approved: true, alwaysAllow: true }),
47
47
  method: "POST",