Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计通过

human-typing-simulator人类打字模拟器

Agent Skill

human-typing-simulator 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,268

周安装

224

GitHub Stars

1

下载量

1,846
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install human-typing-simulator

简介

human-typing-simulator 模拟真人打字行为,包含拼写错误、更正延迟和思考停顿等特征。

  • 适合在 OpenClaw 中需要记录错误、修正实践或沉淀经验的能力缺口时使用。
  • 可用于训练 Agent 适应非理想输入环境,提升鲁棒性。
  • 安装命令为 openclaw skills install human-typing-simulator,具体用法请参考来源仓库。
  • 使用前应确认是否会触发文件写入或界面操作,并评估对用户体验的影响。

SKILL.md

name
human-type
description
Type text into a browser like a real human with adjacent-key typos, immediate and deferred corrections, French accent omissions fixed later, thinking pauses, and variable speed over a specified duration.
version
2.0.1
metadata
{"openclaw":{"emoji":"⌨️","requires":{"bins":["node"]}}}

What this skill does

human-type generates a keystroke event script from a desired final text and plays it back in the focused browser element. The script includes:

  • Adjacent-key typos — wrong chars from QWERTY neighbors
  • Immediate fixes — backspace and retype on the spot
  • Deferred fixes — finish typing the paragraph, then navigate back to fix
  • French accent omissions — type e instead of é, fix later (French mode)
  • Thinking pauses — random hesitation gaps
  • Speed jitter — each keystroke has independent timing noise
  • Seeded reproducibility--seed gives identical replays

The final text produced is always exactly the target string.

Installation check

node "{baseDir}/human-type.js" --version

Optional global install:

npm install -g human-type-cli

Core command

node "{baseDir}/human-type.js" run \
  --text "<final text>" \
  --duration <seconds> \
  [--mistakes <0-100>] \
  [--pauses <0-100>] \
  [--defer <0-100>] \
  [--french] \
  [--accent-omit <0-100>] \
  [--selector "<css>"] \
  [--seed <n>] \
  [--dry-run]

All flags

FlagDefaultDescription
--text*(required)*Final text to produce
--duration10Total time in seconds
--mistakes20Immediate typo rate %
--pauses15Pause frequency %
--defer35% of typos deferred (fixed after paragraph)
--frenchoffEnable French accent omission mode
--accent-omit60% of accented chars omitted initially (French mode)
--selectorCSS selector to click/focus before typing
--delay-start500Ms to wait before first keystroke
--seedrandomFix RNG for reproducible output
--dry-runoffPrint script without typing
--cdp-urlhttp://127.0.0.1:18800Chrome DevTools Protocol URL

Workflow

# 1. Start and use the OpenClaw browser tool
# Never use macOS `open` or any shell browser launch command for this workflow.
openclaw browser start

# 2. Navigate to target page
openclaw browser open https://example.com

# 3. Get element refs
openclaw browser snapshot --interactive

# 4. Type like a human into a specific element
# Prefer --selector so the CLI can focus the field itself.

# 5. Type like a human
node "{baseDir}/human-type.js" run \
  --text "Hello, I'd like to ask about your services." \
  --duration 10 \
  --mistakes 20 \
  --defer 40 \
  --selector "textarea"

# 6. Verify
openclaw browser snapshot --interactive

Common patterns

Natural English paragraph

node "{baseDir}/human-type.js" run \
  --text "The meeting went well. I think we aligned on the key points." \
  --duration 15 \
  --mistakes 25 \
  --defer 40 \
  --pauses 20

French text (accent omissions fixed later)

node "{baseDir}/human-type.js" run \
  --text "Être ou ne pas être, voilà la question." \
  --duration 15 \
  --french \
  --accent-omit 70 \
  --defer 30

Reproducible (for testing / demo recording)

node "{baseDir}/human-type.js" run \
  --text "Exact same every time." \
  --duration 8 \
  --seed 42

Preview before running

node "{baseDir}/human-type.js" run --text "Check this first" --duration 6 --dry-run

Save and replay a script

# Generate and save
node "{baseDir}/human-type.js" generate \
  --text "Reuse this exact sequence." \
  --duration 8 --seed 42 \
  --output ./my-script.json

# Replay later
node "{baseDir}/human-type.js" play ./my-script.json --selector "#comment"

# Inspect stats
node "{baseDir}/human-type.js" inspect ./my-script.json

WPM reference

StyleWPMDuration for 100 chars
Fast typist70+~9s
Average adult50~12s
Slow / careful30~20s
Hunt-and-peck15~40s

Rules

  • Always use the OpenClaw browser tool for browser startup, navigation, and inspection before typing.
  • Never use macOS open, shell browser launch commands, or any non-OpenClaw browser startup path for this workflow.
  • If the OpenClaw browser is not running yet, start it with openclaw browser start before opening the page.
  • In OpenClaw, prefer node "{baseDir}/human-type.js" so the workspace skill works without any global install.
  • Always prefer --selector over clicking manually before running because the CLI works directly through CDP, not OpenClaw ref IDs.
  • Use --dry-run first when the duration or behavior is uncertain.
  • For multi-field forms, call human-type run once per field with the appropriate --selector.
  • For French text, --french without --accent-omit uses the 60% default — adjust if you want more or fewer accent omissions.
  • --defer 0 means all typos are fixed immediately (backspace-and-retype). --defer 100 means all typos are left in place and fixed after the paragraph.
  • The browser must already be open in OpenClaw before running. By default the CLI connects to http://127.0.0.1:18800, which matches the standard openclaw browser profile.
  • --seed values are fully deterministic — the same seed + same text + same options always produces an identical keystroke sequence.

Event format (JSON script)

Each event in the generated script has:

{ "type": "type",           "ch": "H", "time": 0,   "duration": 195 }
{ "type": "delete",                    "time": 195, "duration": 140 }
{ "type": "pause",                     "time": 335, "duration": 480 }
{ "type": "arrow",  "dir": "Left", "n": 4, "time": 815, "duration": 320 }
{ "type": "select-back", "n": 1,       "time": 1135,"duration": 110 }
{ "type": "select-replace", "ch": "é", "time": 1245,"duration": 200 }

time is ms offset from start. duration is gap until next event.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.01%
按下载量换算1,385

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills