nofax 0.2.0-oidc-test.0 → 0.2.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
@@ -11,7 +11,7 @@ Nofax is a small open-source bridge between an agent and a human. Local mode can
11
11
 
12
12
  No Nofax account. No paid model API. No inbound port on your machine. MIT licensed.
13
13
 
14
- > **Current status:** local Nofax is `0.2.0`. The optional Cloudflare Worker is the upcoming `0.3.0` remote surface and is developed alongside the local package.
14
+ > **Current status:** local Nofax is `0.2.1`. The optional Cloudflare Worker is the upcoming `0.3.0` remote surface and is developed alongside the local package.
15
15
 
16
16
  ## Why Nofax
17
17
 
@@ -47,10 +47,8 @@ The remote Worker is **not** a hosted remote-approval service. It can send an in
47
47
 
48
48
  ### 1. Install
49
49
 
50
- Until a registry release is published:
51
-
52
50
  ```bash
53
- npm install -g https://github.com/AKzar1el/nofax.git
51
+ npm install -g nofax
54
52
  ```
55
53
 
56
54
  Requires Node.js 20 or newer.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nofax",
3
- "version": "0.2.0-oidc-test.0",
3
+ "version": "0.2.1",
4
4
  "mcpName": "io.github.AKzar1el/nofax",
5
5
  "description": "Human-in-the-loop approvals and notifications for AI coding agents via CLI, MCP, and agent hooks.",
6
6
  "type": "module",
@@ -32,7 +32,7 @@ function result(value) {
32
32
 
33
33
  export function buildMcpServer({ handlers = createMcpToolHandlers() } = {}) {
34
34
  const server = new McpServer(
35
- { name: 'nofax', version: '0.2.0' },
35
+ { name: 'nofax', version: '0.2.1' },
36
36
  { instructions: SERVER_INSTRUCTIONS }
37
37
  );
38
38