Bankr x402 SDK - Job Management — for Claude Code Bankr x402 SDK - Job Management, hyperliquid-trading-firm, community, for Claude Code, ide skills, promptAndWait(), prompt(), pollJob(), getJobStatus(), cancelJob()

v1.1.0

À propos de ce Skill

Scenario recommande : Ideal for AI agents that need sdk job management. Resume localise : Bankr x402 SDK - Job Management helps AI agents handle repository-specific developer workflows with documented implementation details.

Fonctionnalités

SDK Job Management
Manage asynchronous jobs: submit, poll, check status, cancel, and batch operations.
Method Description Use Case
-------- ------------- ----------
promptAndWait() Submit and wait for result Recommended for most cases

# Core Topics

enuno enuno
[1]
[0]
Updated: 4/8/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
63
Canonical Locale
en
Detected Body Locale
en

Scenario recommande : Ideal for AI agents that need sdk job management. Resume localise : Bankr x402 SDK - Job Management helps AI agents handle repository-specific developer workflows with documented implementation details.

Pourquoi utiliser cette compétence

Recommandation : Bankr x402 SDK - Job Management helps agents sdk job management. Bankr x402 SDK - Job Management helps AI agents handle repository-specific developer workflows with documented implementation details.

Meilleur pour

Scenario recommande : Ideal for AI agents that need sdk job management.

Cas d'utilisation exploitables for Bankr x402 SDK - Job Management

Cas d'usage : Applying SDK Job Management
Cas d'usage : Applying Manage asynchronous jobs: submit, poll, check status, cancel, and batch operations
Cas d'usage : Applying Method Description Use Case

! Sécurité et Limitations

  • Limitation : Requires repository-specific context from the skill documentation
  • Limitation : Works best when the underlying tools and dependencies are already configured

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is Bankr x402 SDK - Job Management?

Scenario recommande : Ideal for AI agents that need sdk job management. Resume localise : Bankr x402 SDK - Job Management helps AI agents handle repository-specific developer workflows with documented implementation details.

How do I install Bankr x402 SDK - Job Management?

Run the command: npx killer-skills add enuno/hyperliquid-trading-firm/Bankr x402 SDK - Job Management. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for Bankr x402 SDK - Job Management?

Key use cases include: Cas d'usage : Applying SDK Job Management, Cas d'usage : Applying Manage asynchronous jobs: submit, poll, check status, cancel, and batch operations, Cas d'usage : Applying Method Description Use Case.

Which IDEs are compatible with Bankr x402 SDK - Job Management?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for Bankr x402 SDK - Job Management?

Limitation : Requires repository-specific context from the skill documentation. Limitation : Works best when the underlying tools and dependencies are already configured.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add enuno/hyperliquid-trading-firm/Bankr x402 SDK - Job Management. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use Bankr x402 SDK - Job Management immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

Bankr x402 SDK - Job Management

Install Bankr x402 SDK - Job Management, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before...

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

SDK Job Management

Manage asynchronous jobs: submit, poll, check status, cancel, and batch operations.

SDK Methods

MethodDescriptionUse Case
promptAndWait()Submit and wait for resultRecommended for most cases
prompt()Submit, return immediatelyBackground processing
pollJob()Poll until job completesManual job tracking
getJobStatus()Check status onceCustom polling logic
cancelJob()Cancel pending/processing jobStop unwanted jobs

Job Lifecycle

pending → processing → completed
                    ↘ failed
                    ↘ cancelled
StateCancellableDescription
pendingYesAwaiting processing
processingYesActively processing
completedNoFinished successfully
failedNoEncountered error
cancelledNoCancelled by user

Usage Examples

typescript
1const result = await client.promptAndWait({ 2 prompt: "Swap 0.1 ETH to USDC", 3 timeout: 60000, 4}); 5 6if (result.status === "completed") { 7 console.log(result.response); 8}

Manual Job Control

typescript
1// Submit without waiting 2const { jobId } = await client.prompt({ prompt: "What are trending tokens?" }); 3 4// Check status later 5const status = await client.getJobStatus(jobId); 6 7// Or poll until complete 8const result = await client.pollJob({ jobId, timeout: 60000 });

Cancel Job

typescript
1const { jobId } = await client.prompt({ prompt: "..." }); 2await client.cancelJob(jobId);

Batch Processing

typescript
1const prompts = ["Price of ETH", "Price of BTC", "Price of SOL"]; 2 3// Submit all in parallel 4const jobs = await Promise.all( 5 prompts.map(prompt => client.prompt({ prompt })) 6); 7 8// Wait for all to complete 9const results = await Promise.all( 10 jobs.map(job => client.pollJob({ jobId: job.jobId })) 11);

Timing Guidelines

OperationTypical TimeRecommended Timeout
Price queries2-5s15s
Balance checks2-5s15s
Token swaps5-15s60s
Cross-chain bridges10-30s120s
NFT operations5-15s60s
  • sdk-wallet-operations: Client setup and configuration
  • sdk-capabilities: Full list of supported operations

Compétences associées

Looking for an alternative to Bankr x402 SDK - Job Management or another community skill for your workflow? Explore these related open-source skills.

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

Resume localise : 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Resume localise : Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and

flags

Logo of vercel
vercel

Resume localise : The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Resume localise : Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Développeur