← 返回
AI智能 中文

WhatPulse AI Agent Skill

Query WhatPulse computer usage statistics using natural language. Keystrokes, mouse activity, application screen time, network bandwidth, website tracking, u...
使用自然语言查询WhatPulse电脑使用统计数据,包括按键、鼠标活动、应用屏幕使用时间、网络带宽及网站追踪等。
smitmartijn
AI智能 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 505
下载
💾 31
安装
1
版本
#latest

概述

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
  3. 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.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-30 08:51 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Proactive Agent

halthelobster
将AI智能体从任务执行者升级为主动预判需求、持续优化的智能伙伴。集成WAL协议、工作缓冲区、自主定时任务及实战验证模式。Hal Stack核心组件 🦞
★ 836 📥 213,222
ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,359 📥 318,562
ai-intelligence

ontology

oswalpalash
类型化知识图谱,用于结构化智能体记忆与可组合技能。支持创建/查询实体(人员、项目、任务、事件、文档)及关联...
★ 712 📥 243,922