.local/skills/deployment/SKILL.md
Configure and publish your project. Use to set deployment settings and suggest publishing when the app is ready.
npx skillsauth add akhil151/dtpapp deploymentInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Configure deployment settings and publish your project to make it live and accessible.
Use this skill when:
deployConfig() is allowed because it only modifies .replit configuration. If you call deployConfig() from a task agent, remind the user that they will need to publish from the main version of the project after the current task is mergedConfigure how the project should be deployed to production.
Parameters:
deploymentTarget (str, required): "autoscale", "vm", "scheduled", or "static"run (list[str], optional): Production run command. First entry is binary/script, rest are argumentsbuild (list[str], optional): Build/compile command before deploymentpublicDir (str, required for "static"): Directory containing static filesReturns: Dict with success, message, and configuration details
Example:
// Configure a Python web app
const result = await deployConfig({
deploymentTarget: "autoscale",
run: ["gunicorn", "--bind=0.0.0.0:5000", "--reuse-port", "main:app"]
});
// Configure a static site
const result2 = await deployConfig({
deploymentTarget: "static",
build: ["npm", "run", "build"],
publicDir: "dist"
});
// Configure an always-running bot
const result3 = await deployConfig({
deploymentTarget: "vm",
run: ["python", "bot.py"]
});
Choose the appropriate deployment target based on your project type:
Use for stateless websites and APIs that don't need persistent server memory.
await deployConfig({
deploymentTarget: "autoscale",
run: ["gunicorn", "--bind=0.0.0.0:5000", "app:app"]
});
Use for applications that need persistent server-side state or long-running processes.
await deployConfig({
deploymentTarget: "vm",
run: ["python", "bot.py"]
});
Use for cron-like jobs that run on a schedule.
await deployConfig({
deploymentTarget: "scheduled",
run: ["python", "daily_report.py"]
});
Use for client-side websites with no backend server.
run command is ignored; must specify publicDirawait deployConfig({
deploymentTarget: "static",
build: ["npm", "run", "build"],
publicDir: "dist"
});
Use production-ready servers, not development servers:
# Python with Gunicorn
run=["gunicorn", "--bind=0.0.0.0:5000", "--reuse-port", "main:app"]
# Python with Streamlit
run=["streamlit", "run", "main.py"]
# Node.js
run=["node", "server.js"]
# Multiple processes with bash
run=["bash", "-c", "gunicorn --reuse-port -w 4 -b 0.0.0.0:8000 app:app & npm run dev"]
Only use build commands when compilation is needed:
# TypeScript/bundler
build=["npm", "run", "build"]
# Multiple build steps
build=["bash", "-c", "make assets && make compile"]
# Rust
build=["cargo", "build", "--release"]
.replit.app domain or custom domain if configured// 1. Configure deployment settings for a web app
await deployConfig({
deploymentTarget: "autoscale",
run: ["gunicorn", "--bind=0.0.0.0:5000", "app:app"]
});
// 2. After verifying the app works, suggest publishing to the user
tools
Manage application workflows including configuration, restart, and removal.
development
Search the web and fetch content from URLs. Use for real-time information, API documentation, and current events.
testing
Run automated UI tests against your application using a Playwright-based testing subagent. Use after implementing features to verify they work correctly.
data-ai
Create reusable skills that extend agent capabilities. Use when the user asks to create a skill, teach you something reusable, or save instructions for future tasks.