Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/clayde/webhook/skills.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def discover_skills(root: Path = SKILLS_ROOT) -> list[Skill]:
for path in files:
try:
skill = _parse_skill(path)
except (ValueError, OSError) as e:
except Exception as e:
log.warning("Failed to parse skill %s: %s", path, e)
continue
if skill.name in seen:
Expand Down
3 changes: 1 addition & 2 deletions src/clayde/webhook/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,5 +138,4 @@ async def worker_loop(queue: JobQueue, *, timeout_s: int, kb_path: str) -> None:
try:
await process_job(job, timeout_s=timeout_s, kb_path=kb_path)
except Exception:
# process_job already emitted a notification + logged.
pass
log.exception("[%s] unhandled error in process_job", job.id)
Loading