调试

定位并修复问题,分析错误

用途与选择建议

这类技能帮助你把可复现的问题或变更需求转化为可审查的代码修改。选择时核对语言、框架和测试工具是否匹配项目;采用修改前,检查差异并运行项目自身的验证。

显示 1-24 / 共 4970 个技能
bobmatnyc

verification-before-completion

bobmatnyc

Run verification commands and confirm output before claiming success

调试 149 10个月前
bobmatnyc

systematic-debugging

bobmatnyc

Methodical debugging instead of random changes

调试 149 10个月前
render-oss

render-debug

render-oss

Debug failed Render deployments by analyzing logs, metrics, and database state. Identifies errors (missing env vars, port binding, OOM, etc.) and suggests fixes. Use when deployments fail, services won't start, or users mention errors, logs, or debugging.

调试 76 7个月前
Terryc21

debug

Terryc21

'Systematic debugging workflow: reproduce, isolate, hypothesize, verify, fix. Triggers: "debug", "find bug", "fix crash", "why is this broken", "not working".'

调试 49 6个月前
Terryc21

scan-similar-bugs

Terryc21

'After fixing a bug, systematically find other instances of the same pattern. Triggers: "scan for similar bugs", "find other instances", "check for similar issues", "scan similar bugs".'

调试 49 6个月前
bobmatnyc

verification-before-completion

bobmatnyc

Run verification commands and confirm output before claiming success

调试 73 9个月前
TechNickAI

mcp-debug

TechNickAI

"Use when testing MCP servers, debugging MCP tool responses, exploring MCP capabilities, or diagnosing why an MCP tool returns unexpected data"

调试 24 7个月前
TechNickAI

systematic-debugging

TechNickAI

"Use when debugging bugs, test failures, unexpected behavior, or needing to find root cause before fixing"

调试 24 8个月前
arlenagreer

chrome-devtools

arlenagreer

Chrome debugging and inspection via local CDP Docker container

调试 4 9个月前
mukul975

analyzing-outlook-pst-for-email-forensics

mukul975

Analyze Microsoft Outlook PST and OST files for email forensic evidence including message content, headers, attachments,

数据处理 3.1万 5个月前
mukul975

analyzing-packed-malware-with-upx-unpacker

mukul975

'Identifies and unpacks UPX-packed and other packed malware samples to expose the original executable code for

调试 3.1万 5个月前
mukul975

analyzing-ios-app-security-with-objection

mukul975

'Performs runtime mobile security exploration of iOS applications using Objection, a Frida-powered toolkit that

调试 3.1万 5个月前
mukul975

analyzing-macro-malware-in-office-documents

mukul975

'Analyzes malicious VBA macros embedded in Microsoft Office documents (Word, Excel, PowerPoint) to identify download

调试 3.1万 5个月前
mukul975

analyzing-docker-container-forensics

mukul975

Investigate compromised Docker containers by analyzing images, layers, volumes, logs, and runtime artifacts to

调试 3.1万 5个月前
mukul975

analyzing-email-headers-for-phishing-investigation

mukul975

Parse and analyze email headers to trace the origin of phishing emails, verify sender authenticity, and identify

调试 3.1万 5个月前
mukul975

analyzing-network-covert-channels-in-malware

mukul975

Detect and analyze covert communication channels used by malware including DNS tunneling, ICMP exfiltration,

调试 3.1万 5个月前
PostHog

playwright-test

PostHog

Write a playwright test, make sure it runs, and is not flaky.

调试 4万 5个月前
PostHog

react-doctor

PostHog

Diagnose and fix React codebase health issues. Use when reviewing React code, fixing performance problems, auditing security, or improving code quality.

调试 4万 6个月前
PostHog

exploring-llm-traces

PostHog

Debug and inspect LLM/AI agent traces using PostHog's MCP tools. Use when the user pastes a trace or session URL (e.g. /ai-observability/traces/<id> or /ai-observability/sessions/<id>), asks to debug a trace, figure out what went wrong, check if an agent used a tool correctly, verify context/files were surfaced, inspect subagent behavior, investigate LLM decisions, or analyze token usage and costs. Also use when raw SQL/HogQL against events.properties.$ai_input / $ai_output_choices returns empty — message content lives only on the dedicated posthog.ai_events table.

代码评审 4万 11天前
PostHog

extending-personhog-test-harness

PostHog

When and how to add scenarios, chaos events, and invariants to the personhog e2e test harness (rust/personhog-test-harness). Use after fixing a bug or regression in the personhog leader path (leader, router, writer, replica, coordination protocol) so the fix gets a permanent regression scenario; when adding a new failure mode to test (crashes, drains, zombies, lag, failover); or when a new correctness property needs asserting during runs. Trigger terms: personhog gate, chaos scenario, test harness, leader path regression, handoff bug, eviction, writer lag, acked write.

调试 4万 5天前
PostHog

analyzing-expensive-users

PostHog

Analyze the most expensive users in AI observability and explain why they cost so much. Use when the user asks about top spenders, expensive users, per-user LLM cost, user-level cost drivers, or patterns behind high AI observability spend.

数据库 4万 27天前
PostHog

security-audit

PostHog

Focused security audit of code, calibrated to surface real exploitable bugs and suppress theoretical findings. Use when the user asks to "audit", "security-audit", "find vulnerabilities", "check for IDOR/SSRF/XSS/injection", or wants a security review of a file, directory, branch diff, or PR. Covers access control, injection, auth/secrets, sensitive data, business logic, web boundary, and AI agent/LLM trifecta risks. Produces calibrated findings with data flow, exploit request, fix, and confidence — no theoretical or defense-in-depth nits.

认证鉴权 4万 3个月前
PostHog

validating-and-publishing-canvases

PostHog

Validate and publish a canvas source project safely: the source-project shape, declared capabilities, reading the current version pointer, iterating on validation diagnostics, guarded publishing with expected_current_version_id, staging a draft build and promoting it, waiting out the queued build, and recovering from a 409 version_conflict or a 429 capacity limit without overwriting concurrent work. Use whenever a canvas edit is ready to save, a draft build is wanted, a canvas publish or build returns diagnostics or a conflict, or a task needs to understand canvas version history.

代码生成 4万 19天前
PostHog

debugging-local-task-agent-runs

PostHog

'Debug the output of local PostHog task runs — the wizard cloud-run path that executes inside a Docker sandbox under the local Temporal process-task workflow (the wizard that integrates PostHog, then the coding agent that commits and opens the PR). Use when a local run looks stuck, failed, or silent, or when you need to read the wizard or agent logs. Covers the .env.local keys + ai_features intent required for cloud runs locally, finding the task UUID (docker ps, temporal CLI, Temporal UI at localhost:8081), tailing live logs inside the sandbox container (/tmp/posthog-wizard.log, /tmp/agent-server.log), and reading the durable per-run console log from object storage after the sandbox is torn down. Trigger terms: task-sandbox, run_wizard, agent-server, process-task, SANDBOX_PROVIDER, LLM_GATEWAY, cloud_run, posthog-wizard.log.'

调试 4万 1个月前