jiayaoqijia
- 1.5k skills
- 0 followers
- 2 days ago last updated
- ▌ Deepbook Sdk · jiayaoqijia bundleDeepBook V3 TypeScript SDK integration. Use when building trading applications, bots, or scripts that interact with DeepBook pools using the @mysten/deepbook-v3 SDK. Covers client setup, BalanceManager lifecycle, placing limit and market orders, swaps, querying order books, order management, and fee handling. For DeepBook architecture and contract addresses, see the `deepbook-overview` skill. For Move smart contract integration, see the `deepbook-move` skill.
- ▌ Move Objects · jiayaoqijia bundleSui object model — struct declarations, abilities (key/store/copy/drop), object ownership, naming conventions, and dynamic fields.
- ▌ Sui Overview · jiayaoqijia bundleHigh-level overview of what Sui is, how it works, and what the Sui Stack provides. Use when explaining Sui to someone new, comparing Sui to other blockchains (Ethereum, Solana, Bitcoin), discussing the object-centric data model at a conceptual level, choosing which Sui Stack primitives to use (randomness, zkLogin, Walrus, Nautilus, DeepBook, Kiosk, Seal), or exploring what use cases Sui enables (DeFi, gaming, NFTs, identity, social, supply chain). Also use when migrating from Ethereum or Solana to Sui.
- ▌ Jupiter Prediction Market · jiayaoqijia bundleComplete Node.js client for Jupiter Prediction Market API. Use when building AI agents for prediction market trading, portfolio management, or automated trading bots on Solana. Covers: (1) Querying events, markets, orders, positions, payouts, history, and social features, (2) Creating/managing trading positions, (3) Claiming payouts after market settlement, (4) Building autonomous agent workflows for market scanning, opportunity finding, portfolio monitoring, and risk management.
- ▌
- ▌
- ▌
- ▌
- ▌ Earn · jiayaoqijia bundleKuCoin Earn products using the KuCoin API. Query Simple Earn and Structured Earn products. Authentication requires API Key, API Secret, and Passphrase.
- ▌ Spot · jiayaoqijia bundleKuCoin Spot trading using the KuCoin API. Authentication requires API Key, API Secret, and Passphrase.
- ▌ Robinhood For Agents · jiayaoqijia bundleTrade stocks, options, and crypto on Robinhood — dual mode (MCP tools or TypeScript client).
- ▌ Gh Safe · jiayaoqijia bundleUse this skill whenever you are about to run any write `gh` CLI command — `gh pr edit`, `gh pr create`, `gh issue edit`, `gh issue create`, `gh pr comment`, `gh issue comment`, `gh pr close`, `gh pr merge`, `gh release create`, or similar. High-level `gh` commands sometimes fail with "missing required scopes" auth errors even though the underlying GitHub REST API works fine with the same token. This skill makes you automatically fall back to `gh api` instead of stopping to ask the user to re-authenticate. Always invoke before running any mutating `gh` command.
- ▌ Dune Analytics MCP · jiayaoqijia bundleDune Analytics MCP server for executing queries and retrieving on-chain analytics dashboards.
- ▌ Thegraph Token API · jiayaoqijia bundleMCP server for The Graph Token API by Pinax. Provides token data access via ClickHouse backend with SSE and HTTP streaming support.
- ▌
- ▌ Bitget Wallet 2 · jiayaoqijia bundleInteract with Bitget Wallet API for crypto market data, token info, swap quotes, RWA (real-world asset) stock trading, and security audits. Use when the user asks about wallet, token prices, market data, swap/trading quotes, RWA stock discovery and trading, token security checks, K-line charts, or token rankings on supported chains (ETH, SOL, BSC, Base, etc.).
- ▌
- ▌
- ▌
- ▌
- ▌ Nansen Defi Positions · jiayaoqijia bundleWhat DeFi positions does a wallet hold? Protocol-by-protocol breakdown of assets, debts, and rewards across chains.
- ▌ Nansen Token Screener · jiayaoqijia bundleDiscover trending tokens — screener, SM holdings, Nansen indicators, and flow intelligence for promising finds. Use when scanning for new tokens or screening what's hot.
- ▌
- ▌ Canhelp · jiayaoqijia bundleDisplay a human-readable summary of a canister's interface given its mainnet canister ID or a human-readable name. Like --help but for canisters. Only for mainnet canisters — for local canisters, read the generated .did file in your project directly.
- ▌ Vetkeys · jiayaoqijia bundleBuild vetKeys cryptography on the Internet Computer via the vetKD system API and the ic-vetkeys (Rust, Motoko) and @icp-sdk/vetkeys (frontend) libraries: identity-based encryption (IBE), threshold BLS signatures, timelock encryption, symmetric key derivation, and offline public-key derivation. Use when implementing IBE, encrypting to a principal, BLS signing, sealed-bid or timelock schemes, deriving encryption keys on-chain, transport keys, or calling vetkd_public_key / vetkd_derive_key. For access-controlled encrypted key-value storage (password managers, encrypted notes), use the encrypted-maps skill instead. Not for authentication — use internet-identity.
- ▌ Deepbook Move · jiayaoqijia bundleDeepBook V3 Move smart contract integration. Use when writing, reviewing, or debugging Move code that integrates with DeepBook pools — placing orders from on-chain contracts, creating pools, using flash loans, accessing BalanceManager from Move, or composing DeepBook operations in programmable transaction blocks. For DeepBook architecture and contract addresses, see the `deepbook-overview` skill. For TypeScript SDK usage, see the `deepbook-sdk` skill.
- ▌ Frontend Apps · jiayaoqijia bundleSui frontend / dApp development with @mysten/dapp-kit-react (React) and @mysten/dapp-kit-core (Vue, vanilla JS, Svelte, Web Components, other frameworks). Use when building browser apps that connect Sui wallets, query on-chain state, or submit transactions. Covers wallet connection, network switching, transaction execution, query patterns with TanStack React Query, and the specific pitfalls of browser + wallet + async-indexer environments. Pair with the `sui-sdks` skill for @mysten/sui Transaction construction patterns and the `ptbs` skill for PTB semantics.
- ▌ Move Patterns · jiayaoqijia bundleMove design patterns — events, error handling, one-time witness (OTW), capability pattern, and pure functions/composability.
- ▌ Move Security · jiayaoqijia bundleMove smart contract security on Sui. Use when reviewing Move code for security vulnerabilities, designing access control patterns, handling capabilities safely, securing randomness usage, validating invariants, planning upgrade governance, managing keys, or auditing privileged operations. Also use when the user asks about UpgradeCap security, capability revocation, shared object authorization, onchain randomness restrictions, oracle data validation, emergency controls, or frontend transaction signing safety. For Move language fundamentals, see the `sui-move` skill. For object model and ownership, see the `object-model` skill. For publishing and upgrading packages, see the `sui-publish` skill.
- ▌ Func2tolk · jiayaoqijia bundlePort TON smart contracts from FunC (.fc/.func) to modern Tolk (.tolk) with Acton: use acton func2tolk when helpful, then refactor storage/messages/opcodes into typed structs and serialization, implement Acton-style entrypoints, generate wrappers, migrate JS/TS tests to native Tolk tests, and use acton build/test/script/verify/disasm to preserve TL-B compatibility and behavior. Use when asked to convert, port, or modernize FunC contracts into idiomatic Tolk.
- ▌
- ▌
- ▌ Rocketpool Tokens · jiayaoqijia bundleInteract with Rocket Pool token contracts — RPL (governance/staking token) ERC-20 operations, inflation mechanics, old RPL swap, rocketVault balance queries, and L2 token addresses for rETH and RPL on Arbitrum, Optimism, Base, Polygon, zkSync Era, Scroll, Starknet, and Unichain. Supports cast (Foundry CLI) and Ethereum MCP tools on mainnet and Hoodi testnet.
- ▌ Tomorrowdao Agent Skills · jiayaoqijia bundleTomorrowDAO governance, BP, and resource operations for agents.
- ▌ Binance Signal Engine · jiayaoqijia bundleMulti-timeframe crypto technical analysis with scored trading signals, structured trade plans, and position sizing via Binance public API. Use when user asks to "analyze BTC", "what's the signal on ETH/USDT", "crypto analysis", "trade setup for SOL", "scan crypto pairs", "check the trend on BTC", "multi-timeframe analysis", "generate a trading signal", "what's the bias on ETH", "TA on BTC/USDT", "is it a good time to buy BTC", or "position size for a crypto trade".
- ▌
- ▌ Chainlink Feeds MCP · jiayaoqijia bundleChainlink price feeds MCP server for real-time access to decentralized on-chain oracle price data.
- ▌ Solana MCP Official · jiayaoqijia bundleOfficial Solana Developer MCP server. Serves up-to-date documentation across the Solana ecosystem to vibe coders and AI agents via mcp.solana.com.
- ▌
- ▌
- ▌
- ▌
- ▌ Codex · jiayaoqijia bundleUse when the user asks to run Codex CLI (codex exec, codex resume) or references OpenAI Codex for code analysis, refactoring, or automated editing
- ▌
- ▌ Bet Journal · jiayaoqijia bundleTrack your sports bets in a local CSV journal. Calculate ROI, CLV, win rate by sport/bet-type, and identify where you're actually making money.
- ▌ Nft Tracker · jiayaoqijia bundleTrack NFT collection prices, floor prices, and sales data. Supports Ethereum collections including BAYC, MAYC, CryptoPunks, and more.
- ▌
- ▌
- ▌ Mops CLI · jiayaoqijia bundleManage Motoko projects with the mops CLI — toolchain pinning, dependency management, type-checking, building, and linting. Use when working with mops.toml, mops.lock, running mops commands, adding/removing packages, pinning moc or lintoko versions, checking or building canisters, configuring moc flags, or setting up a new Motoko project.
- ▌ Accessing Data · jiayaoqijia bundleHow to read data from the Sui network. Use when choosing or implementing a data access strategy — queries for on-chain state, indexing pipelines, historical lookups, event subscriptions, cross-chain reads, or off-chain blob storage. Covers the two live Sui APIs (gRPC and GraphQL RPC), the Archival Store, the General-Purpose Indexer, the `sui-indexer-alt` custom indexing framework, and Walrus for off-chain blobs.
- ▌ Rocketpool Network · jiayaoqijia bundleInteract with Rocket Pool network infrastructure contracts — RocketStorage address registry, network balances, RPL price oracle, node fees, penalties, governance snapshots, voting delegation, revenue splitting, and network settings. Supports cast (Foundry CLI) and Ethereum MCP tools on mainnet and Hoodi testnet.
- ▌ Venus Protocol Ops · jiayaoqijia bundleAnalyze Venus Protocol lending/borrowing positions on BNB Chain with risk-first guidance. Use when users ask about Venus markets, collateral/borrow decisions, health factor, liquidation risk, APY/utilization comparison, isolated pools, or "can I borrow X safely" style what-if checks.
- ▌
- ▌
- ▌ Kraken Shared · jiayaoqijia bundleShared runtime contract for kraken-cli: auth, invocation, parsing, and safety.
- ▌ Assets · jiayaoqijia bundleKuCoin Assets management using the KuCoin API. Account information, balances, deposits, withdrawals, sub-accounts, and fee rates. Authentication requires API Key, API Secret, and Passphrase.
- ▌ Broker · jiayaoqijia bundleKuCoin Broker and Affiliate using the KuCoin API. Affiliate invite management, commission queries, Broker Pro user management, and ND (Exchange) Broker queries. Authentication requires API Key, API Secret, and Passphrase.
- ▌ Okx Audit Log · jiayaoqijia bundleUse this skill when the user asks to export audit logs, find audit log location, view command history, 导出日志, 查看日志, 日志路径, 操作记录, 调用记录, 命令历史. Do NOT use for wallet balance, token search, swap, or any other on-chain operation — use the corresponding skill instead.
- ▌ Okx Dex Token 2 · jiayaoqijia bundleUse this skill for token-level data: cluster overview, search tokens, trending/hot tokens (热门, 代币榜单), liquidity pools, holder distribution (whale/巨鲸, sniper, bundler percent), token safety and honeypot risk (貔貅盘, 'is this token a honeypot', 'is this safe to buy', 'rugged?', 'can I sell this'), who created a token, recent buy/sell activity, top profit addresses, trade history by wallet type, or holder cluster analysis (持仓集中度, rug pull probability/跑路风险, new wallet percentage/新钱包持仓比例, suspicious holding percentage/可疑持仓%, bundle hold percent, holder clusters, 'are top holders in same cluster'). Invoke on user intent; address can be provided after. Do NOT use for market-wide whale/signal tracking — use okx-dex-signal. Do NOT use for meme/pump.fun launch scanning, dev reputation, or bundle detection — use okx-dex-trenches. Do NOT use for personal DEX trade history or price charts — use okx-dex-market.
- ▌ Scale To 1m · jiayaoqijia bundleStep-by-step prompts to prepare free-crypto-news for 1M+ concurrent users. Covers database, job queues, WebSocket scaling, CDN caching, observability, load testing, DDoS protection, graceful degradation, API gateway, multi-region deployment, and disaster recovery.
- ▌ Tatum Blockchain MCP · jiayaoqijia bundleMCP server providing access to the Tatum Blockchain Data API and RPC Gateway, enabling LLMs to read and write blockchain data across 130+ networks.
- ▌ Gemini · jiayaoqijia bundleUse when the user asks to run Gemini CLI for code review, plan review, or big context (>200k) processing. Ideal for comprehensive analysis requiring large context windows. Uses Gemini 3 Pro by default for state-of-the-art reasoning and coding.
- ▌
- ▌
- ▌
- ▌ Crypto Liquidations MCP · jiayaoqijia bundleReal-time crypto liquidation events monitoring. Track leveraged position liquidations across major exchanges and DeFi protocols.
- ▌
- ▌ Your Skill Name · jiayaoqijia bundleReplace with a trigger-style description of when this skill should activate. Be specific — this is what the agent uses to decide whether to load the skill. Example: "Sui TypeScript SDK integration. Use when writing, reviewing, or debugging TypeScript code that interacts with Sui RPCs, transactions, or on-chain state."
- ▌
- ▌
- ▌ Bitget · jiayaoqijia bundleUse this skill whenever the user wants to check prices, manage account balances, place or cancel orders, manage futures or spot positions, set leverage, transfer funds, check funding rates, use demo/paper trading, or do anything else on the Bitget exchange. Invoke this skill even when the user doesn't say "Bitget" by name — action phrases like "check my open orders", "cancel my BTC position", "move USDT to futures", "what's my P&L", "place a market sell", "how much can I withdraw", "show my positions", "set leverage to 10x", "what's the funding rate" all require this skill. Also invoke for Chinese-language trading requests such as "查看我的账户", "下一个限价单", "查看持仓盈亏", "转账到合约账户", "BTC现在多少钱" — these are Bitget operations even without the exchange name. Always invoke this skill before attempting any exchange trading task from scratch.
- ▌ Convert · jiayaoqijia bundleKuCoin Convert using the KuCoin API. Get conversion quotes, query convert order details and history. Authentication requires API Key, API Secret, and Passphrase.
- ▌
- ▌ Manage Sources · jiayaoqijia bundleUse when user asks to "add a source", "add docs", "ingest a site", "add this repo to the corpus", "remove a source", "disable a source", or gives a documentation URL to include in the Solana MCP index. Edits ingestion/sources.yaml, validates with pnpm gen:sources, and opens a PR.
- ▌
- ▌
- ▌ Dfs Optimizer · jiayaoqijia bundleBuild optimal Daily Fantasy Sports lineups for DraftKings and FanDuel. Maximize projected points under salary cap constraints for NBA, NFL, and MLB slates.
- ▌
- ▌ Sns Launch · jiayaoqijia bundleConfigure and launch an SNS DAO to decentralize a dapp. Covers token economics, governance parameters, testflight validation, NNS proposal submission, and decentralization swap. Use when launching an SNS, configuring tokenomics, or setting up DAO governance for a dapp. Do NOT use for NNS governance or general canister management.
- ▌ Sui For Ethereum · jiayaoqijia bundleMigrating from Ethereum/EVM/Solidity to Sui Move. Use when the user is an Ethereum developer learning Sui, comparing Solidity patterns to Move equivalents, asking about differences between EVM and MoveVM, mapping Ethereum token standards to Sui standards, or translating access control, state storage, contract upgrade, or composability patterns from Ethereum to Sui.
- ▌ Sui Move Project · jiayaoqijia bundleMove project setup and configuration on Sui. Use this skill when the user needs to create a Move project, configure Move.toml, resolve dependency or build errors, set up the canonical sui-stack-hello-world project, use MVR dependencies, or migrate from old Move.toml formats. Also use when the user sees errors about "legacy system name", "old dependencies", "Cannot upgrade package without having a published id", edition mismatches, or asks about Move.toml, Published.toml, Move.lock, or the [environments] section.
- ▌ Sui Networks Gas · jiayaoqijia bundleSui network environments and gas economics. Use when the user asks about Mainnet, Testnet, Devnet, or Localnet differences, gas cost calculations (computation + storage - rebate), gas budgets, epochs, or how the Sui network operates at a high level. This skill covers network concepts, not CLI commands. For CLI client setup, address management, faucets, and explorers, see the `sui-client` skill. For installing the Sui CLI, see the `sui-install` skill.
- ▌ Sui Object Model · jiayaoqijia bundleDeep reference for the Sui object model: ownership types, object abilities, dynamic fields, collections, versioning, transfer patterns, and derived objects. Use this skill whenever the user asks about Sui objects, object ownership (address-owned, shared, immutable, wrapped), how to transfer or share or freeze objects, dynamic fields vs dynamic object fields, Table vs Bag vs VecMap, object versioning, wrapping and unwrapping, the Receiving type, custom transfer rules, hot potato pattern, capability pattern, object deletion, Object Display, or how to model data (inventories, registries, nested items) in Sui Move. Also use when the user needs to choose between ownership types or storage patterns for their use case.
- ▌ Swap Build · jiayaoqijia bundleThis skill should be used when the user asks to "swap-build", "build a swap transaction", "build swap calldata", "create swap tx", "swap tokens", "trade crypto", "execute a token exchange", "swap ETH to USDC", "convert tokens", or needs encoded calldata for on-chain submission. Fetches the best route and builds transaction data via KyberSwap Aggregator.
- ▌ Binance Arbitrage Finder · jiayaoqijia bundleFind arbitrage opportunities between Binance and other exchanges. Each call charges 0.001 USDT via SkillPay.
- ▌ Binance Stat Arb Monitor · jiayaoqijia bundleBinance 统计套利监控系统。基于 ETH/BTC 永续合约价格比率计算 z-score,生成均值回归交易信号并推送到 Telegram 或飞书。 使用场景: (1) 监控统计套利机会(ETH/BTC 比率偏离均值) (2) 计算 z-score 判断开仓/平仓时机 (3) 生成交易信号(OPEN/CLOSE) (4) 通过 Telegram Channel 或飞书推送信号 (5) 记录信号历史用于回测分析 数据来源:Binance USDT 合约公共 API(无需认证即可获取行情数据)
- ▌ Bitfinex Lending Monitor · jiayaoqijia bundleMonitor Bitfinex lending (funding) performance via API. Use when the user asks to check Bitfinex funding收益/借贷利息, automate daily收益统计, or avoid opening the Bitfinex app for lending status.
- ▌ Cdcx Advanced · jiayaoqijia bundleAdvanced contingency orders — OCO, OTO, OTOCO. Triggered orders with linked cancellation logic.
- ▌ Plan Export · jiayaoqijia bundleExport a detailed phased implementation plan for a GitHub issue to a file, reading all applicable rules from .cursor/rules before planning
- ▌ Coingecko MCP Official · jiayaoqijia bundleOfficial CoinGecko MCP server for AI assistants to interact with the CoinGecko API. Provides cryptocurrency market data including prices, token info, and market analytics.
- ▌ Coin Research · jiayaoqijia bundleConduct comprehensive research on any cryptocurrency by pulling coin-specific news, market data, on-chain metrics, trading signals, and sentiment into a structured investment brief. Use when the user wants to understand a specific coin before making a decision. Powered by the free-crypto-news API.
- ▌ E2e Test · jiayaoqijia bundleDeprecated. Use testing/mobile-testing instead — Appium via references/appium-e2e.md. Kept as a redirect stub for older installs and --include paths.
- ▌ Streak Tracker · jiayaoqijia bundleTrack hot and cold streaks for sports teams and players. Identify momentum patterns, ATS performance trends, and regression-to-mean signals.
- ▌
- ▌ Icrc Ledger · jiayaoqijia bundleDeploy and interact with ICRC-1/ICRC-2 token ledgers (ICP, ckBTC, ckETH). Covers transfers, balances, approve/transferFrom allowances, fee handling, and ledger deployment. Use when working with ICP transfers, token transfers, balances, ICRC-1, ICRC-2, approve, allowance, or any fungible token on IC. Do NOT use for ckBTC minting or BTC deposit/withdrawal flows — use ckbtc instead.
- ▌ Static Site · jiayaoqijia bundleDeploy a frontend or any static site to the IC with the @dfinity/static-site recipe (the certified-assets canister). Covers icp.yaml recipe config, SPA routing with _redirects, custom headers/CSP with _headers, clean URLs, access protection for private apps, custom domains, and building against canister IDs. This is the recommended way to host frontends and static files on the IC. Also the entry point for the legacy @dfinity/asset-canister recipe and .ic-assets.json5 (see the legacy reference) and for migrating an existing asset canister to certified-assets. Use when hosting a frontend, deploying static files, an asset canister, or setting up SPA routing on the IC. Do NOT use for canister-level HTTP code patterns or custom domain DNS setup — use custom-domains for DNS.
- ▌ Move Unit Testing · jiayaoqijia bundleUse when writing unit tests for Move smart contracts on Sui. Applies to test function naming, assertions, test attributes, context usage, and cleanup patterns. Use whenever user asks to write tests, add tests, or test a Move module.
- ▌ Sui Agent Wallets · jiayaoqijia bundleGiving an autonomous agent a wallet on Sui that it cannot drain. Use when writing, reviewing, or debugging code where an AI agent holds funds, signs transactions, or acts on a user's behalf on Sui, and when the task involves spend limits, human approval steps, scoped delegation, or signing across Sui and other chains from one account.
- ▌ Rocketpool · jiayaoqijia bundleInteract with Rocket Pool protocol contracts on Ethereum mainnet and Hoodi testnet. Use for any task involving rETH (liquid staking token), RPL (governance token), ETH staking, minting/burning rETH, checking exchange rates, node operator registration, minipool/megapool management, RPL staking, governance proposals, voting, rewards claiming, deposit pool queries, network balances, smoothing pool, or any Rocket Pool smart contract interaction. Supports both cast (Foundry CLI) and Ethereum MCP tools.
- ▌ Rocketpool Governance · jiayaoqijia bundleInteract with Rocket Pool governance contracts — protocol DAO (pDAO) proposals and voting, oracle DAO (oDAO) membership and proposals, security council operations, and all DAO settings contracts. Supports cast (Foundry CLI) and Ethereum MCP tools on mainnet and Hoodi testnet.