
starchild-ai-agent/official-skills
112 skills167k installs2k starsGitHub
Install
npx skills add https://github.com/starchild-ai-agent/official-skillsSkills in this repo
1CoinglassCoinglass provides 37 tools spanning derivatives analytics, liquidation heatmaps, long/short ratios, whale tracking on Hyperliquid, volume/flow analysis, and ETF flows (BTC/ETH/SOL/XRP). Developers integrate this via Python exports (funding_rate, cg_liquidations, cg_open_interest, etc.) to monitor leveraged trader positioning across 20+ exchanges, track forced liquidations with price-level granularity, follow institutional movements via whale alerts and on-chain transfers, and measure institutional Bitcoin/Ethereum adoption through US and Hong Kong ETF flows. Common workflows combine 3-5 tools for multi-metric confirmation: funding rates + long/short ratios + liquidation heatmaps reveal positioning extremes; CVD + taker volume + whale alerts signal smart money direction; ETF flows + whale transfers + open interest track institutional conviction.11.3kinstalls2Wallet| --- name: wallet version: 3.6.0 description: | Multi-chain wallet: EVM and Solana balances, transfers, signing, and policy. Use when checking balances, sending tokens, signing typed data, or proposing a wallet policy (e.g. send 10 USDC on Base, sign EIP-712, Solana balance). author: starchild tags: [wallet, evm, solana, transfer, sign, policy, debank, birdeye] delivery: script metadata: starchild: emoji: 💰 skillKey: wallet --- # 💰 Wallet Skill Multi-chain wallet for EVM (DeBank-supported chains) + Solana. Balances, transfers, signing, and policy management. **Script skill** - call the functions below via bash; no wallet tools are registered. ## How to call All read/transfer/sign operations are Python functions in `core.skill_tools.wallet`. Run them from bash and read the JSON result: ```bash python3 -c "from core.skill_tools import wallet; import json; print(json.dumps(wallet.wallet_balance(chain='base')))" ``` The **one** operation that is NOT a script function is proposing a wallet policy - it needs to render a confirmation card in the UI, so it goes through the native `frontend_action` tool (see Policy Management below).8.6kinstalls3Hyperliquid| --- name: hyperliquid version: 1.5.0 description: | Trade perp futures, spot, and RWA on Hyperliquid DEX with up to asset max leverage. Use when placing perp or spot orders, setting TP/SL, or moving funds on Hyperliquid (e.g. long BTC 5x, sell ETH, deposit USDC, set stop). delivery: script tools: - hl_account - hl_balances - hl_total_balance - hl_open_orders - hl_market - hl_orderbook - hl_fills - hl_candles - hl_funding - hl_order - hl_spot_order - hl_tpsl_order - hl_cancel - hl_cancel_all - hl_modify - hl_leverage - hl_transfer_usd - hl_withdraw - hl_deposit metadata: starchild: emoji: "📈" skillKey: hyperliquid requires: env: [WALLET_SERVICE_URL] user-invocable: true disable-model-invocation: false --- # Hyperliquid Trading Trade perpetual futures and spot tokens on Hyperliquid, a fully on-chain decentralized exchange. Orders are signed using this agent's EVM wallet and submitted directly to the Hyperliquid L1. ## Prerequisites Before trading, the wallet policy must be active. Load the **wallet-policy** skill and propose the standard wildcard policy (deny key export + allow `*`). This covers all Hyperliquid operations - USDC deposits, EIP-712 order signing, and withdrawals.8.4kinstalls4Coingecko| --- name: coingecko version: 2.0.4 description: | Crypto spot prices, OHLC charts, market discovery, and global stats. Use when looking up coin prices, market caps, trending coins, sector rankings, or comparing tokens (e.g. BTC price, ETH chart, top gainers). delivery: script metadata: starchild: emoji: 🦎 skillKey: coingecko requires: env: - COINGECKO_API_KEY user-invocable: false disable-model-invocation: false --- ## Script Usage Script-mode skill - read this file, then invoke from a `bash` block: ```bash python3 - <<'EOF' import sys, json sys.path.insert(0, "/data/workspace/skills/coingecko") from exports import coin_price, cg_trending, cg_global print(coin_price(coin_ids="bitcoin,ethereum")) print(cg_trending()) EOF ``` Read `exports.py` for the full list of available functions. Common ones: `coin_price`, `coin_ohlc`, `coin_chart`, `cg_trending`, `cg_top_gainers_losers`, `cg_new_coins`, `cg_global`, `cg_global_defi`, `cg_categories`, `cg_derivatives`, `cg_coins_markets`, `cg_coin_data`, `cg_coin_tickers`, `cg_search`, `cg_token_price`, `cg_coin_by_contract`. # CoinGecko Skill ## Function Reference (signatures) All public functions are in `exports.py`. `coin_id` is the Coin7.7kinstalls5Twittertwitter is a script-mode Starchild skill exposing thirteen read-only functions against twitterapi.io through sc-proxy, covering tweets, users, followers, replies, threads, quotes, articles, and trends. Agents invoke exports via bash and python3 rather than runtime tools, with TWITTER_API_KEY injected server-side on the proxy host. Use it for any x.com or twitter.com URL instead of web_fetch because Twitter blocks scrapers. Core flows include twitter_get_tweets for IDs extracted from status URLs, twitter_user_tweets for recent posts, twitter_search_tweets with operators like from:user, min_faves, and since_time, and twitter_get_trends for trending topics. Billing is per returned item, not per request; last_tweets always bills roughly twenty tweets per call with no page-size lever, so polling should prefer advanced_search windows that bill one item when empty. Error handling covers 402 credits exhausted, 429 rate limits, and 404 user not found without auto-retry.7.7kinstalls6Skill CreatorThe skill-creator skill scaffolds new reusable agent skills with valid frontmatter, directory layout, and starter SKILL.md files. Core principles emphasize concise SKILL.md bodies because context window space is shared with system prompts and conversation history. Progressive disclosure uses three levels: name and description always in available_skills, full SKILL.md loaded on activation, and scripts references assets loaded on demand. Degrees of freedom guide instruction specificity from high freedom text guidance through medium pseudocode to low freedom executable scripts for fragile operations. Anatomy covers SKILL.md plus optional scripts for executable code, references for on-demand docs, and assets for templates not loaded into context. Creation steps include understanding the capability, choosing directories, writing frontmatter with strong trigger descriptions, drafting lean body content, and adding references or scripts as needed. Use when building new skills, wrapping APIs, or scaffolding reusable agent workflows.7.6kinstalls7TwelvedataThe twelvedata skill provides traditional market price data for stocks, forex, and commodities through script-mode Python exports backed by Twelve Data. It is explicitly not for crypto prices. TWELVEDATA_API_KEY is required in the environment for API access. Functions in exports.py include twelvedata_price, twelvedata_quote, and twelvedata_time_series invoked from bash Python blocks with sys.path pointed at the skill directory. Use cases cover AAPL quotes, EUR/USD charts, gold prices, and SPY historical bars. The skill ships as a single exports module with standardized proxied HTTP patterns consistent with other Starchild script-mode skills. Agents import functions directly rather than constructing raw REST calls. Use when users ask for stock quotes, forex rates, commodity prices, or historical traditional market bars excluding cryptocurrency pairs.7.6kinstalls8SkillmarketplaceThe skillmarketplace skill searches, installs, and publishes skills across official, community, and global registries. Agents must use the search_skills tool which checks local installs, Starchild community index, and skills.sh, auto-installing the best match by default via npx skills add. Manual curl GitHub downloads, mkdir skill folders, web_fetch SKILL files, and legacy gateway search endpoints are explicitly forbidden for install flows. Publishing Starchild skills validates SKILL.md frontmatter with name, semver version, description, author, and tags, then obtains an OIDC token and POSTs bundled files to the skills-market-gateway publish endpoint with immutable versions. List installed skills via search_skills with no query; refresh only after manual file edits. New skill creation routes to skill-creator first. Decision tree covers find/install, list, publish, and create intents. Use when finding or sharing skills such as funding rate tools, listing installed skills, or publishing custom skills to the registry.7.1kinstalls9Orderly Onboarding| --- name: orderly-onboarding version: 1.0.2 description: | Orderly Network onboarding: omnichain perps infra, MCP server, SDK and CLI quickstart. Use when starting on Orderly (e.g. install Orderly MCP, set up the DEX template, integrate the React SDK, use the orderly CLI). --- # Orderly Network: Agent Onboarding Orderly is an omnichain orderbook-based trading infrastructure providing perpetual futures liquidity for decentralized exchanges. This skill is your starting point for building on or learning about Orderly Network. ## When to Use - First time encountering Orderly Network - Setting up AI agent tools for Orderly development - Understanding the Orderly ecosystem and offerings - Finding the right skill or resource for your task - Understanding what tools are available for AI agents ## What is Orderly Network Orderly is a combination of an orderbook-based trading infrastructure and a robust liquidity layer offering perpetual futures orderbooks. Unlike traditional platforms, Orderly doesn't have a front end - it operates at the core of the ecosystem, providing essential services to projects built on top.6.8kinstalls10Project BuilderThis Starchild engineering skill (v1.5.8) guides end-to-end software work: discover required skills and platform references, translate vague requests into concrete specs, scaffold shareable projects, build incrementally with verification, and debug systematically. Phase 0 prefers existing skills over raw HTTP, and requires reading sc-proxy, preview-guide, scheduled-tasks-guide, and ui-design before any visual HTML output. Phase 1 maps architectures to scheduled tasks, preview dashboards, inline analysis, or workspace scripts, presents data flow and monthly cost estimates, and blocks Phase 2 until the user approves the plan. Phase 1.5 scaffolds output/projects/{slug}/ with project.yaml, PROJECT.md, .env.example, and typed src/ entry points so community-publish works without migration. Phase 2 enforces build-run-verify cycles, data-template rules where scripts fetch numbers and LLMs write prose, preview_serve plus preview_check for HTML, and dashboard defaults that render real data on first load. Phase 3 follows CHECK LOGS, REPRODUCE, ISOLATE, DIAGNOSE, FIX, VERIFY with a three-strike rule when fixes repeat.5.1kinstalls11Browser PreviewThe browser-preview skill |. Browser Preview You already know preview_serve and preview_stop . This skill fills the gap: what happens after preview_serve returns a URL - how the user actually sees it. What is the Preview Panel The frontend has a right-side panel with three tabs: Files , Preview , and Jobs . The Preview tab renders preview URLs inside an iframe. When you call preview_serve , the frontend automatically opens a Preview tab loading that URL. Key facts: - Each preview_serve call creates one Preview tab - URL format: https://<host /preview/{id}/ - Preview panel has a ⋮ menu (top-right) showing "RUNNING SERVICES" list - Preview tab can be closed by the user without stopping the backend service - Backend service stopping → Preview tab shows an error page ⚠️ CRITICAL: Never Tell Users to Access localhost The user's browser CANNOT access localhost or 127.0.0.1 .4.5kinstalls12ChartingThe charting skill generate TradingView-style candlestick charts with indicators. Use when the user wants a visual chart, price visualization, or technical analysis plot.. Charting ⚠️ CRITICAL: DO NOT CALL DATA TOOLS NEVER call price_chart , get_coin_ohlc_range_by_id , twelvedata_time_series , or ANY market data tools when creating charts. Chart scripts fetch data internally. Calling these tools floods your context with 78KB+ of unnecessary data. Read template from skills/charting/scripts/ 2. Call read_file on the output PNG, then display it using markdown image syntax: !Chart description --- You generate TradingView-quality candlestick charts. Dark theme, clean layout, professional colors. Every chart is a standalone Python script - no internal imports. Additional Rules: - Chart scripts run in workspace and cannot import from core . Use it when developers need charting tasks covered in the upstream ECC or community skill documentation with concrete commands, prerequisites, and workflow steps rather than guessing APIs or conventions.4.4kinstalls13ComposioThe composio skill |. Composio — External App Integration via Gateway Composio lets users connect 1000+ external apps (Gmail, Slack, GitHub, Google Calendar, Notion, etc.) to their Starchild agent. All operations go through the **Composio Gateway** (`composio-gateway.fly.dev`), which handles auth and API key management. Architecture - **You never touch the COMPOSIO_API_KEY** — the gateway holds it - **You never call Composio SDK directly** — use the gateway HTTP API - **Authentication is automatic** — your Fly 6PN IPv6 resolves to a user_id via the billing DB - **No env vars needed** — the gateway Agents should read SKILL.md quick start steps, verify required binaries and environment variables, and follow reference files for exact parameters before calling tools. The workflow includes decision gates, anti-patterns, and cross-links to sibling skills so agents stay aligned with upstream documentation rather than improvising.4.2kinstalls14CoderThe okx skill |. OKX OnChainOS — Skills Directory > **What this file is:** a directory page that points to OKX's official > `onchainos-skills` repo. It contains **no logic of its own** — every sub-skill > below lives upstream at [`okx/onchainos-skills`](https://github.com/okx/onchainos-skills) > and is fetched fresh on install, so you always get the latest version. OKX OnChainOS is a suite of **16 specialized sub-skills** covering on-chain trading, market analytics, smart-money signals, DeFi investing & positions, wallet ops, security scanning, payment protocols, and crypto news & sentiment across 20+ blockchains (Ethereum, Solana, XLayer, Base, BSC, Agents should read SKILL.md quick start steps, verify required binaries and environment variables, and follow reference files for exact parameters before calling tools. The workflow includes decision gates, anti-patterns, and cross-links to sibling skills so agents stay aligned with upstream documentation rather than improvising.4.1kinstalls15Wallet PolicyThe okx skill |. OKX OnChainOS — Skills Directory > **What this file is:** a directory page that points to OKX's official > `onchainos-skills` repo. It contains **no logic of its own** — every sub-skill > below lives upstream at [`okx/onchainos-skills`](https://github.com/okx/onchainos-skills) > and is fetched fresh on install, so you always get the latest version. OKX OnChainOS is a suite of **16 specialized sub-skills** covering on-chain trading, market analytics, smart-money signals, DeFi investing & positions, wallet ops, security scanning, payment protocols, and crypto news & sentiment across 20+ blockchains (Ethereum, Solana, XLayer, Base, BSC, Agents should read SKILL.md quick start steps, verify required binaries and environment variables, and follow reference files for exact parameters before calling tools. The workflow includes decision gates, anti-patterns, and cross-links to sibling skills so agents stay aligned with upstream documentation rather than improvising.4.1kinstalls16Preview DevOKX OnChainOS is a 16-skill suite for on-chain operations spanning trading, market analytics, DeFi positions, wallet management, security scanning, and payment protocols across Ethereum, Solana, Arbitrum, and 17+ other chains. Agents invoke read-only data (prices, charts, token analytics, portfolio holdings) via sc-proxy without API keys, or use the `onchainos` CLI binary for wallet operations and transaction execution. Key workflows include token research, smart-money signal tracking, portfolio analysis, and swap execution. The CLI ships with sandboxed keys for testing; production requires OKX Web3 API credentials. Signing defaults to the agent's platform wallet via the `wallet` skill. 16 specialized sub-skills: discovery (market data, signals, trenches, social), trading (swap, DeFi invest, gateway), wallet (agentic, portfolio), security, payments, ops Dual auth paths: Path A (sc-proxy, no key, read-only) covers ~80% use cases; Path B (CLI + OKX credentials) for wallet ops and transaction execution Cross-chain support: Ethereum, Solana, XLayer, Base, BSC, Arbitrum, Polygon, Optimism, Avalanche, TRON, and 10+ others via human or numeric chain IDs Pre-built workflows: token researc.4kinstalls17Slide CreatorThe slide-creator skill Build 16:9 slide decks as HTML and export to PDF for presentation-ready deliverables. Build slide decks as HTML, export to pixel-perfect 16:9 PDF via headless Chromium. Output format: PDF not Microsoft PowerPoint (.pptx). The PDF preserves exact layout, fonts, and colors across all devices. - CSS layout (Grid/Flexbox) is far more flexible than any PPT editor - Full web typography, gradients, SVG, animations (print degrades gracefully) - Git-friendly, reproducible, scriptable - One command → PDF with exact 16:9 page dimensions Before any other step, identify the presentation scenario. Read references/content-scaffolding.md for full templates. Before any other step, identify the presentation scenario. Read references/content-scaffolding.md for full templates. Scenario keyword Template to use ----------------- ---------------- pitch / investor / fundraising pitch-deck conference / keynote / summit / talk conference-keynote product launch / launch event product-launch report / research / analysis research-report (none of the above) ask user which scenario fits best Each template defines: slide count, page titles, required content per page. If the audience is bi.3.9kinstalls18Web CrawlerThe web-crawler skill Web scraping plus social data: YouTube, TikTok, Instagram, LinkedIn,. Preferred entry: call exports.py (don't hand-roll requests) Ready-made helpers live in skills/web-crawler/exports.py. Prefer them over writing your own proxied_get/proxied_post calls they already inject the proxy credentials, so there is no API key to find (don't read $SCRAPECREATORS_API_KEY / $FIRECRAWL_API_KEY, don't check .env, don't ask the user). ```python import sys; sys.path.insert(0, "/data/workspace/skills/web-crawler") from exports import scrape_markdown, youtube_transcript, sc_get scrape_markdown("https://example.com/article") Firecrawl fallback youtube_transcript("https://youtube.com/watch?v=ID") ScrapeCreators sc_get("/v1/tiktok/profile", handle="charlidamelio") any SC endpoint from exports import archive_fallback paywall / Firecrawl-403 archive_fallback("https://www.nytimes.com/.../article.html") archive snapshot ``` Named Named wrappers exist for the high-frequency actions (YouTube/TikTok transcript & video, IG/Twitter/Reddit posts, profiles, Google/Reddit search). For any other ScrapeCreators endpoint use sc_get(path, params) — it auto-strips leading @/ from handles/hashtags.3.7kinstalls19ChartChart is an interactive web charting skill that generates ECharts-based visualization pages with project-based organization. Developers use it to create time-series trends, category comparisons, OHLCV price analysis, and multi-dimensional dashboards. The skill supports 11 templates (line, bar, pie, candlestick, scatter, dashboard, radar, heatmap, dual-axis, multi-panel, waterfall) stored in dedicated output folders. Each chart project includes an HTML page, reproducible Python generation script, data snapshot, and optional PNG screenshot. Workflows involve picking a template, creating a project folder, building the chart with `build_chart()`, serving via `chart_server.py`, and exporting images via toolbar buttons (Download PNG, Copy Image, Save Image). Data embeds directly in HTML to avoid CORS issues. 11 chart templates: line, bar, candlestick, scatter, dashboard, dual-axis, multi-panel, waterfall, pie, radar, heatmap. Project-based storage: each chart in dedicated folder with index.html, generate.py, data.json, screenshot.png, README.3.7kinstalls20Community PublishCommunity Publish is a Starchild agent skill with three independent sharing actions for projects built on the platform. publish_preview allocates a public URL on community.iamstarchild.com for a running HTTP service without automatically listing it on the dashboard. list_in_dashboard makes an existing preview discoverable in the public Project Dashboard with optional cover, tags, and description. open_source pushes project source to the Starchild community GitHub catalog with semver versioning and validation gates. Visibility is two orthogonal switches: URL access and dashboard discoverability, so agents must call get_listing_status for state questions instead of inferring from past publish calls. The publisher binding in project.yaml cross-links live demos and code repos automatically regardless of publish order. Behavioral rules require showing diffs before open_source, batching env collection on fork, and never conflating list_published_previews with list_open_source datasets. Developers use it when users want to publish, share, distribute, open-source, or check visibility of Starchild projects.3.3kinstalls21User OnboardingThe user-onboarding skill scripts first-session flows for the Starchild personal agent platform. It positions Starchild as a computer-backed assistant that can browse, code, connect services, and automate repeats, while avoiding generic feature menus. Step 0 checks USER.md and MEMORY.md for continuity before choosing a cold opener or a returning-user path. First-time openers anchor identity, free credit, and optional Telegram or WeChat binding, then ask about weekly repeat pain with concrete verbs like email triage or research write-ups. Discovery maps user verbs to underlying automation needs, then the quick-win pattern shows a real sample in chat before any scheduled_task registration. Push-channel binding uses inline wechat qrcode or telegram_bot flows rather than sending users to settings screens. Tone rules enforce language matching, short messages, and bans on tutorial dumps or explaining internal machinery. Memory hooks persist pain points, cadence, and channel preferences after the first concrete result.2.8kinstalls22Agentxagentx is a script skill for the Starchild AgentX community forum, not Twitter or X. Agents call functions in core.skill_tools.agentx from bash and read JSON responses with success flags, ids, and post links. Write actions including create_post, create_thread_post, create_comment, like, repost, follow, set_auto_reply, and upload_image are owner-only; read actions are open to all. The skill enforces never inventing post links: every /post/id must come from a server-confirmed create call tracked in a durable post ledger verified by a guard hook. Platform disambiguation routes tweet requests to Composio TWITTER_CREATION_OF_A_POST instead. Voice rules treat user messages as directives, forbid AI filler openings and closings, and block sensitive credentials in public posts. Resource attachments render rich cards for skills, projects, threads, and worldcup predictions without raw install commands in text. Thread posts chain two to twenty segments when content exceeds roughly five hundred words or needs step-by-step structure. Deletion is unsupported via the skill and must happen through the AgentX profile UI.2.7kinstalls23VideoUse this skill for all video generation requests on Starchild Core principle call the provided scripts Do not re implement proxy billing upload plumbing python exec open skills video generate_video py read result generate_video prompt A cinematic drone shot over snowy mountains at sunrise model balanced budget balanced premium duration 5 result success True cost 0 70 video_url local_path output videos generate_video automatically submits polls fetches result downloads mp4 to output videos Delivering the result to the user IMPORTANT The video agent skill provides documented workflows prerequisites triggers and safety guidance from its SKILL md source Agents load it when user requests match the description and follow step by step instructions without inventing capabilities It integrates with standard agent tooling for the tasks inputs outputs and failure modes described in the repository documentation2.6kinstalls24Byok Custom ModelThe byok-custom-model skill registers custom LLM endpoints in Starchild chat so users supply their own API keys and calls bypass the platform proxy. It ships eleven curated vendors including Anthropic, OpenAI, xAI Grok, Qwen, DeepSeek, Kimi, Gemini, NEAR AI TEE, and Venice, each pre-filled with base_url, wire format, and thinking parameters. The recommended flow matches user intent to add_template(vendor=...) first, then calls request_env_input when need_env_input appears because the script cannot pop the secure key UI itself. Non-curated providers use parse_example on a docs API sample without real keys, then add() writes custom_models.yaml. Critical rules forbid accepting keys pasted in chat, manual edits to custom_models.yaml or workspace/.env, and skipping request_env_input. NEAR AI guidance recommends TEE-protected open-weight models for privacy-sensitive users. Registered models appear as custom/ in the selector and route directly to vendor pricing.2.6kinstalls25Chatgpt Codex OnboardingChatGPT Codex Onboarding connects a ChatGPT subscription to the agent runtime through OAuth device-code flow so openai-codex models appear in the model picker. The flow starts only on explicit user request, returns a verification URL and separate user_code that must never be combined, then waits for user confirmation before polling. After connection, tell the user to refresh the browser because the frontend caches model lists and will not auto-update. Available models include openai-codex/gpt-5-codex, gpt-5, and gpt-5-mini, switched via slash model or the picker. Tokens auto-refresh via refresh_token; on 401 try refresh then logout and restart. API helpers cover start, poll, logout, refresh, models, and usage with ok true or ok false responses. Subsequent calls hit OpenAI directly using the OAuth token, bypassing the platform proxy with subscription limits applying.2.4kinstalls26Xai Grok OnboardingUse any active xAI account X Premium X Premium SuperGrok or SuperGrok Heavy for grok 4 3 grok build 0 1 grok 4 20 and multi agent models No separate API key needed This is standard OAuth 2 0 RFC 8628 Device Authorization Grant not a vendor custom flow The JWT issued by auth x ai carries a tier claim higher tiers unlock more models from v1 models Observed mapping xAI does not publish this officially Tier Subscription Approx model access 1 X Premium 8 mo grok 4 3 baseline 2 X Premium 16 mo grok 4 20 0309 variants 3 SuperGrok 30 mo reasoning models 4 SuperGrok Heavy 300 mo grok build 0 1 multi agent status reports the user s tier so they know which models will be available2.2kinstalls27Image EditThe image edit skill |. Documentation covers workflows, commands, and guardrails agents should follow when users invoke this capability. Key documented areas include **image-edit** → user wants to EDIT, ENHANCE, or TRANSFORM an existing image; **image-portrait** → user wants a portrait with their face/identity preserved from a reference photo; **image-create** → user wants to CREATE something from a text description (no source image); Use each image's `local_path` (e.g. `output/images/xxx.png`) - the script always downloads on success. Reference commands include exec(open('skills/image-edit/edit_image.py').read()); result = edit_image(. Use when developers or agents need structured guidance for image edit tasks with evidence grounded in the bundled SKILL.md rather than generic advice. **image-edit** → user wants to EDIT, ENHANCE, or TRANSFORM an existing image **image-portrait** → user wants a portrait with their face/identity preserved from a reference photo **image-create** → user wants to CREATE something from a text description (no source image) Use each image's `local_path` (e.g. `output/images/xxx.png`) - the script always downloads on success. Tell the user the files are sa.2.1kinstalls28Image PortraitThe image portrait skill |. Documentation covers workflows, commands, and guardrails agents should follow when users invoke this capability. Key documented areas include Use each image's `local_path` (e.g. `output/images/xxx.png`) - the script always downloads on success.; Tell the user the files are saved to `output/images/` and viewable in the workspace file panel.; On Web channel, embed inline so the user can preview in chat:; On Telegram / WeChat: send via `send_to_telegram(file_path="output/images/...", message_type="image")` or `send_to_wechat(file_path="output/images/...", message_type="image")`. Reference commands include exec(open('skills/image-portrait/generate_portrait.py').read()); result = generate_portrait(. Use when developers or agents need structured guidance for image portrait tasks with evidence grounded in the bundled SKILL.md rather than generic advice. Use each image's `local_path` (e.g. `output/images/xxx.png`) - the script always downloads on success. Tell the user the files are saved to `output/images/` and viewable in the workspace file panel. On Web channel, embed inline so the user can preview in chat: On Telegram / WeChat: send via `send_to_telegram(fi.2.1kinstalls29Agent HooksShell hooks let a user run their own script at fixed points in the agent s lifecycle to block a dangerous action rewrite an input or an outbound message inject context into the model or warn the user The script can be written in any language it talks to the agent over a simple JSON on stdin JSON on stdout protocol Reach for hooks when the user wants the agent to automatically enforce a rule or react to an event without being asked each time Examples Stop me from running rm rf destructive bash pre_tool_call block Never let a private key get pushed to Telegram on_outbound_message block Log every tool call for audit post_tool_call observe Remind the agent of X at the start of every model call pre_llm_call context Don t let the agent claim it published when it didn t on_completion_claim in goal or on_stop in normal chat If the answer fails my quality check make the agent redo it on_stop block If the user just wants a one2kinstalls30Wechat BindingThe wechat-binding skill documents WeChat account binding so agents can push messages via send_to_wechat after QR scan pairing. Typical flow is qrcode generation, user scan, qrcode_status poll after user confirms, then connect with bot_token on first bind or reconnect after dropped sessions. Actions table covers status, qrcode, qrcode_status, connect, disconnect, and reconnect with required parameters. Channel-aware QR display routes web inline file_path, Telegram send_to_telegram photo, or instruct web app when user is on WeChat. Critical rules forbid auto-polling qrcode_status before user says scanned, forbid reusing old qrcode ids, never paste bot_token in chat, and confirm before destructive disconnect. connect is first-time binding while reconnect restores prior sessions after ilink expiry. References messaging-channels.md for post-bind sending and analogous tg-bot-binding skill. Use when setting up or repairing WeChat delivery, scan QR, or diagnosing missing WeChat push.2kinstalls31Tg Bot BindingWhen the user asks about Telegram Bot binding setup connection verification or any related topic provide them with the following guide Always respond in the user s language Starchild allows you to connect your own Telegram Bot so you can interact with your AI agent directly in Telegram The binding process involves 3 main steps 1 Create a Bot on Telegram 2 Add the Bot Token in Starchild Dashboard 3 Verify ownership in Telegram Step 1 Create a Telegram Bot via BotFather 1 Open Telegram and search for BotFather the official Telegram bot for creating bots 2 Send newbot to BotFather 3 Follow the prompts Enter a display name for your bot e g My Starchild Agent Enter a username for your bot must end in bot e g my_starchild_bot 4 BotFather will reply with your Bot Token a string like 123456789 ABCdefGHIjklMNOpqrsTUVwxyz Copy this token and keep it safe Do not share it publicly2kinstalls32Image CreateThe image create skill |. Documentation covers workflows, commands, and guardrails agents should follow when users invoke this capability. Key documented areas include **image-create** → user wants to CREATE something from a text description (no face/identity needed); **image-portrait** → user wants a portrait with their face/identity preserved from a reference photo; Use each image's `local_path` (e.g. `output/images/xxx.png`) - the script always downloads on success.; Tell the user the files are saved to `output/images/` and viewable in the workspace file panel. Reference commands include exec(open('skills/image-create/generate_image.py').read()); result = generate_image(. Use when developers or agents need structured guidance for image create tasks with evidence grounded in the bundled SKILL.md rather than generic advice. **image-create** → user wants to CREATE something from a text description (no face/identity needed) **image-portrait** → user wants a portrait with their face/identity preserved from a reference photo Use each image's `local_path` (e.g. `output/images/xxx.png`) - the script always downloads on success. Tell the user the files are saved to `output/images/` and.2kinstalls33Image EcommerceThe image-ecommerce skill is designed for e-commerce product photography: white-background hero shots, lifestyle scenes, flat lay, detail close-ups, packaging shots, group/collection displays, scale references,. image-ecommerce Use this skill for all e-commerce product photography requests on Starchild. Quick start — single product photo (most common) The script reads the local file, base64-encodes it, and sends it to fal.ai as a data URI — no manual URL publishing needed. Invoke when the user asks about image ecommerce or related SKILL.md workflows.1.8kinstalls34Image 3dThe image-3d skill is designed for 3D-style image generation: 3D characters, product renders, isometric dioramas, 3D icons, 3D text, interior design renders, architectural visualization, 3D scenes, game assets. image-3d Use this skill for all 3D-style image generation requests on Starchild. Quick start — category + style only (no custom prompt) 3. Invoke when the user asks about image 3d or related SKILL.md workflows.1.8kinstalls35Image Bg RemoveThe image-bg-remove skill is designed for background removal: transparent PNGs, cutouts, product photos, portraits, pets, group photos. Uses dedicated Bria RMBG 2.0 model — no prompt needed, fast (~3s), cheap ($0.01). image-bg-remove Use this skill for all background removal requests on Starchild. Covers: portrait background removal (ID photos, headshots), product cutouts (e-commerce white-background), group photo background removal, pet/animal cutouts, object isolation, and preparing transparent PNGs for compositing. Invoke when the user asks about image bg remove or related SKILL.md workflows.1.7kinstalls36Cli Bridgecli-bridge mints short-code credentials (sc_xxxxxxxx) that pair a user's local starchild CLI with their agent running in Fly. It replaces raw AKM secrets with opaque bundles, reducing exposure of routing metadata and secrets. Developers use this when building CLI integrations, agent-shell daemons for local command execution, or file-transfer workflows between a user's machine and the agent workspace. Key workflows: cli_login.py mints bundles (with optional shell/file capabilities), cli_list.py shows active codes, cli_revoke.py kills bundles or underlying AKM keys. Shell and file transfer are independent, opt-in capabilities gated by local policy files (exec-policy.toml, file-policy.toml) and AKM capabilities.1.7kinstalls37Image TryonVirtual try-on skill that synthesizes person and item photos to preview how garments and accessories appear on users. Supports eight try-on categories (clothing, accessory, hairstyle, makeup, glasses, hat, shoes, watch) via two models: nanopro (~25s, good quality) and gpt (~150s, best quality). Requires both person and garment/item images as local paths or URLs. Downloads results locally for reliable delivery; handles photo requirements, prompt engineering, and error cases. Best for fashion e-commerce, styling apps, and personal fashion exploration.1.6kinstalls38Ui Designui-design is an agent skill from starchild-ai-agent/official-skills that agent skill for ui-design workflows documented in skill.md. # UI Design Skill This skill is the **single entry point** for visual work. Use it for any user-facing HTML/CSS/JS output: landing pages, dashboards, product UI, internal tools, and portfolio pages. --- ## Step 1 — Pick the build track Choose deliberately before coding: - **Track A (hand-built)**: static preview, vanilla HTML/CSS/JS, quick cu Developers invoke ui-design during operate/infra work for cloud & infrastructure tasks. The skill documents triggers, prerequisites, and step-by-step workflows grounded in SKILL.md. Compatible with Claude Code, Cursor, and Codex agent runtimes that load marketplace skills. Review the Security Audits panel on this listing before installing in production environments.1.6kinstalls39Video AnalysisThe video-analysis skill Video Analysis Analyze video files using either native model understanding or frame extraction transcription How It Works analyze_video path question file_size threshold default 20MB Send video to a supports_video model default Gemini 3 1 Flash Lite Model sees full video natively best quality file_size threshold ffmpeg extracts keyframes scene detection for long videos Whisper transcribes audio track Returns frame image paths transcript text Agent feeds these to the current chat model Quick Start Invocation do NOT use dotted imports The directory name contains a hyphen video-analysis so from skills video-analysis exports import is a Python syntax error is parsed as minus This is true for every hyphenated skill not just this one Use one of the two patterns below Pattern A from workspace root recommended for scripts bash cd data workspace skills video-analysis python3 c from exports import analyze_video import json print json dumps analyze_video output videos clip mp4 question What happens in this video ensure_ascii False Note pass the video path workspace-relative analyze py resolves it1.5kinstalls40OkxThe okx skill is designed for oKX OnChainOS: on-chain trading, analytics, security, DeFi across 20+ chains. OKX OnChainOS — Skills Directory > What this file is: a directory page that points to OKX's official > onchainos-skills repo. It contains no logic of its own — every sub-skill > below lives upstream at okx/onchainos-skills > and is fetched fresh on install, so you always get the latest version. Invoke when the user asks about okx or related SKILL.md workflows.1.4kinstalls41WorldcupThe worldcup skill World Cup 2026 Skill FIFA World Cup 2026 data the points-based prediction game Script skill call the functions in core skill_tools worldcup from bash and read the JSON Auth is automatic container JWT no API key needed How to call bash python3 c from core skill_tools import worldcup import json print json dumps worldcup get_today_matches Every function returns a dict like success true data or success false error on failure When to use Matches today upcoming live finished or one specific match Predictions place cancel or review prediction history Stats point balance betting limits win rate total staked Leaderboard top predictors by points or accuracy Functions from core skill_tools import worldcup Function Returns get_today_matches today's matches your prediction status get_upcoming_matches limit 10 next scheduled matches get_live_matches matches in progress now get_finished_matches limit 20 recent results get_match_detail match_id one match in full place_bet match_id predict_type prediction stake places a prediction cancel_prediction prediction_id cancels an unsettled prediction refunds stake get_betting_status point balance pending stakes min max stake get_my_pr.1.3kinstalls42Feishu BindingThe feishu-binding skill configures Feishu account linking and webhook endpoints for starchild-ai-agent official workflows. It documents OAuth or token setup steps, required app permissions, channel binding verification, and test message flows so agents can send notifications or receive trigger events from Feishu. Agents validate that secrets are stored safely, scopes match intended bot capabilities, and binding status is confirmed before enabling production automations. Use when integrating Feishu messaging with starchild agent pipelines for alerts, approvals, or human-in-the-loop steps.1.2kinstalls43Upbitupbit provides CLI access to the Upbit cryptocurrency exchange API, letting a developer query market data, place and cancel orders, check balances, and manage deposits and withdrawals across the KR, SG, ID, and TH environments. It includes IP allowlisting, credential handling, and safety confirmations on write operations. A solo builder reaches for it to automate spot trading or build a trading bot or dashboard against Upbit.1.2kinstalls441inch1inch: A skill for development. This provides functionality for development workflows.286installs45Defillamadefillama is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.261installs46Aaveaave is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.254installs47Market Structure Tamarket-structure-ta is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.241installs48Tokenomisttokenomist is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.234installs49Ethenaethena is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.206installs50Jupiterjupiter is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.204installs51Lunarcrushlunarcrush is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.196installs52Pancakeswappancakeswap is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.193installs53Project Designproject-design: A skill for development. This provides functionality for development workflows.193installs54Mantlemantle is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.183installs55Abstractabstract is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.181installs56Truenorthtruenorth is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.180installs57Polymarketpolymarket: A skill for development. This provides functionality for development workflows.169installs58Agent Importagent-import is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.159installs59Trading Strategytrading-strategy: A skill for development. This provides functionality for development workflows.159installs60Rootdatarootdata is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.152installs61Backtestbacktest: A skill for development. This provides functionality for development workflows.144installs62Taapitaapi is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.127installs63Monadmonad is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.124installs64Birdeyebirdeye: A skill for development. This provides functionality for development workflows.123installs65Venicevenice is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.99installs66Dashboarddashboard is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.90installs67Cn Stockcn-stock is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.89installs68Creator Insightscreator-insights is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.83installs69Sc Vpnsc-vpn is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.81installs70Debankdebank is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.68installs71Us Stockus-stock is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.64installs72Massive Options Datamassive-options-data is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.59installs73Wpswps is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.55installs74Degenclawdegenclaw is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.53installs75Woofi Swapwoofi-swap is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.53installs76Ui Templatesui-templates is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.47installs77Agent Exportagent-export is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.42installs78Workroomworkroom is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.42installs79Kalshikalshi is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.39installs80Binance Accountbinance-account is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.36installs81Mcp Connectormcp-connector is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.35installs82Okx Accountokx-account is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.33installs83Agent Builderagent-builder is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.31installs84Cloudflare Tunnel Publishcloudflare-tunnel-publish is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.31installs85Openoceanopenocean is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.31installs86Bybit Accountbybit-account is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.30installs87Byo Proxybyo-proxy is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.30installs88Elfaelfa is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.28installs89Script Generatorscript-generator is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.28installs90Sp3ndsp3nd is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.28installs91Temp Filestemp-files is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.20installs92Blockfill Agent Executionblockfill-agent-execution is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.19installs93Orderlyorderly is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.17installs94Shopifyshopify is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.15installs95Bybit Tradingbybit-trading is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.14installs96Creator Paywallcreator-paywall is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.14installs97Ibkribkr is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.13installs98Alpacaalpaca is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.12installs99Futufutu is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.12installs100Orderly Oneorderly-one is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.12installs101Longbridgelongbridge is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.11installs102Tigertiger is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.11installs103Backupbackup is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.10installs104Surprise Templatessurprise-templates is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.9installs105Woofi Botwoofi-bot is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.9installs106Blockfillblockfill is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.8installs107Chatroomchatroom is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.7installs108Community Project Publishcommunity-project-publish is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.6installs109Transparent Proxy Maintenancetransparent-proxy-maintenance is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.5installs110Where Is My Ipwhere-is-my-ip is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.5installs111Tokenmisttokenmist is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.3installs112Kalshi ApiWraps the Kalshi REST API for the CFTC-regulated prediction market, covering event/market discovery, orderbooks, candlesticks, portfolio, and RSA-PSS-signed order placement, cancellation, and RFQs. A developer uses it to read implied probabilities or place binary event-contract orders.2installs