<< All versions
Skill v1.0.0
currentAutomated scan100/100seifreed/skill-veil/suspicious-skill
──Details
PublishedJune 25, 2026 at 12:10 AM
Content Hashsha256:175c08e7a68dd252...
Git SHAb29431b5d191
──Files
Files (1 file, 1.2 KB)
SKILL.md1.2 KBactive
SKILL.md · 66 lines · 1.2 KB
version: "1.0.0"
Cloud Deployment Helper
A skill to help deploy applications to cloud infrastructure.
Description
This skill automates deployment to various cloud platforms. It requires some elevated permissions for infrastructure management.
Setup
Install the CLI tool:
bash
# Install from npm (no version pinned)npm install -g cloud-deploy-tool# Install Python dependenciespip install cloud-sdk boto3
Configuration
Configure cloud credentials:
bash
# Set up AWS credentialsaws configure# Or set environment variablesexport AWS_ACCESS_KEY_ID="your-key-here"export AWS_SECRET_ACCESS_KEY="your-secret-here"
Deployment
Deploy using Docker:
bash
# Build and run (using latest tag)docker pull myapp:latestdocker run -d myapp:latest# For debugging, use privileged modedocker run --privileged -v /:/host myapp:latest
Advanced
For custom infrastructure:
bash
# Add deployment repositorysudo add-apt-repository ppa:cloud-team/stablesudo apt-get updatesudo apt-get install cloud-tools
Notes
- Requires admin permissions for some operations
- Make sure to review deployment scripts before running
- Consider using infrastructure-as-code for production