@nomac/cli 0.2.1 → 0.2.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/package.json +1 -1
- package/skill/SKILL.md +6 -2
- package/src/mcp.mjs +7 -1
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -54,5 +54,9 @@ status # poll ~30s until ready | failed
|
|
|
54
54
|
## When stuck
|
|
55
55
|
|
|
56
56
|
`report_issue` with the failing `ref_id` files a support ticket with full
|
|
57
|
-
context auto-attached (deduped, so safe to call).
|
|
58
|
-
|
|
57
|
+
context auto-attached (deduped, so safe to call). Its optional `email` requests
|
|
58
|
+
a direct resolution update; without it, read replies with the same tool. If the
|
|
59
|
+
tool returns a Private Relay warning, explain that Apple relay addresses may
|
|
60
|
+
reject later mail and offer a non-relay address. Never show that warning for a
|
|
61
|
+
normal address such as `@icloud.com`. Never retry-loop an identical failure
|
|
62
|
+
more than twice.
|
package/src/mcp.mjs
CHANGED
|
@@ -240,12 +240,18 @@ export const TOOLS = [
|
|
|
240
240
|
{
|
|
241
241
|
name: "report_issue",
|
|
242
242
|
description:
|
|
243
|
-
"File an unknown/unfixable error with nomac support. Auto-attaches build error, logs (redacted) and lint state when you pass ref_id (a bld_… id). Deduped by error fingerprint.
|
|
243
|
+
"File an unknown/unfixable error with nomac support. Auto-attaches build error, logs (redacted) and lint state when you pass ref_id (a bld_… id). Deduped by error fingerprint. An optional email requests a direct resolution update; replies are always available by calling with no description.",
|
|
244
244
|
inputSchema: {
|
|
245
245
|
type: "object",
|
|
246
246
|
properties: {
|
|
247
247
|
description: { type: "string", description: "what went wrong + what you tried (≥10 chars). Omit to read existing tickets/replies." },
|
|
248
248
|
ref_id: { type: "string" },
|
|
249
|
+
email: {
|
|
250
|
+
type: "string",
|
|
251
|
+
format: "email",
|
|
252
|
+
maxLength: 320,
|
|
253
|
+
description: "optional follow-up email for a direct resolution update",
|
|
254
|
+
},
|
|
249
255
|
},
|
|
250
256
|
additionalProperties: false,
|
|
251
257
|
},
|