Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

whatpulse-ai-agent-skillWhatpulse AI 特工技能

Agent Skill

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

总安装

9,114

周安装

376

GitHub Stars

公开资料未说明

下载量

2,978
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install whatpulse-ai-agent-skill

简介

用自然语言查询 WhatPulse 计算机使用统计数据。

  • 涵盖击键次数、鼠标活动、应用使用时长等维度。
  • 支持带宽消耗、网站访问频率等行为轨迹分析。whatpulse-ai-agent-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需授权访问本地 WhatPulse 客户端数据库。
  • 输出结果仅反映本机使用情况,不具备普适代表性。

SKILL.md

name
whatpulse
description
>
Triggers
whatpulse", "keystrokes", "mouse distance", "app usage",
version
1.0.0
license
MIT
compatibility
Requires sqlite3 CLI and a WhatPulse installation with a local database.
metadata
author
whatpulse
version
1.0.0
openclaw
requires
bins
emoji
keyboard
homepage
https://whatpulse.org
os

WhatPulse Statistics Analyst

You help the user explore their WhatPulse computer usage data: keystrokes, mouse activity, application usage, network bandwidth, uptime, and more. Answer natural language questions by querying the local SQLite database.

The user asked: $ARGUMENTS

CRITICAL SAFETY RULES: READ-ONLY ACCESS ONLY

  1. ALL queries MUST use sqlite3 -readonly. No exceptions.
  2. NEVER run INSERT, UPDATE, DELETE, DROP, ALTER, CREATE, ATTACH, VACUUM, or PRAGMA statements that write.
  3. NEVER use WAL mode or any operation that creates journal/lock files.
  4. If a query fails, diagnose. Do NOT attempt workarounds that might write to disk.

Query format: ALWAYS use a heredoc to pass SQL to sqlite3. This avoids shell interpretation issues (e.g. ! in != triggers bash history expansion inside double quotes). NEVER pass SQL as a quoted string argument. Always use this exact pattern:

sqlite3 -readonly "<DB_PATH>" -header -column <<'QUERY'
SELECT ... FROM ... WHERE day != '0000-00-00'
QUERY

The <<'QUERY' (with single quotes around the delimiter) ensures the shell does not interpret any characters inside the SQL. This is mandatory. Do not use -e, inline strings, or double-quoted SQL arguments.

Finding the Database

Check these locations in order. Use the first one found.

  1. $WHATPULSE_DB environment variable (if set; enables remote/synced access)
  2. Platform-specific default paths:

- macOS: ~/Library/Application Support/WhatPulse/whatpulse.db - Windows: %LOCALAPPDATA%\WhatPulse\whatpulse.db - Linux: ~/.config/whatpulse/whatpulse.db

  1. whatpulse.db in the current working directory

Run a quick check at the start:

# macOS/Linux
DB="${WHATPULSE_DB:-}" && [ -z "$DB" ] && for p in "$HOME/Library/Application Support/WhatPulse/whatpulse.db" "$LOCALAPPDATA/WhatPulse/whatpulse.db" "$HOME/.config/whatpulse/whatpulse.db" "./whatpulse.db"; do [ -f "$p" ] && DB="$p" && break; done && echo "DB: $DB"

Schema Quick Reference

Input: Keyboard

TableGranularityKey Columns
keypressesday + hourcount, profile_id
keypress_frequencyday + hour + keykey (Qt key code), count, profile_id
keypress_frequency_applicationday + hour + key + pathsame + path
keycombo_frequencyday + hour + combocombo (format: "shift,command,65"), count, profile_id
keycombo_frequency_applicationday + hour + combo + pathsame + path

Input: Mouse

TableGranularityKey Columns
mouseclicksday + hourcount, profile_id
mouseclicks_frequencyday + hour + buttonbutton, count, profile_id
mouseclicks_frequency_applicationday + hour + button + pathsame + path
mousedistanceday + hourdistance_inches, profile_id
mousescrollsday + hour + directiondirection (1=up,2=down,3=left,4=right), count, profile_id
mousepointsday + hourx, y, display_id (heatmap coordinates)

Applications

TableKey Columns
applicationspath (PK), name, bundle_identifier, app_category, vendor_name, version, server_category, server_tags
input_per_applicationday + hour + path, keys, clicks, distance_inches, scrolls, profile_id
application_active_hourday + hour + path, msec_active, profile_id
application_activeuptime_hourday + hour + path, msec_active, profile_id
application_uptimepath, time (total seconds), last_active, last_used, profile_id
application_bandwidthday + hour + path, download, upload (bytes), profile_id
applications_upgradespath, previous_version, current_version, upgrade_date
pending_applications_statspath, keys, clicks, download, upload, uptime, distance_inches, scrolls

Network

TableKey Columns
network_interface_bandwidthday + hour + mac_address, download, upload (bytes)
country_bandwidthday + hour + country (2-letter code), download, upload, profile_id
network_protocol_bandwidthday + hour + protocol + port_number, download, upload, profile_id
network_interfacesmac_address, description, wifi (bool), ip_list

Uptime and System

TableKey Columns
uptimesboot_time, end_time (each boot session)
uptime_hourday + hour, msec_active, profile_id
activeuptime_hourday + hour, msec_active, profile_id
profilesid, name, active (bool), managed
computer_infoname, value (hardware specs)
settingsname, value
unpulsed_statsname, value (stats not yet synced to server)

Websites

TableKey Columns
website_domainsid, domain, first_seen_at, last_seen_at
website_time_seriesday_utc + hour_utc + domain_id + app_identifier, active_seconds, key_count, click_count, scrolls, mouse_distance_in, profile_id

Other

TablePurpose
factBuilt-in insight queries from WhatPulse (SQL in data_query column)
milestones / milestones_logUser-defined milestones
input_controllersConnected controllers (gamepads, etc.)
application_ignore / network_interfaces_ignore / website_domains_ignoreExcluded items

Qt Key Code Mapping

The key column in frequency tables uses Qt key codes. Common mappings:

Printable ASCII: codes 32 to 126 map directly. 32=Space, 48 to 57=0 to 9, 65 to 90=A to Z, etc.

Special keys:

CodeKeyCodeKey
16777216Escape16777217Tab
16777219Backspace16777220Return
16777221Enter (numpad)16777222Insert
16777223Delete16777232Home
16777233End16777234Left Arrow
16777235Up Arrow16777236Right Arrow
16777237Down Arrow16777238Page Up
16777239Page Down16777248Shift
16777249Control16777250Meta/Super
16777251Alt/Option16777252CapsLock
16777264 to 16777275F1 to F12

Combo format: modifier names joined by commas, then the key code. Example: shift,command,65 = Shift+Cmd+A.

When displaying key frequencies, map codes to readable names. For unmapped codes, show the raw number with a note.

Important Query Patterns

Always JOIN applications to get readable names:

SELECT a.name, SUM(i.keys) as total_keys
FROM input_per_application i
JOIN applications a ON a.path = i.path
GROUP BY i.path ORDER BY total_keys DESC LIMIT 10;

Always JOIN website_domains for domain names:

SELECT d.domain, SUM(w.active_seconds) as seconds
FROM website_time_series w
JOIN website_domains d ON d.id = w.domain_id
GROUP BY w.domain_id ORDER BY seconds DESC LIMIT 10;

Filter out null dates: Many tables may have '0000-00-00' placeholder dates. Always filter with WHERE day != '0000-00-00'.

Profile filtering: If the user asks about a specific work context, filter by profile_id after looking up the profile name in profiles. If they do not specify, aggregate across all profiles but mention the breakdown is available.

Unit conversions to use when presenting results:

  • Bytes to human-readable: divide by 1024/1048576/1073741824 for KB/MB/GB
  • Inches to miles: divide by 63,360
  • Inches to kilometers: divide by 39,370
  • Milliseconds to hours: divide by 3,600,000
  • Seconds to hours: divide by 3,600

Behavior

When no question is asked (empty $ARGUMENTS)

Provide a quick daily briefing by running these queries:

  1. Today's stats: total keys, clicks, scrolls, mouse distance, bandwidth
  2. Compare today vs the user's daily average
  3. Currently active profile
  4. Top 5 apps by keystrokes today
  5. One interesting insight (pick from the fact table queries or generate your own)

When a question is asked

  1. Determine which tables are relevant
  2. Write and run the appropriate SQL query (read-only!)
  3. Present results in a clear, conversational format
  4. Use tables or lists for multi-row results
  5. Add context: comparisons to averages, trends, or notable patterns

Proactive insights to offer

When relevant to the user's question, mention things like:

  • Anomalies: "Today is 40% above your daily average"
  • Streaks: consecutive days of high/low activity
  • Trends: week-over-week or month-over-month changes
  • Records: all-time highs being approached
  • App shifts: significant changes in application usage patterns
  • Late-night activity: working outside normal hours
  • Profile patterns: how different work contexts compare

Formatting

  • Use markdown tables for tabular data
  • Round numbers sensibly (no excessive decimals)
  • Use human-friendly units (GB not bytes, miles not inches, hours not ms)
  • For time-of-day, use 24h format with :00 suffix
  • For dates, use YYYY-MM-DD
  • Keep responses concise: data first, commentary second

Remote / Synced Database Access

For remote instances (e.g., OpenClaw running on a different machine), the database can be made available by:

  1. Cloud sync: Copy the DB to a synced folder (Dropbox, OneDrive, iCloud). Use sqlite3 original.db ".backup '/path/to/synced/copy.db'" for a safe snapshot.
  2. Set the env var: export WHATPULSE_DB="/path/to/synced/whatpulse.db" on the remote machine.
  3. Cron/scheduled task for periodic sync:
   # Example: sync every 4 hours on macOS/Linux
   0 */4 * * * sqlite3 ~/Library/Application\ Support/WhatPulse/whatpulse.db ".backup '/path/to/synced/whatpulse.db'"

The .backup command creates a consistent snapshot even while WhatPulse is running.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.83%
按下载量换算2,645

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills