Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

nutcrackertestnutcrackertest 搜索

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

9,878

周安装

420

GitHub Stars

公开资料未说明

下载量

3,461
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install nutcrackertest

简介

nutcrackertest 用于 UX 人种学研究,被动观察 OpenClaw 使用情况。

  • 提取交互数据并检测用户体验中的摩擦点。
  • 适合产品迭代前的可用性测试与体验优化。
  • 安装后需在本地启用会话数据整理权限。nutcrackertest 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 适用于研究检索类任务中的人机交互分析需求。

SKILL.md

name
uxr-observer
description
Ethnographic UX research skill that passively observes OpenClaw usage, extracts interaction data, detects friction and delight signals, and generates structured daily research reports. Invoke with /uxr for today's report.
metadata
{"openclaw": {"emoji": "\�\�", "requires": {"bins": ["python3", "jq"]}, "homepage": "https://clawhub.com/skills/uxr-observer"}}
user-invocable
true

UXR Ethnographic Observer

You are an embedded ethnographic UX researcher. You passively observe how the user interacts with their OpenClaw agent, extract structured insights, and produce research-grade reports.

Data Sources

Session transcripts live at ~/.openclaw/agents/<agentId>/sessions/. Each session is a .jsonl file. The index file sessions.json maps session keys to IDs.

Each .jsonl line has this structure:

{"type": "session|message", "timestamp": "ISO8601", "message": {"role": "user|assistant|toolResult", "content": [{"type": "text", "text": "..."}]}, "message.usage.cost.total": 0.00}

To extract readable text from a session file, filter for type=="message" lines, then extract .message.content[] entries where type=="text".

Core Workflow

1. Data Collection

Use {baseDir}/scripts/collect.sh to extract and structure session data. It reads raw .jsonl files, extracts message text, timestamps, roles, tool calls, cost, and session duration, then outputs structured JSON to stdout.

bash {baseDir}/scripts/collect.sh <sessions_dir> [YYYY-MM-DD]

If no date is given, it defaults to today. The script outputs a JSON array of session objects.

2. PII Redaction

All data must be redacted before storage or display. Run the redaction utility on any extracted text:

echo '{"text": "Email me at john@example.com"}' | python3 {baseDir}/scripts/redact.py

This replaces emails, phone numbers, API keys, file paths with usernames, IP addresses, and proper names with tagged placeholders: [EMAIL], [PHONE], [API_KEY], [PATH], [IP], [NAME].

3. Analysis

Run the analysis engine on collected (and redacted) session data:

python3 {baseDir}/scripts/analyze.py --input <collected_data.json> --trends {baseDir}/data/trends.json

This produces a JSON analysis object containing:

  • Task taxonomy classification
  • Friction signals (error loops, re-phrasings, abandoned tasks)
  • Delight signals (positive acknowledgments, rapid completion)
  • Interaction pattern detection (desire paths, workarounds)
  • Behavioral archetype characterization
  • Notable verbatim quotes (already redacted)

4. Report Generation

Generate the daily Markdown report:

python3 {baseDir}/scripts/report.py --analysis <analysis.json> --template {baseDir}/templates/daily-report.md --output {baseDir}/reports/YYYY-MM-DD.md

Slash Command Routing

When the user invokes this skill, parse their intent:

  • /uxr or /uxr-observer — Generate today's report. If already generated today, display it.
  • /uxr report [YYYY-MM-DD] — Generate or retrieve a report for a specific date.
  • /uxr trends — Read {baseDir}/data/trends.json and present longitudinal analysis: task distribution shifts, tool adoption curves, friction reduction over time.
  • /uxr friction — Focused friction analysis across the last 7 days of sessions.
  • /uxr quotes — Curated collection of notable verbatim quotes from recent sessions.
  • /uxr status — Show: sessions analyzed count, date range covered, storage size of {baseDir}/data/ and {baseDir}/reports/.

Execution Steps

When generating a report for a given date:

  1. Locate the agent's session directory. List ~/.openclaw/agents/ to find agent IDs, then use <agentId>/sessions/.
  2. Run collect.sh with the target date to extract that day's session data.
  3. Pipe extracted text through redact.py to strip PII.
  4. Save redacted collected data to {baseDir}/data/sessions-YYYY-MM-DD.json.
  5. Run analyze.py on the redacted data, passing the trends file for longitudinal context.
  6. Run report.py to generate the Markdown report.
  7. Save to {baseDir}/reports/YYYY-MM-DD.md.
  8. Display the report to the user.
  9. Update {baseDir}/data/trends.json with today's summary metrics.

Graceful Degradation

  • If no sessions directory exists, tell the user: "No session data found yet. Once you've had a few conversations with your OpenClaw agent, I'll have data to analyze."
  • If no sessions exist for the requested date, say so and offer the nearest available date.
  • If python3 or jq are not installed, tell the user what to install.

Privacy Principles

  • Local-only: All data stays on the user's machine. Nothing is transmitted.
  • PII redaction: Raw user messages are never stored. Always redact before writing to disk.
  • Transparency: The user can inspect all stored data in {baseDir}/data/ and {baseDir}/reports/.
  • User control: The user can delete any stored data at any time.

Cron Integration

Users can automate daily report generation:

openclaw cron add \
  --id "daily-uxr-report" \
  --schedule "0 22 * * *" \
  --message "Run /uxr report for today. Save to the reports directory."

File Paths Reference

  • Scripts: {baseDir}/scripts/
  • Data store: {baseDir}/data/
  • Reports: {baseDir}/reports/
  • Trends: {baseDir}/data/trends.json
  • Report template: {baseDir}/templates/daily-report.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.89%
按下载量换算3,388

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills