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

이 스킬 정보

적합한 상황: Ideal for AI agents that need sdk job management. 현지화된 요약: Bankr x402 SDK - Job Management helps AI agents handle repository-specific developer workflows with documented implementation details.

기능

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

적합한 상황: Ideal for AI agents that need sdk job management. 현지화된 요약: Bankr x402 SDK - Job Management helps AI agents handle repository-specific developer workflows with documented implementation details.

이 스킬을 사용하는 이유

추천 설명: 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.

최적의 용도

적합한 상황: Ideal for AI agents that need sdk job management.

실행 가능한 사용 사례 for Bankr x402 SDK - Job Management

사용 사례: Applying SDK Job Management
사용 사례: Applying Manage asynchronous jobs: submit, poll, check status, cancel, and batch operations
사용 사례: Applying Method Description Use Case

! 보안 및 제한 사항

  • 제한 사항: Requires repository-specific context from the skill documentation
  • 제한 사항: 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?

적합한 상황: Ideal for AI agents that need sdk job management. 현지화된 요약: 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: 사용 사례: Applying SDK Job Management, 사용 사례: Applying Manage asynchronous jobs: submit, poll, check status, cancel, and batch operations, 사용 사례: 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?

제한 사항: Requires repository-specific context from the skill documentation. 제한 사항: 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

관련 스킬

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

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자