{
  "schemaVersion": "1.0",
  "item": {
    "slug": "omarchy",
    "name": "omarchy",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/AchalS-iglu/omarchy",
    "canonicalUrl": "https://clawhub.ai/AchalS-iglu/omarchy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/omarchy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=omarchy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/omarchy"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/omarchy",
    "agentPageUrl": "https://openagent3.xyz/skills/omarchy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/omarchy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/omarchy/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Omarchy Skill",
        "body": "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."
      },
      {
        "title": "Operating rules",
        "body": "Start with command name matching and in-file comments under /home/achals/.local/share/omarchy/bin.\nPrefer read-only/status commands first (*list*, *status*, *current*, *available*, *version*).\nAsk before broad or high-impact actions (*install*, *remove*, *reinstall*, *update*, *pkg*, *setup*, *set*).\nAvoid bulk discovery execution. Do static inspection first.\nNever assume omarchy-* scripts support standard CLI flags or parameters (including --help). Treat each script as custom; inspect its file/header comments first."
      },
      {
        "title": "Worked examples (good vs bad)",
        "body": "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."
      },
      {
        "title": "1) Restarting Waybar",
        "body": "User intent: \"Waybar is broken, restart it.\"\n\nBad (generic shortcut):\n\npkill waybar && waybar\n\n\nGood (Omarchy-native):\n\nomarchy-restart-waybar\n\n\nWhy: Omarchy wrappers usually handle environment/session assumptions better than raw kill-and-relaunch one-liners."
      },
      {
        "title": "2) Applying config/UI refresh after edits",
        "body": "User intent: \"I changed config, apply it.\"\n\nBad:\n\nrestarting random processes manually until things look fixed\n\n\nGood:\n\nuse targeted refresh script first, e.g. omarchy-refresh-waybar, omarchy-refresh-hyprland, omarchy-refresh-config (pick by component)\n\n\nWhy: refresh scripts are explicit and reversible; manual shotgun restarts are noisy and risky."
      },
      {
        "title": "3) Package management task",
        "body": "User intent: \"Install/remove package X.\"\n\nBad:\n\nusing raw pacman/yay first without checking Omarchy wrappers\n\n\nGood:\n\ninspect and prefer omarchy-pkg-* flow (...-present, ...-missing, then ...-install/...-remove)\n\n\nWhy: wrapper flow keeps behavior consistent with Omarchy expectations."
      },
      {
        "title": "4) Theme change request",
        "body": "User intent: \"Switch theme / sync theme to apps.\"\n\nBad:\n\nediting dotfiles manually first and restarting random apps\n\n\nGood:\n\nomarchy-theme-list -> omarchy-theme-set -> app-specific follow-ups if needed (omarchy-theme-set-vscode, ...-browser, ...-obsidian)\n\n\nWhy: Omarchy theme pipeline may include extra integration steps beyond plain config edits."
      },
      {
        "title": "5) Audio/Bluetooth/Wi‑Fi issue",
        "body": "User intent: \"Audio/Bluetooth/Wi‑Fi stopped behaving.\"\n\nBad:\n\nbroad process killing (killall pipewire, random daemon restarts)\n\n\nGood:\n\nuse targeted wrapper restarts such as omarchy-restart-pipewire, omarchy-restart-bluetooth, omarchy-restart-wifi\n\n\nWhy: targeted wrappers reduce collateral damage and match Omarchy’s service model."
      },
      {
        "title": "6) \"What command should I run?\" discovery flow",
        "body": "User intent: ambiguous request like \"fix my display stack\".\n\nBad:\n\nexecute many commands to discover options (for c in omarchy-*; do $c --help; done)\n\n\nGood:\n\nStatically inspect names in /home/achals/.local/share/omarchy/bin\nRead top-of-file script comments for likely candidates\nStart with read-only/status scripts\nPropose 1-3 likely commands and ask before high-impact actions\n\n\nWhy: static inspection is safer, faster, and follows no-bulk-probing policy."
      },
      {
        "title": "7) Update workflow",
        "body": "User intent: \"Update system.\"\n\nBad:\n\ndirectly running full update steps without checking availability/state\n\n\nGood:\n\ncheck first: omarchy-update-available (and related status)\nthen execute appropriate Omarchy update path with confirmation for impactful steps\n\n\nWhy: staged update flow reduces surprise breakage."
      },
      {
        "title": "Decision template (apply every time)",
        "body": "For any Omarchy task, follow this mini-checklist:\n\nIdentify component (UI, package, theme, network, update, device, etc.)\nFind matching omarchy-* family by name and script header comments\nPrefer read-only/status command first\nUse targeted omarchy-refresh-*/omarchy-restart-* over raw kill/relaunch\nAsk before high-impact actions (install/remove/reinstall/update/setup/set)"
      },
      {
        "title": "Omarchy command catalog (static, local)",
        "body": "Total commands: 161"
      },
      {
        "title": "battery (2)",
        "body": "omarchy-battery-monitor\nomarchy-battery-remaining"
      },
      {
        "title": "branch (1)",
        "body": "omarchy-branch-set"
      },
      {
        "title": "channel (1)",
        "body": "omarchy-channel-set"
      },
      {
        "title": "cmd (12)",
        "body": "omarchy-cmd-apple-display-brightness\nomarchy-cmd-audio-switch\nomarchy-cmd-first-run\nomarchy-cmd-missing\nomarchy-cmd-present\nomarchy-cmd-reboot\nomarchy-cmd-screenrecord\nomarchy-cmd-screensaver\nomarchy-cmd-screenshot\nomarchy-cmd-share\nomarchy-cmd-shutdown\nomarchy-cmd-terminal-cwd"
      },
      {
        "title": "debug (1)",
        "body": "omarchy-debug"
      },
      {
        "title": "dev (1)",
        "body": "omarchy-dev-add-migration"
      },
      {
        "title": "drive (3)",
        "body": "omarchy-drive-info\nomarchy-drive-select\nomarchy-drive-set-password"
      },
      {
        "title": "font (3)",
        "body": "omarchy-font-current\nomarchy-font-list\nomarchy-font-set"
      },
      {
        "title": "hibernation (3)",
        "body": "omarchy-hibernation-available\nomarchy-hibernation-remove\nomarchy-hibernation-setup"
      },
      {
        "title": "hook (1)",
        "body": "omarchy-hook"
      },
      {
        "title": "hyprland (3)",
        "body": "omarchy-hyprland-window-close-all\nomarchy-hyprland-window-pop\nomarchy-hyprland-workspace-toggle-gaps"
      },
      {
        "title": "install (9)",
        "body": "omarchy-install-chromium-google-account\nomarchy-install-dev-env\nomarchy-install-docker-dbs\nomarchy-install-dropbox\nomarchy-install-steam\nomarchy-install-tailscale\nomarchy-install-terminal\nomarchy-install-vscode\nomarchy-install-xbox-controllers"
      },
      {
        "title": "launch (14)",
        "body": "omarchy-launch-about\nomarchy-launch-audio\nomarchy-launch-bluetooth\nomarchy-launch-browser\nomarchy-launch-editor\nomarchy-launch-floating-terminal-with-presentation\nomarchy-launch-or-focus\nomarchy-launch-or-focus-tui\nomarchy-launch-or-focus-webapp\nomarchy-launch-screensaver\nomarchy-launch-tui\nomarchy-launch-walker\nomarchy-launch-webapp\nomarchy-launch-wifi"
      },
      {
        "title": "lock (1)",
        "body": "omarchy-lock-screen"
      },
      {
        "title": "menu (2)",
        "body": "omarchy-menu\nomarchy-menu-keybindings"
      },
      {
        "title": "migrate (1)",
        "body": "omarchy-migrate"
      },
      {
        "title": "notification (1)",
        "body": "omarchy-notification-dismiss"
      },
      {
        "title": "pkg (9)",
        "body": "omarchy-pkg-add\nomarchy-pkg-aur-accessible\nomarchy-pkg-aur-add\nomarchy-pkg-aur-install\nomarchy-pkg-drop\nomarchy-pkg-install\nomarchy-pkg-missing\nomarchy-pkg-present\nomarchy-pkg-remove"
      },
      {
        "title": "powerprofiles (1)",
        "body": "omarchy-powerprofiles-list"
      },
      {
        "title": "refresh (14)",
        "body": "omarchy-refresh-applications\nomarchy-refresh-chromium\nomarchy-refresh-config\nomarchy-refresh-fastfetch\nomarchy-refresh-hypridle\nomarchy-refresh-hyprland\nomarchy-refresh-hyprlock\nomarchy-refresh-hyprsunset\nomarchy-refresh-limine\nomarchy-refresh-pacman\nomarchy-refresh-plymouth\nomarchy-refresh-swayosd\nomarchy-refresh-walker\nomarchy-refresh-waybar"
      },
      {
        "title": "reinstall (4)",
        "body": "omarchy-reinstall\nomarchy-reinstall-configs\nomarchy-reinstall-git\nomarchy-reinstall-pkgs"
      },
      {
        "title": "remove (1)",
        "body": "omarchy-remove-dev-env"
      },
      {
        "title": "reset (1)",
        "body": "omarchy-reset-sudo"
      },
      {
        "title": "restart (15)",
        "body": "omarchy-restart-app\nomarchy-restart-bluetooth\nomarchy-restart-btop\nomarchy-restart-hyprctl\nomarchy-restart-hypridle\nomarchy-restart-hyprsunset\nomarchy-restart-mako\nomarchy-restart-opencode\nomarchy-restart-pipewire\nomarchy-restart-swayosd\nomarchy-restart-terminal\nomarchy-restart-walker\nomarchy-restart-waybar\nomarchy-restart-wifi\nomarchy-restart-xcompose"
      },
      {
        "title": "setup (3)",
        "body": "omarchy-setup-dns\nomarchy-setup-fido2\nomarchy-setup-fingerprint"
      },
      {
        "title": "show (2)",
        "body": "omarchy-show-done\nomarchy-show-logo"
      },
      {
        "title": "snapshot (1)",
        "body": "omarchy-snapshot"
      },
      {
        "title": "state (1)",
        "body": "omarchy-state"
      },
      {
        "title": "theme (13)",
        "body": "omarchy-theme-bg-install\nomarchy-theme-bg-next\nomarchy-theme-current\nomarchy-theme-install\nomarchy-theme-list\nomarchy-theme-remove\nomarchy-theme-set\nomarchy-theme-set-browser\nomarchy-theme-set-gnome\nomarchy-theme-set-obsidian\nomarchy-theme-set-templates\nomarchy-theme-set-vscode\nomarchy-theme-update"
      },
      {
        "title": "toggle (5)",
        "body": "omarchy-toggle-idle\nomarchy-toggle-nightlight\nomarchy-toggle-screensaver\nomarchy-toggle-suspend\nomarchy-toggle-waybar"
      },
      {
        "title": "tui (2)",
        "body": "omarchy-tui-install\nomarchy-tui-remove"
      },
      {
        "title": "tz (1)",
        "body": "omarchy-tz-select"
      },
      {
        "title": "update (14)",
        "body": "omarchy-update\nomarchy-update-analyze-logs\nomarchy-update-available\nomarchy-update-available-reset\nomarchy-update-branch\nomarchy-update-confirm\nomarchy-update-firmware\nomarchy-update-git\nomarchy-update-keyring\nomarchy-update-perform\nomarchy-update-restart\nomarchy-update-system-pkgs\nomarchy-update-time\nomarchy-update-without-idle"
      },
      {
        "title": "upload (1)",
        "body": "omarchy-upload-log"
      },
      {
        "title": "version (4)",
        "body": "omarchy-version\nomarchy-version-branch\nomarchy-version-channel\nomarchy-version-pkgs"
      },
      {
        "title": "voxtype (5)",
        "body": "omarchy-voxtype-config\nomarchy-voxtype-install\nomarchy-voxtype-model\nomarchy-voxtype-remove\nomarchy-voxtype-status"
      },
      {
        "title": "webapp (4)",
        "body": "omarchy-webapp-handler-hey\nomarchy-webapp-handler-zoom\nomarchy-webapp-install\nomarchy-webapp-remove"
      },
      {
        "title": "windows (1)",
        "body": "omarchy-windows-vm"
      }
    ],
    "body": "Omarchy Skill\n\nTreat 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.\n\nOperating rules\nStart with command name matching and in-file comments under /home/achals/.local/share/omarchy/bin.\nPrefer read-only/status commands first (*list*, *status*, *current*, *available*, *version*).\nAsk before broad or high-impact actions (*install*, *remove*, *reinstall*, *update*, *pkg*, *setup*, *set*).\nAvoid bulk discovery execution. Do static inspection first.\nNever assume omarchy-* scripts support standard CLI flags or parameters (including --help). Treat each script as custom; inspect its file/header comments first.\nWorked examples (good vs bad)\n\nUse 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.\n\n1) Restarting Waybar\n\nUser intent: \"Waybar is broken, restart it.\"\n\nBad (generic shortcut):\npkill waybar && waybar\nGood (Omarchy-native):\nomarchy-restart-waybar\nWhy: Omarchy wrappers usually handle environment/session assumptions better than raw kill-and-relaunch one-liners.\n2) Applying config/UI refresh after edits\n\nUser intent: \"I changed config, apply it.\"\n\nBad:\nrestarting random processes manually until things look fixed\nGood:\nuse targeted refresh script first, e.g. omarchy-refresh-waybar, omarchy-refresh-hyprland, omarchy-refresh-config (pick by component)\nWhy: refresh scripts are explicit and reversible; manual shotgun restarts are noisy and risky.\n3) Package management task\n\nUser intent: \"Install/remove package X.\"\n\nBad:\nusing raw pacman/yay first without checking Omarchy wrappers\nGood:\ninspect and prefer omarchy-pkg-* flow (...-present, ...-missing, then ...-install/...-remove)\nWhy: wrapper flow keeps behavior consistent with Omarchy expectations.\n4) Theme change request\n\nUser intent: \"Switch theme / sync theme to apps.\"\n\nBad:\nediting dotfiles manually first and restarting random apps\nGood:\nomarchy-theme-list -> omarchy-theme-set -> app-specific follow-ups if needed (omarchy-theme-set-vscode, ...-browser, ...-obsidian)\nWhy: Omarchy theme pipeline may include extra integration steps beyond plain config edits.\n5) Audio/Bluetooth/Wi‑Fi issue\n\nUser intent: \"Audio/Bluetooth/Wi‑Fi stopped behaving.\"\n\nBad:\nbroad process killing (killall pipewire, random daemon restarts)\nGood:\nuse targeted wrapper restarts such as omarchy-restart-pipewire, omarchy-restart-bluetooth, omarchy-restart-wifi\nWhy: targeted wrappers reduce collateral damage and match Omarchy’s service model.\n6) \"What command should I run?\" discovery flow\n\nUser intent: ambiguous request like \"fix my display stack\".\n\nBad:\nexecute many commands to discover options (for c in omarchy-*; do $c --help; done)\nGood:\nStatically inspect names in /home/achals/.local/share/omarchy/bin\nRead top-of-file script comments for likely candidates\nStart with read-only/status scripts\nPropose 1-3 likely commands and ask before high-impact actions\nWhy: static inspection is safer, faster, and follows no-bulk-probing policy.\n7) Update workflow\n\nUser intent: \"Update system.\"\n\nBad:\ndirectly running full update steps without checking availability/state\nGood:\ncheck first: omarchy-update-available (and related status)\nthen execute appropriate Omarchy update path with confirmation for impactful steps\nWhy: staged update flow reduces surprise breakage.\nDecision template (apply every time)\n\nFor any Omarchy task, follow this mini-checklist:\n\nIdentify component (UI, package, theme, network, update, device, etc.)\nFind matching omarchy-* family by name and script header comments\nPrefer read-only/status command first\nUse targeted omarchy-refresh-*/omarchy-restart-* over raw kill/relaunch\nAsk before high-impact actions (install/remove/reinstall/update/setup/set)\nOmarchy command catalog (static, local)\n\nTotal commands: 161\n\nbattery (2)\nomarchy-battery-monitor\nomarchy-battery-remaining\nbranch (1)\nomarchy-branch-set\nchannel (1)\nomarchy-channel-set\ncmd (12)\nomarchy-cmd-apple-display-brightness\nomarchy-cmd-audio-switch\nomarchy-cmd-first-run\nomarchy-cmd-missing\nomarchy-cmd-present\nomarchy-cmd-reboot\nomarchy-cmd-screenrecord\nomarchy-cmd-screensaver\nomarchy-cmd-screenshot\nomarchy-cmd-share\nomarchy-cmd-shutdown\nomarchy-cmd-terminal-cwd\ndebug (1)\nomarchy-debug\ndev (1)\nomarchy-dev-add-migration\ndrive (3)\nomarchy-drive-info\nomarchy-drive-select\nomarchy-drive-set-password\nfont (3)\nomarchy-font-current\nomarchy-font-list\nomarchy-font-set\nhibernation (3)\nomarchy-hibernation-available\nomarchy-hibernation-remove\nomarchy-hibernation-setup\nhook (1)\nomarchy-hook\nhyprland (3)\nomarchy-hyprland-window-close-all\nomarchy-hyprland-window-pop\nomarchy-hyprland-workspace-toggle-gaps\ninstall (9)\nomarchy-install-chromium-google-account\nomarchy-install-dev-env\nomarchy-install-docker-dbs\nomarchy-install-dropbox\nomarchy-install-steam\nomarchy-install-tailscale\nomarchy-install-terminal\nomarchy-install-vscode\nomarchy-install-xbox-controllers\nlaunch (14)\nomarchy-launch-about\nomarchy-launch-audio\nomarchy-launch-bluetooth\nomarchy-launch-browser\nomarchy-launch-editor\nomarchy-launch-floating-terminal-with-presentation\nomarchy-launch-or-focus\nomarchy-launch-or-focus-tui\nomarchy-launch-or-focus-webapp\nomarchy-launch-screensaver\nomarchy-launch-tui\nomarchy-launch-walker\nomarchy-launch-webapp\nomarchy-launch-wifi\nlock (1)\nomarchy-lock-screen\nmenu (2)\nomarchy-menu\nomarchy-menu-keybindings\nmigrate (1)\nomarchy-migrate\nnotification (1)\nomarchy-notification-dismiss\npkg (9)\nomarchy-pkg-add\nomarchy-pkg-aur-accessible\nomarchy-pkg-aur-add\nomarchy-pkg-aur-install\nomarchy-pkg-drop\nomarchy-pkg-install\nomarchy-pkg-missing\nomarchy-pkg-present\nomarchy-pkg-remove\npowerprofiles (1)\nomarchy-powerprofiles-list\nrefresh (14)\nomarchy-refresh-applications\nomarchy-refresh-chromium\nomarchy-refresh-config\nomarchy-refresh-fastfetch\nomarchy-refresh-hypridle\nomarchy-refresh-hyprland\nomarchy-refresh-hyprlock\nomarchy-refresh-hyprsunset\nomarchy-refresh-limine\nomarchy-refresh-pacman\nomarchy-refresh-plymouth\nomarchy-refresh-swayosd\nomarchy-refresh-walker\nomarchy-refresh-waybar\nreinstall (4)\nomarchy-reinstall\nomarchy-reinstall-configs\nomarchy-reinstall-git\nomarchy-reinstall-pkgs\nremove (1)\nomarchy-remove-dev-env\nreset (1)\nomarchy-reset-sudo\nrestart (15)\nomarchy-restart-app\nomarchy-restart-bluetooth\nomarchy-restart-btop\nomarchy-restart-hyprctl\nomarchy-restart-hypridle\nomarchy-restart-hyprsunset\nomarchy-restart-mako\nomarchy-restart-opencode\nomarchy-restart-pipewire\nomarchy-restart-swayosd\nomarchy-restart-terminal\nomarchy-restart-walker\nomarchy-restart-waybar\nomarchy-restart-wifi\nomarchy-restart-xcompose\nsetup (3)\nomarchy-setup-dns\nomarchy-setup-fido2\nomarchy-setup-fingerprint\nshow (2)\nomarchy-show-done\nomarchy-show-logo\nsnapshot (1)\nomarchy-snapshot\nstate (1)\nomarchy-state\ntheme (13)\nomarchy-theme-bg-install\nomarchy-theme-bg-next\nomarchy-theme-current\nomarchy-theme-install\nomarchy-theme-list\nomarchy-theme-remove\nomarchy-theme-set\nomarchy-theme-set-browser\nomarchy-theme-set-gnome\nomarchy-theme-set-obsidian\nomarchy-theme-set-templates\nomarchy-theme-set-vscode\nomarchy-theme-update\ntoggle (5)\nomarchy-toggle-idle\nomarchy-toggle-nightlight\nomarchy-toggle-screensaver\nomarchy-toggle-suspend\nomarchy-toggle-waybar\ntui (2)\nomarchy-tui-install\nomarchy-tui-remove\ntz (1)\nomarchy-tz-select\nupdate (14)\nomarchy-update\nomarchy-update-analyze-logs\nomarchy-update-available\nomarchy-update-available-reset\nomarchy-update-branch\nomarchy-update-confirm\nomarchy-update-firmware\nomarchy-update-git\nomarchy-update-keyring\nomarchy-update-perform\nomarchy-update-restart\nomarchy-update-system-pkgs\nomarchy-update-time\nomarchy-update-without-idle\nupload (1)\nomarchy-upload-log\nversion (4)\nomarchy-version\nomarchy-version-branch\nomarchy-version-channel\nomarchy-version-pkgs\nvoxtype (5)\nomarchy-voxtype-config\nomarchy-voxtype-install\nomarchy-voxtype-model\nomarchy-voxtype-remove\nomarchy-voxtype-status\nwebapp (4)\nomarchy-webapp-handler-hey\nomarchy-webapp-handler-zoom\nomarchy-webapp-install\nomarchy-webapp-remove\nwindows (1)\nomarchy-windows-vm"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/AchalS-iglu/omarchy",
    "publisherUrl": "https://clawhub.ai/AchalS-iglu/omarchy",
    "owner": "AchalS-iglu",
    "version": "0.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/omarchy",
    "downloadUrl": "https://openagent3.xyz/downloads/omarchy",
    "agentUrl": "https://openagent3.xyz/skills/omarchy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/omarchy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/omarchy/agent.md"
  }
}