@nomac/cli 0.1.1 → 0.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nomac/cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Ship iOS apps to TestFlight and the App Store without a Mac — built for agents.",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
package/skill/SKILL.md CHANGED
@@ -18,9 +18,9 @@ via MCP tools (preferred) or the `nomac` CLI.
18
18
  ## Setup check
19
19
 
20
20
  1. MCP tools available (`connect_status`, `push_project`, `build`, …)? Use them.
21
- 2. Otherwise: `npx nomac whoami`. If not logged in, ask the human for an API
22
- key from nomac.app → API keys, then `npx nomac login <nmk_…>` and
23
- `claude mcp add nomac -- npx nomac mcp`.
21
+ 2. Otherwise: `npx @nomac/cli whoami`. If not logged in, ask the human for an API
22
+ key from nomac.app → API keys, then `npx @nomac/cli login <nmk_…>` and
23
+ `claude mcp add nomac -- npx @nomac/cli mcp`.
24
24
  3. `connect_status` must show a healthy Apple connection. If not, the human
25
25
  connects at the dashboard (60 seconds, one .p8 upload). Don't guess —
26
26
  verify, then proceed.
package/src/config.mjs CHANGED
@@ -3,7 +3,7 @@ import { homedir } from "node:os";
3
3
  import { join } from "node:path";
4
4
 
5
5
  export const DEFAULT_API_URL =
6
- process.env.NOMAC_API_URL ?? "https://www.nomac.app";
6
+ process.env.NOMAC_API_URL ?? "https://nomac.app";
7
7
 
8
8
  const CONFIG_DIR = join(homedir(), ".nomac");
9
9
  const CREDENTIALS = join(CONFIG_DIR, "credentials.json");