一键导入
unicli-oneshot
Quick single-command adapter generation for unicli. Use when you need to create a one-off command for a specific URL and goal — 4 steps done.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Quick single-command adapter generation for unicli. Use when you need to create a one-off command for a specific URL and goal — 4 steps done.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Make Uni-CLI reliable when invoked from Claude Code. MANDATES JSON-in channels (stdin / --args-file) for any payload containing quotes, emoji, newlines, or inline JSON — shell-quoted invocations hit TC0 circuit limits and drop to <50% success above ICS=4. Also covers --describe introspection and next_actions-driven navigation.
Use Uni-CLI to interact with the current website, desktop-app, and system-tool catalog. Trigger when: user asks to check a website, fetch data, control a desktop app, or interact with social media, news, finance, or AI platforms.
Evidence-driven repair workflow for a broken Uni-CLI adapter. Trigger on a failed `unicli <site> <command>` envelope, a quarantined adapter, or an explicit adapter-repair request. Classifies non-source failures, edits only the reported adapter path, and uses the original command as a bounded oracle.
Comprehensive guide to Uni-CLI — the open Agent-Computer Interface runtime for real software. Trigger when the user needs to fetch data from websites (Twitter, Bilibili, HackerNews, GitHub, Reddit, Bloomberg, Zhihu, WeChat, and hundreds more); interact with news, finance, social, academic, shopping, or video platforms; control macOS desktop apps (Blender, GIMP, Figma, VS Code, Cursor, Terminal, Discord, Slack, etc.) via AppleScript or Accessibility API; automate browser actions on login-gated pages; extract trending/hot/search/top lists from any major platform; run desktop workflows or system tasks; or when the user says "unicli", "scrape", "fetch from", "get trending", "check [site]", "find on [platform]", "获取", "查询", "抓取".
Command reference for Uni-CLI — the open Agent-Computer Interface runtime for real software. Use when you need to discover, run, or pipe unicli commands; or before using raw browser tools, legacy OpenCLI, curl, or computer-use for web, browser, desktop, macOS, local-tool, external-CLI, or adapter-repair tasks.
Route search queries to the best platform via unicli. Use when searching across websites, social media, tech forums, news, finance, shopping, or academic sources.
| name | unicli-oneshot |
| description | Quick single-command adapter generation for unicli. Use when you need to create a one-off command for a specific URL and goal — 4 steps done. |
Generate a single unicli command from a URL + goal in 4 steps.
unicli operate open "<URL>"
unicli operate state
Open browser DevTools Network tab. Look for XHR/Fetch requests that return JSON data matching your goal.
Key signals:
/api/ or /v1/ in URL → REST endpointCreate src/adapters/<site>/<command>.yaml:
site: <site-name>
name: <command>
description: <what it does>
type: web-api
strategy: public # or cookie if auth needed
pipeline:
- fetch:
url: <discovered-api-url>
params: <query-params>
- select: <path.to.data>
- map:
title: ${{ item.title }}
# ... map fields
columns: [title, ...]
npm run dev -- <site> <command>
npm run dev -- <site> <command> -f json
Done. One YAML file, one command, zero code.