moneydevkit
- Repo stars 39
- Author updated Live
- Author repo awesome-omni-skill
- Domain
- Other
- Compatible agents
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- Trust score
- 88 / 100 · community maintained
- Author / version / license
- @diegosouzapw · no license declared
- Token usage
- Lean
- Setup complexity
- Guided setup
- External API key
- Required · Vendor-specific
- Operating systems
- macOS · Linux · Windows
- Runtime requirements
- No special requirements
- Permissions
-
- Read-only
- Write / modify
- Env read
- Network behavior
- External requests
- Install commands
- 26 variants
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
---
name: moneydevkit
description: Accept payments on any website using moneydevkit. Use when building a site that sells something…
category: other
runtime: no special runtime
---
# moneydevkit output preview
## PART A: Task fit
- Use case: Accept payments on any website using moneydevkit. Use when building a site that sells something, adding a checkout/paywall, or integrating payments into a Next.js or Replit app. Supports fixed pricing, pay-what-you-want, products, customers, and orders. Bitcoin Lightning under the hood — works globally, no bank account needed..
- Inputs: target material, constraints, expected output, and acceptance criteria.
- Evidence boundary: follow “Workflow / 1. Get credentials / 2. Pick a framework and follow its guide” and do not present inference as author intent.
## PART B: Execution result
- **01** The card summarizes the use case; runtime output centers on “Accept payments on any website using moneydevkit. Use when building a site that sells something, adding a checkout/paywall, or integrating payments into a Next.js or Replit app. Supports fixed pricing, pay-what-you-want, products, customers, and orders. Bitcoin Lightning under the hood — works globally, no bank account needed.”.
- **02** When the source has headings, the agent prioritizes “Workflow / 1. Get credentials / 2. Pick a framework and follow its guide” so the result follows the author’s structure.
- **03** Typical output includes task judgment, concrete steps, required commands or file edits, validation, and follow-up options.
- **04** Risk context follows the fingerprint: read files, write/modify files, read environment variables; may access external network resources; requires Vendor-specific API keys.
## Running Rules
- read files, write/modify files, read environment variables; may access external network resources; requires Vendor-specific API keys.
- Validate with a small sample before expanding scope.
- Return the result, validation criteria, and next iteration options. The source mentions slash commands such as `/mcp`; use them first when your agent supports command triggers.
Name target files or source material, expected output, forbidden changes, and whether network or shell access is allowed. Permission fingerprint: read files, write/modify files, read environment variables.
Start with a small task and check whether the result follows “Workflow / 1. Get credentials / 2. Pick a framework and follow its guide”. Inspect diffs, logs, previews, or tests before expanding scope.
Confirm the final output includes a concrete result, evidence, and next action. If it stays generic, tighten inputs, boundaries, and acceptance criteria.
---
name: moneydevkit
description: Accept payments on any website using moneydevkit. Use when building a site that sells something…
category: other
source: diegosouzapw/awesome-omni-skill
---
# moneydevkit
## When to use
- Accept payments on any website using moneydevkit. Use when building a site that sells something, adding a checkout/pay…
- Use it when the task has clear inputs, repeatable steps, and validation criteria.
## What to provide
- Target material, scope, expected result, and forbidden changes.
- Whether network, commands, file writes, or external services are allowed.
## Execution rules
- Organize steps around “Workflow / 1. Get credentials / 2. Pick a framework and follow its guide” and keep inference separate from source facts.
- read files, write/modify files, read environment variables; may access external network resources; requires Vendor-specific API keys.
- Validate with a small sample before expanding the task.
## Output requirements
- Return the deliverable, key evidence, validation method, and next action.
- Mark missing information as unknown; do not invent commands, platforms, or dependencies. The author source anchors workflow facts; repository files anchor sources and commands; Fluxly only adds fit, limitations, and quality judgment.
skill "moneydevkit" {
input -> user goal + target files + boundaries + acceptance criteria
context -> Workflow / 1. Get credentials / 2. Pick a framework and follow its guide
rules -> SKILL.md triggers / order / output contract
runtime -> no special runtime | read files, write/modify files, read environment variables | may access external network resources
guardrails -> requires Vendor-specific API keys + small-sample validation + diff/log review
output -> copyable result + checklist + next iteration
} moneydevkit
Add payments to any web app in under 5 minutes. Two supported frameworks: Next.js and Replit (Express + Vite).
Workflow
1. Get credentials
Option A — MCP:
There are two MCP servers:
- Unauthenticated (
/mcp/) — for creating a new account and minting credentials - Authenticated (
/mcp/account/) — for managing your account after setup (requires OAuth)
To create a new account:
claude mcp add moneydevkit --transport http https://mcp.moneydevkit.com/mcp/
After you have credentials, switch to the authenticated MCP for full account control:
claude mcp add moneydevkit --transport http https://mcp.moneydevkit.com/mcp/account/
Option B — CLI:
npx @moneydevkit/create
Option C — Dashboard: Sign up at moneydevkit.com and create an app.
All options produce two values:
MDK_ACCESS_TOKEN— API keyMDK_MNEMONIC— wallet seed phrase
Add both to .env (or Replit Secrets, Vercel env vars, etc.). Both are required.
2. Pick a framework and follow its guide
- Next.js → read references/nextjs.md
- Replit (Express + Vite) → read references/replit.md
3. Create products (optional)
For fixed catalog items, create products via the dashboard or MCP:
mcporter call moneydevkit.create-product name="T-Shirt" priceAmount=2500 currency=USD
Then use type: 'PRODUCTS' checkouts with the product ID.
For dynamic amounts (tips, donations, invoices), skip products and use type: 'AMOUNT' directly.
4. Deploy
Deploy to Vercel (Next.js) or Replit. Ensure MDK_ACCESS_TOKEN and MDK_MNEMONIC are set in the production environment.
⚠️ Use printf not echo when piping env vars — trailing newlines cause silent auth failures.
Checkout types
| Type | Use case | Required fields |
|---|---|---|
AMOUNT |
Dynamic amounts, tips, invoices | amount, currency |
PRODUCTS |
Sell dashboard products | product (product ID) |
Pricing options
- Fixed price — set specific amount (USD cents or whole sats)
- Pay what you want — customer chooses amount (set
amountType: 'CUSTOM'on product)
Currency
USD— amounts in cents (e.g. 500 = $5.00)SAT— amounts in whole satoshis
Customers
Collect customer info to track purchases and enable refunds:
await createCheckout({
// ...checkout fields
customer: { email: 'jane@example.com', name: 'Jane', externalId: 'user-123' },
requireCustomerData: ['email', 'name'] // show form for missing fields
})
MCP tools
If the moneydevkit MCP server is connected (authenticated), these tools are available:
create-app/list-apps/update-app/rotate-api-key— manage appscreate-product/list-products/get-product/update-product/delete-productcreate-customer/list-customers/get-customer/update-customer/delete-customerlist-checkouts/get-checkout— view checkout sessionslist-orders/get-order— view completed paymentssearch-docs— search moneydevkit documentation
Docs
Full documentation: docs.moneydevkit.com
Decide Fit First
Design Intent
How To Use It
Boundaries And Review