You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

vedro-debug-prompt

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vedro-debug-prompt

Auto‑generates AI‑ready debug prompts for failed scenarios

0.2.1
pipPyPI
Maintainers
1

Vedro Debug Prompt

PyPI PyPI - Downloads Python Version

AI Debug Prompt for Vedro – auto‑generates AI‑friendly Markdown prompts for every failed scenario, ready to paste straight into ChatGPT (or any LLM).

Installation

Quick

For a one‑liner install via Vedro’s plugin manager:

$ vedro plugin install vedro-debug-prompt

Manual

  • Install the package:
$ pip3 install vedro-debug-prompt
  • Enable the plugin in vedro.cfg.py:
import vedro
import vedro_debug_prompt

class Config(vedro.Config):
    class Plugins(vedro.Config.Plugins):
        class DebugPrompt(vedro_debug_prompt.DebugPrompt):
            enabled = True

Usage

Run your tests as usual:

vedro run

When a scenario fails you’ll see something like:

 ✗ decode base64 encoded string
   |> AI Debug Prompt: .vedro/tmp/prompt_2ltoa90r.md

⌘‑click (or Ctrl‑click) the path in most terminals to open the file, then paste its contents into your favourite LLM for an instant diagnosis and minimal fix suggestion.

Documentation

Full usage examples and advanced configuration live in the docs:

👉 vedro.io/docs/ai/debug-prompt

Keywords

vedro

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts