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

task-experience-summaries任务经验总结

Agent Skill

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

总安装

21,650

周安装

930

GitHub Stars

公开资料未说明

下载量

7,589
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install task-experience-summaries

简介

记录 OpenClaw 任务执行中的问题与最佳实践知识库。

  • 涵盖安装故障排除、包管理与配置优化经验。task-experience-summaries 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 适用于持续改进 Agent 能力与减少重复错误。
  • 安装前需确认权限范围、维护状态及是否写入共享存储。
  • 建议结合原始 README 核验条目更新机制与访问控制。

SKILL.md

name
task-experience-summaries
description
Experience summaries for OpenClaw tasks, including common installation problems, troubleshooting steps, and best practices for packages, configurations, and tools. Use when experiencing installation issues, facing unknown error messages, or needing guidance on package names and configuration methods. Also use when documenting new experiences for future reference.

Task Experience Summaries

Overview

This skill provides curated experience summaries from real OpenClaw tasks, including:

  • Installation/packaging problems and solutions
  • Common error messages and root causes
  • Package search and discovery methods
  • Configuration patterns and environment setups
  • Tool-specific troubleshooting steps
  • Best practices for documenting new experiences

Each entry includes: Problem → Solutions → Key Lessons → Prevention Steps.

Common Installation Packages

ClawHub CLI

Purpose: Search, install, update, and publish OpenClaw skills from clawhub.com.

Installation:

npm install -g clawhub

Usage:

# Search for skills
clawhub search "keyword"

# Install a skill
clawhub install "skill-name"

# List installed skills
clawhub list

# Publish a new skill (when ready)
clawhub publish "skill-directory"

Authentication:

  • Token: clh_<token>
  • Username: @<username>
  • Available at: https://clawhub.ai

Tavily Search

Purpose: AI-optimized web search via Tavily API.

Configuration:

# Set environment variable
set TAVILY_API_KEY=your-api-key-here

Usage:

  • Search query: web_search tool
  • API key location: <skill-dir>/README_CONFIG.md
  • Quality: High relevance for AI agents

Troubleshooting Categories

1. Package Installation Issues

Problem: npm 404 Not Found

Scenario: Install command fails with "404 Not Found"

Solutions:

  1. Check package name spelling
  2. Search ClawHub: clawhub search "keyword"
  3. Try npm search: npm search "keyword"
  4. Verify the package exists in npm registry

Typical Fixes:

  • Wrong package name (e.g., tavily-search → correct: tavily-mcp)
  • Package removed or renamed
  • Typo in command

Key Lesson: Always verify package existence before installation. Use search tools.

Problem: Windows Permission EEXIST Error

Scenario: Installation fails with "EEXIST: file already exists"

Solution:

npm i -g clawhub --force

Root Cause: Old version files remain, blocking installation

Prevention: Use --force for global installations on Windows if issues occur

Problem: Unknown Package Name

Scenario Package not found in npm registry

Solutions:

  1. Use ClawHub search: clawhub search "keyword"
  2. Try broader search terms
  3. Check if the skill is hosted on ClawHub (OpenClaw's official registry)

Example:

Initial attempt: npm install "find-skills" → 404
Solution: clawhub search "find-skills" → Found "find-skills v0.1.0"
Result: clawhub install "find-skills" → Success

Key Lesson: ClawHub is the first place to check for OpenClaw skills

2. Configuration Issues

Environment Variables

Standard Pattern:

# SET in current session
set ENV_VAR=value

# For persistent settings, add to shell config
# (e.g., .bashrc, .zshrc, PowerShell profile)

Common Variables:

  • TAVILY_API_KEY - For web search tools
  • OPENAI_API_KEY - If needed for OpenAI-based skills
  • Custom credentials for specific tools

Verification:

echo $TAVILY_API_KEY  # Unix-like
echo %TAVILY_API_KEY% # PowerShell/CMD

3. Tool-Specific Issues

OpenClaw Browser Extension

Symptom: "tab not found" errors after browser operations

Solutions:

  1. Restart OpenClaw Gateway (OpenClaw.app → Restart)
  2. Keep Chrome extension badge ON (not OFF)
  3. Do not close browser tab between operations
  4. Reseat connection: Open Extension → Attach Tab → Badge ON

Best Practice:

  • Browser tool is for one-time operations or screenshots
  • Not suitable for long-lived automated sessions
  • Direct browser interaction is more reliable for persistent needs

Browser Profile Issues

Symptom: Multiple profiles causing conflicts

Solutions:

  • Use --profile=chrome for managed Chrome browser
  • Use --profile=openclaw for isolated browser
  • Test with clean profile if issues persist

Status Check:

openclaw gateway status

Problem-Solving Workflow

Step 1: Identify the Category

Determine if the issue belongs to:

  • Installation problems
  • Configuration issues
  • Tool-specific malfunctions
  • Package discovery
  • Platform-specific behavior (Windows/Linux/macOS)

Step 2: Search the Summary

Use the tables and categorized entries above:

  • Match symptoms to category
  • Review associated solutions
  • Try recommended fixes

Step 3: Test Solutions

Apply suggested fixes in order:

  1. Most common/simplest solution first
  2. Platform-specific fixes second
  3. Advanced configurations third

Step 4: Document New Experiences

When to Document:

  • Successfully resolved an unknown problem
  • Discovered a pattern or workaround
  • Learned a configuration trick
  • Found that a documented solution works differently

How to Document:

  1. Record the problem clearly
  2. Note the solution steps
  3. Include platform-specific details
  4. Add prevention/prevention steps
  5. Update relevant section in this SKILL.md

Template for New Entry:

### Problem: [Clear description]

**Scenario:** [Context where problem occurs]

**Solution:** [Step-by-step resolution]

**Root Cause:** [Why this happens]

**Prevention:** [How to avoid]

**Platform Notes:** [If platform-specific]

Step 5: Iterate and Refine

Review after using the skill:

  • Are entries clear and actionable?
  • Are symptoms and solutions well-matched?
  • Is formatting consistent?
  • Any missing common issues?

Quick Reference Table

Issue TypeSymptomsPrimary ToolKey Command
Package not found404, npm errorsnpm, ClawHubclawhub search "keyword"
Permission errorsEEXIST, access deniednpm install--force flag
Configuration missingTool failsEnvironment variablesset VAR=value
Browser connectionTab not foundBrowser toolsRestart Gateway + Badge ON
Unknown packageCannot installclawhub listclawhub install "name"

Best Practices

  1. Search Before Guessing: Always use search tools first
  2. Document Solutions: Write down everything you learn
  3. Categorize Issues: Group by type for easy lookup
  4. Platform Notes: Track Windows/macOS/Linux differences
  5. Prevention Over Cure: Add prevention steps to avoid recurrence
  6. Keep It Practical: Focus on actionable steps, not theory

Example Use Cases

Example 1: Installing a New Skill

# User asks: "I need a weather skill for checking forecasts"

# Step 1: Search
clawhub search "weather"

# Step 2: Identify candidate
Found: "weather v1.0" - Get current weather and forecasts (no API key required)

# Step 3: Install
clawhub install "weather"

# Step 4: Configure (if needed)
# Check README_CONFIG.md for required environment variables

# Step 5: Use
# Use web_search tool with query: "weather today"

Example 2: Troubleshooting Browser Issues

# Symptom: Browser tool reports "tab not found"

# Step 1: Restart Gateway (first fix)
OpenClaw.app → Restart

# Step 2: Check extension
✓ Badge indicator should be ON
✓ Running state
✓ CDP Ready (Chrome DevTools Protocol)

# Step 3: Reattach if needed
Click OpenClaw extension icon → Attach tab → Badge ON

# Step 4: Verify
Try browser open → snapshot

Example 3: Finding Unknown Package

# Symptom: "I need an RSS feed parser" - package unknown

# Step 1: ClawHub search
clawhub search "rss"

# Step 2: Identify
Found: "rss-parser skill v0.5.0" with description "Parse RSS feeds"

# Step 3: Install
clawhub install "rss-parser"

# Result: Success

Notes

  • All entries are based on actual resolved issues
  • Platform-specific behaviors are noted when applicable
  • Configuration details refer to current workspace setup
  • For newer issues, always consult official documentation before relying on summaries

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.38%
按下载量换算6,631

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills