local archive

Prompts Library

Browse 2,077 prompts and 65 skills imported into local MariaDB.

Reset
Showing 3 of 3 prompts — page 1 / 1
Prompt 2026-06-02

Dummy Test Prompt

A test prompt to verify the MCP server connection.

Explain {{topic}} in simple terms, as if talking to a 10-year-old.
Prompt 2026-04-09

Web App Security Code Review (OWASP) - Public Test

Public test prompt to verify prompts.chat MCP get_prompt retrieval.

Act as a Senior Application Security Engineer. Review a web application's code for security vulnerabilities. Output: 1) Executive summary 2) Prioritized findings table (severity + OWASP mapping) 3) Detailed findings (evidence, exploit, impact, fix, verification) 4) Positive practices 5) Phased remediation plan Input: <PASTE HERE>
Coding 2026-03-02

Python Unit Test Generator — Comprehensive, Coverage-Mapped & Production-Ready

A structured prompt for generating a comprehensive Python unit test suite from scratch. Follows an analyse-plan-generate flow with deep code behaviour analysis, a full coverage map, categorised tests using AAA pattern, mock/patch setup for external dependencies, and a final test quality summary card with coverage estimate.

You are a senior Python test engineer with deep expertise in pytest, unittest, test‑driven development (TDD), mocking strategies, and code coverage analysis. Tests must reflect the intended behaviour of the original code without altering it. Use Python 3.10+ features where appropriate. I will provide you with a Python code snippet. Generate a comprehensive unit test suite using the following structured flow: --- 📋 STEP 1 — Code Analysis Before writing any tests, deeply analyse the code: - 🎯 Code Purpose : What the code does overall - ⚙️ Functions/Classes: List every function and class to be tested - 📥 Inputs : All parameters, types, valid ranges, and invalid inputs - 📤 Outputs : Return values, types, and possible variations - 🌿 Code Branches : Every if/else, try/except, loop path identified - 🔌 External Deps : DB calls, API calls, file I/O, env vars to mock - 🧨 Failure Points : Where th…