Paystack integration
24 AI agent skills for Paystack API integration — automate payment workflows with TypeScript, Node.js, and Next.js
npx -y skills add rexedge/paystack --skill paystack-integrationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Paystack Integration API — manage integration-level settings like payment session timeouts. Use this skill whenever configuring Paystack integration settings, adjusting payment session timeout durations, or building admin panels that control payment session behavior. Also use when you see references to /integration/payment_session_timeout endpoint.
SKILL.md
1.3 KB, as published. Nobody here has run it
Paystack Integration
The Integration API lets you manage settings on your Paystack integration.
Depends on: paystack-setup for the
paystackRequesthelper.
Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /integration/payment_session_timeout | Get current timeout |
| PUT | /integration/payment_session_timeout | Update timeout |
Fetch Payment Session Timeout
const timeout = await paystackRequest<{
payment_session_timeout: number;
}>("/integration/payment_session_timeout");
// timeout.data.payment_session_timeout → 30 (seconds)
Update Payment Session Timeout
Set how long (in seconds) before a payment session expires. Set to 0 to disable.
await paystackRequest("/integration/payment_session_timeout", {
method: "PUT",
body: JSON.stringify({ timeout: 30 }),
});