Agent skill

automation-error-handling

Sub-skill of automation: Error Handling (+2).

Stars 4
Forks 4

Install this agent skill to your Project

npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/development/automation/automation/error-handling

SKILL.md

Error Handling (+2)

Error Handling

python
# Retry with exponential backoff
def with_retry(func, max_attempts=3, base_delay=1):
    for attempt in range(max_attempts):
        try:
            return func()
        except Exception as e:
            if attempt == max_attempts - 1:
                raise
            delay = base_delay * (2 ** attempt)
            time.sleep(delay)

Secret Management

yaml
# Use environment variables or secret stores
env:
  API_KEY: ${{ secrets.API_KEY }}
  DATABASE_URL: ${{ secrets.DATABASE_URL }}

Idempotency

python
# Ensure operations can be safely retried
def process_with_idempotency(record_id, data):
    existing = get_by_id(record_id)
    if existing and existing.checksum == compute_checksum(data):
        return existing  # Already processed
    return upsert(record_id, data)

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results