一键导入
onequery-openclaw
Use OpenClaw's exec tool to inspect orgs, sources, and run bounded read-only SQL through the OneQuery CLI directly.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use OpenClaw's exec tool to inspect orgs, sources, and run bounded read-only SQL through the OneQuery CLI directly.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Production-ready CSS transition snippets for web apps. Use when adding or reviewing UI motion for badges, dropdowns, modals, panel/page reveals, card resizes, number pop-ins, text/icon swaps, success checks, avatar-group hovers, and validation shakes. Supports namespaced commands: transitions reveal (list catalog), transitions review (audit project fit), and transitions apply (install the best-fit snippet with hooks and reduced-motion handling).
SEO & GEO (Generative Engine Optimization) for websites. Analyze keywords, generate schema markup, optimize for AI search engines (ChatGPT, Perplexity, Gemini, Copilot, Claude) and traditional search (Google, Bing). Use when user wants to improve search visibility, search optimization, search ranking, AI visibility, ChatGPT ranking, Google AI Overview, indexing, JSON-LD, meta tags, or keyword research.
Generate or replace OneQuery blog thumbnail images and article diagram images for apps/landing. Use when Codex needs to create blog list thumbnails, social share thumbnails, in-article architecture diagrams, update blog imageSrc references, follow the OneQuery diagram design system, or use the bundled assets/diagram-design-system.png visual reference.
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep watching open PRs so fresh review feedback is surfaced promptly. Use when the user asks Codex to monitor a PR, watch CI, handle review comments, or keep an eye on failures and feedback on an open PR.
Breaking changes
Test authoring guidance
| name | onequery-openclaw |
| description | Use OpenClaw's exec tool to inspect orgs, sources, and run bounded read-only SQL through the OneQuery CLI directly. |
| metadata | {"openclaw":{"requires":{"bins":["onequery"]},"homepage":"https://onequery.dev"}} |
Use this skill when the user wants company or customer data that should be read through OneQuery-managed access, or when you need to resolve org and source context before a bounded query.
Use OpenClaw's exec tool to run the onequery CLI directly.
Use these commands in this order:
onequery auth whoamionequery org current or onequery org list --page-size 25onequery source list --org <org> --page-size 25onequery source show <source> --org <org>onequery query validate --org <org> --source <source> --sql '<sql>' --max-rows 100 --max-bytes 1048576 --cell-max-chars 2000 --timeout-ms 60000onequery query exec --org <org> --source <source> --sql '<sql>' --max-rows 100 --max-bytes 1048576 --cell-max-chars 2000 --timeout-ms 60000Rules:
--org to org-scoped source and query commands.query validate before query exec for unfamiliar SQL or provider
dialects.select 1, a row count, or a bounded aggregate before wide row
dumps.--max-rows, --max-bytes,
--cell-max-chars, and small page sizes.query exec supports --page-size, --cursor, and --page-all;
query validate does not.--file <path> instead of forcing brittle shell escaping.onequery is unavailable, ask the operator to install it or expose it on
PATH.exec runs under restrictive approval or allowlist policy, ask the
operator to allow the resolved onequery binary or enable skill-bin
auto-allow.Recovery:
onequery auth whoami, then ask the user to refresh the
OneQuery CLI session if needed.onequery org list --page-size 25onequery source list --org <org> --page-size 25, then
onequery source show <source> --org <org>onequery query validate ...