Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Install and integrate Tether's Wallet Development Kit (WDK) into any project. Supports Node.js, React Native, and browser environments. Use when the user wants to build self-custodial wallets, integrate multi-chain cryptocurrency support, or perform blockchain operations like sending transactions, token swaps, cross-chain bridges, or DeFi lending. --- name: wdk-skill description: Install and integrate Tether's Wallet Development Kit (WDK) into any project. Supports Node.js, React Native, and browser environments. Use when the user wants to build self-custodial wallets, integrate multi-chain cryptocurrency support, or perform blockchain operations like sending transactions, token swaps, cross-chain bridges, or DeFi lending. license: Apache-2.0 compatibility: Re Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Freshness
Last checked 4/14/2026
Best For
wdk-skill is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Install and integrate Tether's Wallet Development Kit (WDK) into any project. Supports Node.js, React Native, and browser environments. Use when the user wants to build self-custodial wallets, integrate multi-chain cryptocurrency support, or perform blockchain operations like sending transactions, token swaps, cross-chain bridges, or DeFi lending. --- name: wdk-skill description: Install and integrate Tether's Wallet Development Kit (WDK) into any project. Supports Node.js, React Native, and browser environments. Use when the user wants to build self-custodial wallets, integrate multi-chain cryptocurrency support, or perform blockchain operations like sending transactions, token swaps, cross-chain bridges, or DeFi lending. license: Apache-2.0 compatibility: Re
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 14, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 14, 2026
Vendor
Juancguerrerodev
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Setup snapshot
git clone https://github.com/juancguerrerodev/WDK-SKILL.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Juancguerrerodev
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
npm install @tetherto/wdk
typescript
import { WDK } from '@tetherto/wdk';
// Initialize with a 12-word seed phrase
const seed = 'your twelve word seed phrase here ...';
const wdk = new WDK(seed);typescript
import { WalletManagerEvm } from '@tetherto/wdk-wallet-evm';
import { WalletManagerTon } from '@tetherto/wdk-wallet-ton';
wdk
.registerWallet('ethereum', WalletManagerEvm, { rpcUrl: 'https://...' })
.registerWallet('ton', WalletManagerTon, { rpcUrl: 'https://...' });typescript
// Get account by index
const ethAccount = await wdk.getAccount('ethereum', 0);
// Get account by BIP32 path
const tonAccount = await wdk.getAccountByPath('ton', "1'/2/3");
// Send transaction
await ethAccount.sendTransaction({
to: '0x...',
value: '1000000000000000000', // 1 ETH in wei
});text
- package.json exists? → Node.js/React project - app.json or expo exists? → React Native/Expo - index.html without package.json? → Browser/Vanilla JS - No project files? → Create new project
bash
npm install @tetherto/wdk # Install wallet modules as needed: npm install @tetherto/wdk-wallet-evm # For Ethereum/Polygon/Arbitrum npm install @tetherto/wdk-wallet-ton # For TON npm install @tetherto/wdk-wallet-btc # For Bitcoin npm install @tetherto/wdk-wallet-tron # For TRON npm install @tetherto/wdk-wallet-sol # For Solana
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Install and integrate Tether's Wallet Development Kit (WDK) into any project. Supports Node.js, React Native, and browser environments. Use when the user wants to build self-custodial wallets, integrate multi-chain cryptocurrency support, or perform blockchain operations like sending transactions, token swaps, cross-chain bridges, or DeFi lending. --- name: wdk-skill description: Install and integrate Tether's Wallet Development Kit (WDK) into any project. Supports Node.js, React Native, and browser environments. Use when the user wants to build self-custodial wallets, integrate multi-chain cryptocurrency support, or perform blockchain operations like sending transactions, token swaps, cross-chain bridges, or DeFi lending. license: Apache-2.0 compatibility: Re
This skill helps you integrate Tether's Wallet Development Kit (WDK) into any project. WDK is an open-source toolkit for building secure, multi-chain, self-custodial wallets.
npm install @tetherto/wdk
import { WDK } from '@tetherto/wdk';
// Initialize with a 12-word seed phrase
const seed = 'your twelve word seed phrase here ...';
const wdk = new WDK(seed);
import { WalletManagerEvm } from '@tetherto/wdk-wallet-evm';
import { WalletManagerTon } from '@tetherto/wdk-wallet-ton';
wdk
.registerWallet('ethereum', WalletManagerEvm, { rpcUrl: 'https://...' })
.registerWallet('ton', WalletManagerTon, { rpcUrl: 'https://...' });
// Get account by index
const ethAccount = await wdk.getAccount('ethereum', 0);
// Get account by BIP32 path
const tonAccount = await wdk.getAccountByPath('ton', "1'/2/3");
// Send transaction
await ethAccount.sendTransaction({
to: '0x...',
value: '1000000000000000000', // 1 ETH in wei
});
When the user wants to set up WDK, follow these steps:
Check the project to determine the environment:
- package.json exists? → Node.js/React project
- app.json or expo exists? → React Native/Expo
- index.html without package.json? → Browser/Vanilla JS
- No project files? → Create new project
For Node.js/TypeScript:
npm install @tetherto/wdk
# Install wallet modules as needed:
npm install @tetherto/wdk-wallet-evm # For Ethereum/Polygon/Arbitrum
npm install @tetherto/wdk-wallet-ton # For TON
npm install @tetherto/wdk-wallet-btc # For Bitcoin
npm install @tetherto/wdk-wallet-tron # For TRON
npm install @tetherto/wdk-wallet-sol # For Solana
For React Native/Expo:
npx expo install @tetherto/wdk
npx expo install @tetherto/wdk-wallet-evm
# Additional wallet modules as needed
For Browser:
<script src="https://unpkg.com/@tetherto/wdk/dist/wdk.browser.js"></script>
Create a wdk.config.ts file:
import { WDK } from '@tetherto/wdk';
import { WalletManagerEvm } from '@tetherto/wdk-wallet-evm';
export function createWDK(seed: string) {
const wdk = new WDK(seed);
wdk.registerWallet('ethereum', WalletManagerEvm, {
rpcUrl: process.env.ETH_RPC_URL || 'https://eth.llamarpc.com',
chainId: 1,
});
return wdk;
}
Create .env file:
ETH_RPC_URL=https://eth.llamarpc.com
POLYGON_RPC_URL=https://polygon.llamarpc.com
# Add other RPC URLs as needed
// src/services/wallet.ts
import { WDK } from '@tetherto/wdk';
import { WalletManagerEvm } from '@tetherto/wdk-wallet-evm';
let wdkInstance: WDK | null = null;
export function getWDK(seed: string): WDK {
if (!wdkInstance) {
wdkInstance = new WDK(seed)
.registerWallet('ethereum', WalletManagerEvm, {
rpcUrl: process.env.ETH_RPC_URL,
});
}
return wdkInstance;
}
export async function getBalance(seed: string, accountIndex: number) {
const wdk = getWDK(seed);
const account = await wdk.getAccount('ethereum', accountIndex);
return account.getBalance();
}
// src/hooks/useWallet.ts
import { useState, useEffect } from 'react';
import { WDK } from '@tetherto/wdk';
import { WalletManagerEvm } from '@tetherto/wdk-wallet-evm';
import * as SecureStore from 'expo-secure-store';
export function useWallet() {
const [wdk, setWdk] = useState<WDK | null>(null);
const [account, setAccount] = useState(null);
useEffect(() => {
async function init() {
const seed = await SecureStore.getItemAsync('wallet_seed');
if (seed) {
const instance = new WDK(seed)
.registerWallet('ethereum', WalletManagerEvm, {
rpcUrl: 'https://eth.llamarpc.com',
});
setWdk(instance);
const acc = await instance.getAccount('ethereum', 0);
setAccount(acc);
}
}
init();
}, []);
return { wdk, account };
}
// src/lib/wdk.ts
import { WDK } from '@tetherto/wdk';
import { WalletManagerEvm } from '@tetherto/wdk-wallet-evm';
export function initWDK(seed: string): WDK {
return new WDK(seed)
.registerWallet('ethereum', WalletManagerEvm, {
rpcUrl: 'https://eth.llamarpc.com',
})
.registerWallet('polygon', WalletManagerEvm, {
rpcUrl: 'https://polygon.llamarpc.com',
chainId: 137,
});
}
const account = await wdk.getAccount('ethereum', 0);
const txHash = await account.sendTransaction({
to: '0xRecipientAddress',
value: '1000000000000000000', // Amount in wei
// Optional: data, gasLimit, gasPrice
});
console.log('Transaction sent:', txHash);
import { SwapProtocolParaswap } from '@tetherto/wdk-swap-paraswap';
// Register the swap protocol
wdk.registerProtocol('paraswap', SwapProtocolParaswap, {
apiKey: process.env.PARASWAP_API_KEY,
});
// Execute swap
const account = await wdk.getAccount('ethereum', 0);
const swap = account.getSwapProtocol('paraswap');
await swap.swap({
srcToken: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48', // USDC
destToken: '0xdAC17F958D2ee523a2206206994597C13D831ec7', // USDT
amount: '1000000000', // 1000 USDC (6 decimals)
slippage: 1, // 1%
});
import { BridgeProtocolUSDT0 } from '@tetherto/wdk-bridge-usdt0';
wdk.registerProtocol('usdt0', BridgeProtocolUSDT0, {});
const account = await wdk.getAccount('ethereum', 0);
const bridge = account.getBridgeProtocol('usdt0');
await bridge.bridge({
destChain: 'polygon',
amount: '1000000000', // Amount to bridge
recipient: '0xRecipientOnPolygon',
});
import { LendingProtocolAave } from '@tetherto/wdk-lending-aave';
wdk.registerProtocol('aave', LendingProtocolAave, {
poolAddress: '0x...',
});
const account = await wdk.getAccount('ethereum', 0);
const lending = account.getLendingProtocol('aave');
// Supply assets
await lending.supply({
asset: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48', // USDC
amount: '1000000000',
});
// Borrow assets
await lending.borrow({
asset: '0xdAC17F958D2ee523a2206206994597C13D831ec7', // USDT
amount: '500000000',
});
const feeRates = await wdk.getFeeRates('ethereum');
console.log('Current gas prices:', feeRates);
Ensure all wallet modules are installed:
npm install @tetherto/wdk-wallet-evm @tetherto/wdk-wallet-ton
Check your RPC URL is valid and the network is accessible. Consider using a dedicated RPC provider.
For detailed documentation, see:
references/getting-started.md - Detailed setup guidereferences/api-reference.md - Complete API documentationreferences/platforms/ - Platform-specific guidesreferences/operations/ - Detailed operation guidestemplates/ - Ready-to-use code templatesMachine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/juancguerrerodev-wdk-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/juancguerrerodev-wdk-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/juancguerrerodev-wdk-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/juancguerrerodev-wdk-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/juancguerrerodev-wdk-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/juancguerrerodev-wdk-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/juancguerrerodev-wdk-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/juancguerrerodev-wdk-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/juancguerrerodev-wdk-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T03:11:39.111Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Juancguerrerodev",
"href": "https://github.com/juancguerrerodev/WDK-SKILL",
"sourceUrl": "https://github.com/juancguerrerodev/WDK-SKILL",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-14T22:27:06.198Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/juancguerrerodev-wdk-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/juancguerrerodev-wdk-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-14T22:27:06.198Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/juancguerrerodev-wdk-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/juancguerrerodev-wdk-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to wdk-skill and adjacent AI workflows.