@moonpay/cli 0.6.13 → 0.6.14
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/dist/{chunk-AFUYZK7C.js → chunk-CTYZ36RZ.js} +133 -12
- package/dist/chunk-CTYZ36RZ.js.map +1 -0
- package/dist/index.js +2 -2
- package/dist/{mcp-BLERLDQJ.js → mcp-UXGB2XH2.js} +2 -2
- package/package.json +1 -1
- package/skills/moonpay-feedback/SKILL.md +49 -0
- package/dist/chunk-AFUYZK7C.js.map +0 -1
- /package/dist/{mcp-BLERLDQJ.js.map → mcp-UXGB2XH2.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
consentCheck,
|
|
7
7
|
resolveBaseUrl,
|
|
8
8
|
schemas_default
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-CTYZ36RZ.js";
|
|
10
10
|
import "./chunk-ZYYH3VNA.js";
|
|
11
11
|
|
|
12
12
|
// src/index.ts
|
|
@@ -177,7 +177,7 @@ function printUpdateNotice() {
|
|
|
177
177
|
if (notice) process.stderr.write(notice);
|
|
178
178
|
}
|
|
179
179
|
program.command("mcp").description("Start MCP server over stdio (for Claude Desktop, Claude Code, etc.)").action(async () => {
|
|
180
|
-
const { startMcpServer } = await import("./mcp-
|
|
180
|
+
const { startMcpServer } = await import("./mcp-UXGB2XH2.js");
|
|
181
181
|
await startMcpServer();
|
|
182
182
|
});
|
|
183
183
|
function getOrCreateGroup(parent, segments) {
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
callTool,
|
|
5
5
|
resolveBaseUrl,
|
|
6
6
|
schemas_default
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-CTYZ36RZ.js";
|
|
8
8
|
import "./chunk-ZYYH3VNA.js";
|
|
9
9
|
|
|
10
10
|
// src/mcp.ts
|
|
@@ -125,4 +125,4 @@ async function startMcpServer() {
|
|
|
125
125
|
export {
|
|
126
126
|
startMcpServer
|
|
127
127
|
};
|
|
128
|
-
//# sourceMappingURL=mcp-
|
|
128
|
+
//# sourceMappingURL=mcp-UXGB2XH2.js.map
|
package/package.json
CHANGED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: moonpay-feedback
|
|
3
|
+
description: Submit feedback, bug reports, or feature requests for the MoonPay CLI. Use when the user encounters issues, wants to suggest improvements, or has general feedback.
|
|
4
|
+
tags: [support]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Submit feedback
|
|
8
|
+
|
|
9
|
+
## Goal
|
|
10
|
+
|
|
11
|
+
Let users submit bug reports, feature requests, or general feedback directly from the CLI. Requires authentication so we can follow up.
|
|
12
|
+
|
|
13
|
+
## Command
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
mp feedback create \
|
|
17
|
+
--type <bug|feature|general> \
|
|
18
|
+
--message "<feedback message>"
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Types
|
|
22
|
+
|
|
23
|
+
- `bug` — Something is broken or not working as expected
|
|
24
|
+
- `feature` — A new capability or improvement the user wants
|
|
25
|
+
- `general` — Any other feedback
|
|
26
|
+
|
|
27
|
+
## Example flows
|
|
28
|
+
|
|
29
|
+
### Bug report
|
|
30
|
+
1. User: "The token swap command keeps failing with a timeout error."
|
|
31
|
+
2. Run: `mp feedback create --type bug --message "token swap times out when swapping SOL to USDC on Solana — getting timeout error after 30s"`
|
|
32
|
+
|
|
33
|
+
### Feature request
|
|
34
|
+
1. User: "I wish I could set up recurring buys."
|
|
35
|
+
2. Run: `mp feedback create --type feature --message "Add native recurring buy support — e.g. buy $50 of SOL every week automatically"`
|
|
36
|
+
|
|
37
|
+
### General feedback
|
|
38
|
+
1. User: "The CLI is great but the output is hard to read."
|
|
39
|
+
2. Run: `mp feedback create --type general --message "CLI output formatting could be more readable — consider adding color or table views"`
|
|
40
|
+
|
|
41
|
+
## Notes
|
|
42
|
+
|
|
43
|
+
- User must be logged in (`mp login`) before submitting feedback.
|
|
44
|
+
- Include as much detail as possible in the message — error messages, commands that failed, expected vs actual behavior.
|
|
45
|
+
- If the user reports a bug, try to reproduce it first and include the error output in the feedback message.
|
|
46
|
+
|
|
47
|
+
## Related skills
|
|
48
|
+
|
|
49
|
+
- **moonpay-auth** — Ensure user is logged in before submitting feedback.
|