技能详情(站内镜像,无评论)
作者:BytesAgain2 @ckchzh
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 44 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:ckchzh/error
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill is an offline error-handling reference that runs a bundled shell script to print documentation; its requirements and behavior match its description and nothing obvious or disproportionate is requested.
目的
The name/description (error-handling reference) matches the provided assets: an instruction-only skill that calls a bundled scripts/script.sh which prints documentation for error handling, HTTP status codes, retry strategies, logging, etc. There are no unexpected credentials, binaries, or external services required.
说明范围
SKILL.md directs the agent to run local commands like `scripts/script.sh intro` and other subcommands. The included script appears to only output reference text (cat << 'EOF' blocks) for each command. The instructions do not ask the agent to read unrelated system files, access external endpoints, or collect user secrets.
安装机制
No install spec is provided and the skill is instruction-only with a local script. Nothing is downloaded or extracted from remote URLs, so there is no elevated install risk.
证书
The skill declares no required environment variables or credentials. SKILL.md documents an optional ERROR_DIR (default ~/.error/) for data, which is reasonable for a doc/reference skill; no sensitive secrets are requested.
持久
always is false and the skill does not request permanent system presence. The skill will only run when invoked and does not modify other skills or global agent configuration.
综合结论
This skill appears to be a local documentation tool implemented as a bundled shell script that prints error-handling guidance. It is coherent with its description and doesn’t request credentials or network access. Before installing or running: (1) quickly review scripts/script.sh yourself to confirm it only prints text (search for network commands like curl, wget, nc, ssh or file-write operations), (2) avoid running it as an elevated user (roo…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Error」。简介:Error handling reference — error types, exception patterns, HTTP status codes, …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/ckchzh/error/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: "error"
version: "1.0.0"
description: "Error handling reference — error types, exception patterns, HTTP status codes, retry strategies, and observability. Use when designing error handling, debugging failures, or implementing resilient systems."
author: "BytesAgain"
homepage: "https://bytesagain.com"
source: "https://github.com/bytesagain/ai-skills"
tags: [error, exception, debugging, http-status, retry, resilience, devtools]
category: "devtools"
---
# Error — Error Handling & Resilience Reference
Quick-reference skill for error handling patterns, HTTP status codes, retry strategies, and debugging techniques.
## When to Use
- Designing error handling strategy for an application
- Looking up HTTP status codes and their proper usage
- Implementing retry logic with backoff strategies
- Debugging production errors and failure patterns
- Building resilient systems with circuit breakers
## Commands
### `intro`
```bash
scripts/script.sh intro
```
Overview of error handling — philosophy, types, and design principles.
### `http`
```bash
scripts/script.sh http
```
HTTP status codes — complete reference with proper usage.
### `patterns`
```bash
scripts/script.sh patterns
```
Error handling patterns — try/catch, Result types, error boundaries.
### `retry`
```bash
scripts/script.sh retry
```
Retry strategies — exponential backoff, jitter, circuit breakers.
### `logging`
```bash
scripts/script.sh logging
```
Error logging best practices — structured logging, context, severity levels.
### `messages`
```bash
scripts/script.sh messages
```
Error message design — user-facing vs developer-facing, i18n, codes.
### `debug`
```bash
scripts/script.sh debug
```
Debugging techniques — root cause analysis, bisection, tracing.
### `checklist`
```bash
scripts/script.sh checklist
```
Error handling checklist for production applications.
### `help`
```bash
scripts/script.sh help
```
### `version`
```bash
scripts/script.sh version
```
## Configuration
| Variable | Description |
|----------|-------------|
| `ERROR_DIR` | Data directory (default: ~/.error/) |
---
*Powered by BytesAgain | bytesagain.com | hello@bytesagain.com*