
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@pagopa/dx-mcpprompts
Advanced tools
A TypeScript package for managing Markdown-based prompts with YAML frontmatter, designed for AI assistants and the Model Context Protocol (MCP). This package provides a self-contained collection of validated prompts that can be consumed programmatically or served via MCP servers.
Create a new Markdown file in src/prompts/ with this structure:
---
id: "unique-prompt-id"
title: "Human Readable Title"
description: "Brief description of what this prompt does"
category: "terraform|security|infrastructure|development"
enabled: true
tags: ["tag1", "tag2", "tag3"]
examples:
- "Example usage scenario 1"
- "Example usage scenario 2"
arguments:
- name: "argument_name"
description: "Description of what this argument does"
required: true
- name: "optional_argument"
description: "Optional argument with default"
required: false
default: "default-value"
mode: "agent|assistant|completion"
tools: ["tool1", "tool2"]
---
# Your Prompt Title
Your prompt content goes here using **Markdown formatting**.
You can reference arguments using template variables: {{argument_name}}
## Instructions
1. Be specific and clear in your instructions
2. Use structured format with headings and lists
3. Include examples where helpful
4. Reference tools that should be used: {{tools}}
Expected outcome: {{optional_argument}}
id: Unique identifier (kebab-case, no spaces)title: Human-readable title for the promptdescription: Brief description of the prompt's purposecategory: Main category (terraform, security, infrastructure, development)enabled: Boolean flag to enable/disable the prompttags: Array of tags for filtering and searchexamples: Array of example use cases or scenariosarguments: Array of input parameters (see Argument Schema below)mode: Execution mode hint (agent, assistant, completion)tools: Array of tools the prompt expects to useEach argument in the arguments array supports:
- name: "parameter_name" # Used in {{parameter_name}} substitution
description: "What this does" # Human-readable description
required: true # Whether argument is mandatory (default: false)
default: "fallback_value" # Default value if not provided (optional)
Use double curly braces for variable substitution:
{{variable_name}} - replaced with argument valuesdefault from frontmatterExample:
Hello {{name}}, welcome to {{environment}}!
Version: {{version}}
All prompts are automatically validated when loaded:
Invalid prompts are logged and excluded from the catalog, allowing other prompts to continue working.
src/prompts/my-new-prompt.mdcd packages/mcp-prompts
pnpm test
pnpm build
migrate-terraform-module not migratepackages/mcp-prompts/src/prompts/dist/prompts/ during buildThis package is consumed by:
apps/mcpserver): Exposes prompts to AI tools via MCP protocolapps/website): Displays prompt catalog and examplesFAQs
Centralized catalog of MCP prompts for PagoPA DX tools
We found that @pagopa/dx-mcpprompts demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.