Prepare a Skill Package for Upload
Focus
Focus
Prisma AIRS

Prepare a Skill Package for Upload

Table of Contents

Prepare a Skill Package for Upload

Learn the file requirements and best practices for packaging an AI skill before uploading it to Prisma AIRS AI Skill Security for scanning.
Where Can I Use This?What Do I Need?
  • Prisma AIRS (AI Skill Security)
  • No License required for preview
Upload skills as a ZIP archive that meets the following requirements.
RequirementLimit
FormatZIP archive
Maximum compressed size100 MB
Maximum uncompressed size500 MB
Number of skills per archive1
Your package must include a SKILL.md file with appropriate front matter that complies with the skill specification. Skills typically also include:
  • Supporting scripts
  • Prompt files
  • Configuration files
  • Example outputs or other reference assets
Avoid including the following items, which increase upload time and reduce scan performance:
  • Virtual environments
  • Build artifacts
  • Version control metadata
  • Dependency caches
  • Large files unrelated to the skill
Use the following example command to create a ZIP archive while excluding unnecessary components:
zip -r my-skill.zip . \ -x ".git/*" "__pycache__/*" "*.pyc" ".venv/*" "venv/*" "node_modules/*"