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

kernel-computer-controls内核计算机控制

Agent Skill

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

总安装

549

周安装

22

GitHub Stars

公开资料未说明

下载量

178
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:kernel-computer-controls(内核计算机控制)
来源仓库:https://github.com/kernel/skills
仓库路径:skills/kernel-computer-controls
安装命令:
npx skills add kernel/skills --skill "kernel-computer-controls"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

AgentSkills.tonpx skills
npx skills add kernel/skills --skill "kernel-computer-controls"

简介

kernel-computer-controls 提供计算机底层控制接口,支持进程、设备与系统调用管理。

  • 可用于启动服务、监控系统状态或执行特权操作。
  • 通过 npx skills add kernel/skills --skill "kernel-computer-controls" 安装。
  • 必须严格限制权限,仅授予必要的最小权限集。
  • 操作前应确认是否涉及敏感系统区域,并做好回滚准备。

SKILL.md

Computer Controls

OS-level mouse, keyboard, and screen control for precise browser interaction.

When to Use

Computer controls provide OS-level interaction with the browser VM, operating at the system level rather than through browser APIs. Use computer controls when:

  • Playwright/CDP isn't sufficient: When you need to interact with elements that are difficult to target via DOM selectors
  • Testing real user behavior: Simulating actual mouse movements, clicks, and keyboard input as a human would perform them
  • Interacting with browser UI: Clicking on browser chrome elements (address bar, extensions, menus) that aren't accessible via page automation
  • Handling complex interactions: Drag-and-drop operations, hover effects, or interactions that require precise coordinate-based control
  • Capturing visual output: Taking screenshots of the entire browser viewport or specific screen regions
  • Working with canvas/WebGL: Interacting with canvas elements or games where DOM-based automation doesn't work
  • Bypassing automation detection: Some anti-bot systems detect Playwright/CDP usage but not OS-level input

When NOT to use computer controls:

  • For standard web automation (form filling, clicking buttons) - use kernel browsers playwright execute instead for better reliability and speed
  • When you need to access page content or execute JavaScript - use Playwright execution
  • For headless browsers - computer controls require a GUI environment

Prerequisites

Load the kernel-cli skill for Kernel CLI installation and authentication.

Screenshots

Full Screenshot

kernel browsers computer screenshot <session_id> --to screenshot.png

Region Screenshot

kernel browsers computer screenshot <session_id> --to region.png --x 0 --y 0 --width 800 --height 600

Mouse Actions

Click

# Left click
kernel browsers computer click-mouse <session_id> --x 100 --y 200

# Right click (double)
kernel browsers computer click-mouse <session_id> --x 100 --y 200 --button right --num-clicks 2

Move

kernel browsers computer move-mouse <session_id> --x 500 --y 300

Drag

kernel browsers computer drag-mouse <session_id> --point 100,200 --point 200,300 --button left

Scroll

kernel browsers computer scroll <session_id> --x 300 --y 400 --delta-y 120

Keyboard Actions

Type Text

# Fast typing
kernel browsers computer type <session_id> --text "Hello, World!"

# Slow typing (100ms delay between chars)
kernel browsers computer type <session_id> --text "Slow typing" --delay 100

Press Keys

Key names follow X11 keysym definitions. Common keys include: Return, Tab, Escape, BackSpace, Delete, Home, End, Page_Up, Page_Down, Up, Down, Left, Right, Shift_L, Control_L, Alt_L, etc.

# Single key
kernel browsers computer press-key <session_id> --key Return

# Key combination
kernel browsers computer press-key <session_id> --key Control_L+t

# Complex combination with held keys
kernel browsers computer press-key <session_id> --key Control_L+Shift_L+Tab --hold-key Alt_L

Common Pattern: Navigate and Screenshot

SESSION=$(kernel browsers create -o json | jq -r '.session_id')

# Navigate using Playwright
kernel browsers playwright execute $SESSION 'await page.goto("https://kernel.sh")'

# Take screenshot
kernel browsers computer screenshot $SESSION --to kernel-homepage.png

# Cleanup
kernel browsers delete $SESSION --yes

MCP Tool: Use kernel:execute_playwright_code and kernel:take_screenshot for playwright execution and screenshots.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

OpenCode

30.06%
按下载量换算54

Claude Code

20.76%
按下载量换算37

Gemini CLI

16.33%
按下载量换算29

kode

13.33%
按下载量换算24

moltbot

7.71%
按下载量换算14

zencoder

3.12%
按下载量换算6

安全审计

暂无安全审计结果可展示。

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills