Agent skill
nexus-elements-swaps
Install and use the Swaps widget (SwapWidget) from Nexus Elements. Use for cross-chain exact-in or exact-out swaps with intent progress UI.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/nexus-elements-swaps
SKILL.md
Nexus Elements - Swaps
Overview
Install the SwapWidget component for cross-chain swaps with exact-in/out modes, progress UI, and optional callbacks.
Prerequisites
- NexusProvider installed and initialized on wallet connect.
- Wallet connection configured.
Install (shadcn registry)
- Ensure shadcn/ui is initialized (
components.jsonexists). - Ensure registry mapping exists:
"registries": {
"@nexus-elements/": "https://elements.nexus.availproject.org/r/{name}.json"
}
- Install:
npx shadcn@latest add @nexus-elements/swaps
Alternative:
npx shadcn@latest add https://elements.nexus.availproject.org/r/swaps.json
Manual install (no shadcn)
- Download
https://elements.nexus.availproject.org/r/swaps.json. - Create each file in
files[].targetwithfiles[].content. - Install dependencies listed in
dependenciesand eachregistryDependenciesitem.
Usage
import SwapWidget from "@/components/swaps/swap-widget";
<SwapWidget
onStart={() => {}}
onComplete={(amount) => console.log(amount)}
onError={() => console.error("Swap failed")}
/>
SDK flow mapping
- Uses
sdk.swapWithExactIn(...)andsdk.swapWithExactOut(...). - Relies on the swap intent hook (
swapIntent) for confirmation UI. - Progress updates come from
NEXUS_EVENTS.SWAP_STEP_COMPLETE.
Props (SwapsProps)
onStart,onComplete,onError
Notes
- The widget handles exact-in and exact-out modes internally.
- If you need an error message, you can widen the
onErrorsignature inswap-widget.tsxto accept(message?: string).
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?