Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

omarchyomarchy 搜索

Agent Skill

omarchy 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

26,860

周安装

1,142

GitHub Stars

公开资料未说明

下载量

9,410
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:omarchy(omarchy 搜索)
来源仓库:https://github.com/achals-iglu/omarchy
安装命令:
openclaw skills install omarchy
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install omarchy

简介

Omarchy 操作日常系统工作的护栏:假设主机默认为 Omarchy,首先选择 Omarchy 原生工作流程,将用户意图映射到正确的 omarchy-* 包装器/脚本系列,并避免与 Omarchy 行为冲突的通用 Linux 命令。每当在此主机上处理本地系统任务时使用,除非用户明确表示它不是 Omarchy;优先考虑安全的 Omarchy 命令,防止非 Omarchy 快捷方式(例如,临时进程终止/重新启动模式),对桌面行为进行故障排除,并在执行前验证正确的脚本。

SKILL.md

name
omarchy
description
Omarchy operating guardrails for day-to-day system work: assume the host is Omarchy by default, choose Omarchy-native workflows first, map user intent to the correct omarchy-* wrapper/script family, and avoid generic Linux commands that conflict with Omarchy behavior. Use whenever handling local system tasks on this host unless the user explicitly says it is not Omarchy; prioritize safe Omarchy commands, prevent non-Omarchy shortcuts (e.g., ad-hoc process killing/relaunch patterns), troubleshoot desktop behavior, and validate the right script before execution.

Omarchy Skill

Treat this skill as an Omarchy operating mode, not just a command catalog. When working on an Omarchy system, prefer Omarchy-native wrappers and workflows over generic Linux one-liners that may bypass expected state handling. Use local script docs and names to choose the correct path. Each script has documentation at the top describing its purpose. DO NOT RUN A SCRIPT UNTIL YOU ARE SURE OF ITS PURPOSE.

Operating rules

  1. Start with command name matching and in-file comments under /home/achals/.local/share/omarchy/bin.
  2. Prefer read-only/status commands first (*list*, *status*, *current*, *available*, *version*).
  3. Ask before broad or high-impact actions (*install*, *remove*, *reinstall*, *update*, *pkg*, *setup*, *set*).
  4. Avoid bulk discovery execution. Do static inspection first.
  5. Never assume omarchy-* scripts support standard CLI flags or parameters (including --help). Treat each script as custom; inspect its file/header comments first.

Worked examples (good vs bad)

Use these patterns whenever you operate on Omarchy. The goal is not "run an omarchy command at all costs"; the goal is to avoid bypassing Omarchy’s intended state-management flows.

1) Restarting Waybar

User intent: "Waybar is broken, restart it."

  • Bad (generic shortcut):

- pkill waybar && waybar

  • Good (Omarchy-native):

- omarchy-restart-waybar

  • Why: Omarchy wrappers usually handle environment/session assumptions better than raw kill-and-relaunch one-liners.

2) Applying config/UI refresh after edits

User intent: "I changed config, apply it."

  • Bad:

- restarting random processes manually until things look fixed

  • Good:

- use targeted refresh script first, e.g. omarchy-refresh-waybar, omarchy-refresh-hyprland, omarchy-refresh-config (pick by component)

  • Why: refresh scripts are explicit and reversible; manual shotgun restarts are noisy and risky.

3) Package management task

User intent: "Install/remove package X."

  • Bad:

- using raw pacman/yay first without checking Omarchy wrappers

  • Good:

- inspect and prefer omarchy-pkg-* flow (...-present, ...-missing, then ...-install/...-remove)

  • Why: wrapper flow keeps behavior consistent with Omarchy expectations.

4) Theme change request

User intent: "Switch theme / sync theme to apps."

  • Bad:

- editing dotfiles manually first and restarting random apps

  • Good:

- omarchy-theme-list -> omarchy-theme-set -> app-specific follow-ups if needed (omarchy-theme-set-vscode, ...-browser, ...-obsidian)

  • Why: Omarchy theme pipeline may include extra integration steps beyond plain config edits.

5) Audio/Bluetooth/Wi‑Fi issue

User intent: "Audio/Bluetooth/Wi‑Fi stopped behaving."

  • Bad:

- broad process killing (killall pipewire, random daemon restarts)

  • Good:

- use targeted wrapper restarts such as omarchy-restart-pipewire, omarchy-restart-bluetooth, omarchy-restart-wifi

  • Why: targeted wrappers reduce collateral damage and match Omarchy’s service model.

6) "What command should I run?" discovery flow

User intent: ambiguous request like "fix my display stack".

  • Bad:

- execute many commands to discover options (for c in omarchy-*; do $c --help; done)

  • Good:

1. Statically inspect names in /home/achals/.local/share/omarchy/bin 2. Read top-of-file script comments for likely candidates 3. Start with read-only/status scripts 4. Propose 1-3 likely commands and ask before high-impact actions

  • Why: static inspection is safer, faster, and follows no-bulk-probing policy.

7) Update workflow

User intent: "Update system."

  • Bad:

- directly running full update steps without checking availability/state

  • Good:

- check first: omarchy-update-available (and related status) - then execute appropriate Omarchy update path with confirmation for impactful steps

  • Why: staged update flow reduces surprise breakage.

Decision template (apply every time)

For any Omarchy task, follow this mini-checklist:

  1. Identify component (UI, package, theme, network, update, device, etc.)
  2. Find matching omarchy-* family by name and script header comments
  3. Prefer read-only/status command first
  4. Use targeted omarchy-refresh-*/omarchy-restart-* over raw kill/relaunch
  5. Ask before high-impact actions (install/remove/reinstall/update/setup/set)

Omarchy command catalog (static, local)

Total commands: 161

battery (2)

  • omarchy-battery-monitor
  • omarchy-battery-remaining

branch (1)

  • omarchy-branch-set

channel (1)

  • omarchy-channel-set

cmd (12)

  • omarchy-cmd-apple-display-brightness
  • omarchy-cmd-audio-switch
  • omarchy-cmd-first-run
  • omarchy-cmd-missing
  • omarchy-cmd-present
  • omarchy-cmd-reboot
  • omarchy-cmd-screenrecord
  • omarchy-cmd-screensaver
  • omarchy-cmd-screenshot
  • omarchy-cmd-share
  • omarchy-cmd-shutdown
  • omarchy-cmd-terminal-cwd

debug (1)

  • omarchy-debug

dev (1)

  • omarchy-dev-add-migration

drive (3)

  • omarchy-drive-info
  • omarchy-drive-select
  • omarchy-drive-set-password

font (3)

  • omarchy-font-current
  • omarchy-font-list
  • omarchy-font-set

hibernation (3)

  • omarchy-hibernation-available
  • omarchy-hibernation-remove
  • omarchy-hibernation-setup

hook (1)

  • omarchy-hook

hyprland (3)

  • omarchy-hyprland-window-close-all
  • omarchy-hyprland-window-pop
  • omarchy-hyprland-workspace-toggle-gaps

install (9)

  • omarchy-install-chromium-google-account
  • omarchy-install-dev-env
  • omarchy-install-docker-dbs
  • omarchy-install-dropbox
  • omarchy-install-steam
  • omarchy-install-tailscale
  • omarchy-install-terminal
  • omarchy-install-vscode
  • omarchy-install-xbox-controllers

launch (14)

  • omarchy-launch-about
  • omarchy-launch-audio
  • omarchy-launch-bluetooth
  • omarchy-launch-browser
  • omarchy-launch-editor
  • omarchy-launch-floating-terminal-with-presentation
  • omarchy-launch-or-focus
  • omarchy-launch-or-focus-tui
  • omarchy-launch-or-focus-webapp
  • omarchy-launch-screensaver
  • omarchy-launch-tui
  • omarchy-launch-walker
  • omarchy-launch-webapp
  • omarchy-launch-wifi

lock (1)

  • omarchy-lock-screen

menu (2)

  • omarchy-menu
  • omarchy-menu-keybindings

migrate (1)

  • omarchy-migrate

notification (1)

  • omarchy-notification-dismiss

pkg (9)

  • omarchy-pkg-add
  • omarchy-pkg-aur-accessible
  • omarchy-pkg-aur-add
  • omarchy-pkg-aur-install
  • omarchy-pkg-drop
  • omarchy-pkg-install
  • omarchy-pkg-missing
  • omarchy-pkg-present
  • omarchy-pkg-remove

powerprofiles (1)

  • omarchy-powerprofiles-list

refresh (14)

  • omarchy-refresh-applications
  • omarchy-refresh-chromium
  • omarchy-refresh-config
  • omarchy-refresh-fastfetch
  • omarchy-refresh-hypridle
  • omarchy-refresh-hyprland
  • omarchy-refresh-hyprlock
  • omarchy-refresh-hyprsunset
  • omarchy-refresh-limine
  • omarchy-refresh-pacman
  • omarchy-refresh-plymouth
  • omarchy-refresh-swayosd
  • omarchy-refresh-walker
  • omarchy-refresh-waybar

reinstall (4)

  • omarchy-reinstall
  • omarchy-reinstall-configs
  • omarchy-reinstall-git
  • omarchy-reinstall-pkgs

remove (1)

  • omarchy-remove-dev-env

reset (1)

  • omarchy-reset-sudo

restart (15)

  • omarchy-restart-app
  • omarchy-restart-bluetooth
  • omarchy-restart-btop
  • omarchy-restart-hyprctl
  • omarchy-restart-hypridle
  • omarchy-restart-hyprsunset
  • omarchy-restart-mako
  • omarchy-restart-opencode
  • omarchy-restart-pipewire
  • omarchy-restart-swayosd
  • omarchy-restart-terminal
  • omarchy-restart-walker
  • omarchy-restart-waybar
  • omarchy-restart-wifi
  • omarchy-restart-xcompose

setup (3)

  • omarchy-setup-dns
  • omarchy-setup-fido2
  • omarchy-setup-fingerprint

show (2)

  • omarchy-show-done
  • omarchy-show-logo

snapshot (1)

  • omarchy-snapshot

state (1)

  • omarchy-state

theme (13)

  • omarchy-theme-bg-install
  • omarchy-theme-bg-next
  • omarchy-theme-current
  • omarchy-theme-install
  • omarchy-theme-list
  • omarchy-theme-remove
  • omarchy-theme-set
  • omarchy-theme-set-browser
  • omarchy-theme-set-gnome
  • omarchy-theme-set-obsidian
  • omarchy-theme-set-templates
  • omarchy-theme-set-vscode
  • omarchy-theme-update

toggle (5)

  • omarchy-toggle-idle
  • omarchy-toggle-nightlight
  • omarchy-toggle-screensaver
  • omarchy-toggle-suspend
  • omarchy-toggle-waybar

tui (2)

  • omarchy-tui-install
  • omarchy-tui-remove

tz (1)

  • omarchy-tz-select

update (14)

  • omarchy-update
  • omarchy-update-analyze-logs
  • omarchy-update-available
  • omarchy-update-available-reset
  • omarchy-update-branch
  • omarchy-update-confirm
  • omarchy-update-firmware
  • omarchy-update-git
  • omarchy-update-keyring
  • omarchy-update-perform
  • omarchy-update-restart
  • omarchy-update-system-pkgs
  • omarchy-update-time
  • omarchy-update-without-idle

upload (1)

  • omarchy-upload-log

version (4)

  • omarchy-version
  • omarchy-version-branch
  • omarchy-version-channel
  • omarchy-version-pkgs

voxtype (5)

  • omarchy-voxtype-config
  • omarchy-voxtype-install
  • omarchy-voxtype-model
  • omarchy-voxtype-remove
  • omarchy-voxtype-status

webapp (4)

  • omarchy-webapp-handler-hey
  • omarchy-webapp-handler-zoom
  • omarchy-webapp-install
  • omarchy-webapp-remove

windows (1)

  • omarchy-windows-vm

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

73.7%
按下载量换算6,935

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills