agentsclimarketplace

Paystack integration

Skill rexedge/paystack/skills/paystack-integration

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.From its SKILL.md

Install
npx -y skills add rexedge/paystack --skill paystack-integration

Assembled 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.

SKILL.md

1.3 KB, 188 tokens by cl100k_base, 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 paystackRequest helper.

Endpoints

MethodEndpointDescription
GET/integration/payment_session_timeoutGet current timeout
PUT/integration/payment_session_timeoutUpdate 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 }),
});

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.