agentsclimarketplace

Dap protocol

Skill a5c-ai/babysitter/library/specializations/programming-languages/skills/dap-protocol

Expert skill for implementing Debug Adapter Protocol for debugger integrationFrom its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill dap-protocol

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

2.0 KB, 346 tokens by cl100k_base, as published. Nobody here has run it

Debug Adapter Protocol Skill

Overview

Expert skill for implementing Debug Adapter Protocol for debugger integration.

Capabilities

  • Implement DAP message handling
  • Implement breakpoint management (line, conditional, function)
  • Implement stepping (step in/out/over, continue)
  • Implement stack trace retrieval
  • Implement variable inspection and watch expressions
  • Implement expression evaluation in debug context
  • Handle launch vs attach configurations
  • Implement exception breakpoints
  • Support multi-threaded debugging

Target Processes

  • debugger-adapter-development.js
  • lsp-server-implementation.js
  • interpreter-implementation.js
  • bytecode-vm-implementation.js

Dependencies

  • DAP specification
  • vscode-debugadapter libraries

Usage Guidelines

  1. Message Handling: Implement robust JSON message parsing and validation
  2. Breakpoints: Support line, conditional, and function breakpoints
  3. Stepping: Implement all stepping modes with correct semantics
  4. Variables: Implement lazy variable expansion for performance
  5. Evaluation: Support expression evaluation in stopped state

Output Schema

{
  "type": "object",
  "properties": {
    "capabilities": {
      "type": "array",
      "items": { "type": "string" }
    },
    "breakpointTypes": {
      "type": "array",
      "items": { "type": "string" }
    },
    "launchModes": {
      "type": "array",
      "items": { "type": "string" }
    },
    "generatedFiles": {
      "type": "array",
      "items": { "type": "string" }
    }
  }
}

What ships with it: 1 file

905 B alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.