From 2333c0013202483d6e0299a1aea7273f95203a75 Mon Sep 17 00:00:00 2001 From: ElCorbacho Date: Mon, 9 Mar 2026 01:20:23 -0300 Subject: [PATCH] feat(setup): add debug category with comprehensive debugging terms Add new 'debug' domain category to DOMAIN_HEURISTICS with keywords covering: - Debugging tools and techniques (debug, breakpoint, trace) - Logging frameworks (logger, logging) - Performance profiling (profiler, profiling, devtools) - Monitoring and observability (sentry, datadog, newrelic) - Error tracking and diagnostics (error-tracking, diagnostic) This enables automatic skill classification for debugging-related tools and extensions. --- setup.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/setup.py b/setup.py index 33283c8..38d6ad8 100644 --- a/setup.py +++ b/setup.py @@ -333,6 +333,26 @@ class Colors: "data-", "etl", ], + "debug": [ + "debug", + "debugging", + "breakpoint", + "logger", + "logging", + "trace", + "profiler", + "profiling", + "devtools", + "inspector", + "monitor", + "troubleshoot", + "diagnostic", + "error-tracking", + "sentry", + "datadog", + "newrelic", + "bugtracking", + ], "education": [ "learning", "course",