Bankr x402 SDK - Job Management

Submit and track asynchronous SDK jobs with status polling and cancellation.

80|30|Updated Jan 15, 2026
One-click install
npx skills add https://github.com/BankrBot/claude-plugins --skill bankr-x402-sdk-job-management
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Bankr x402 SDK - Job Management
Source: https://github.com/BankrBot/claude-plugins/tree/main/x402-sdk-dev/skills/sdk-job-management
Command: npx skills add https://github.com/BankrBot/claude-plugins --skill bankr-x402-sdk-job-management

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Manage asynchronous SDK operations by submitting jobs, polling status, and handling cancellations or batches.

Core Features & Use Cases

  • Submit and track asynchronous SDK jobs with status polling.
  • Cancel pending or active jobs and perform batch processing.
  • Retrieve status updates for custom polling logic and implement retry flows.

Quick Start

Submit an SDK job and poll for its result until completion.

Frequently Asked Questions about Bankr x402 SDK - Job Management

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage asynchronous SDK jobs that require polling for status updates?

You manage asynchronous SDK jobs by submitting tasks and tracking their lifecycle through structured polling. The Skill automates status checks, applies custom polling logic, and retrieves updates until completion.

How do I submit an SDK job and wait for its result without blocking execution?

To submit an SDK job and wait for results, you use the promptAndWait method. This handles the task submission and automatically polls the job status until the final result is ready.

Can I cancel pending or active asynchronous jobs during batch processing?

Yes, you can cancel pending or active jobs using the cancelJob method. This allows you to stop tasks during batch processing and handle timeouts or unnecessary workflows effectively.

What is the best way to handle batch processing and retries for multiple SDK jobs?

Batch processing and retries are handled by submitting multiple jobs and tracking their status. You can implement custom retry flows and use getJobStatus to monitor each job's lifecycle across the batch.

How do I retrieve status updates for custom polling logic in an async SDK workflow?

You retrieve status updates for custom polling logic using the pollJob and getJobStatus methods. These allow you to check job progress and implement structured retry or cancellation flows.

Do I need specific dependencies to handle job cancellation and timeout handling?

No specific dependencies are required to handle job cancellation and timeouts. The Skill provides a structured API surface with methods like cancelJob to manage these edge cases natively.