Agent skill
Wheels Deployment
Configure Wheels applications for production deployment with security hardening, performance optimization, and environment-specific settings. Use when preparing for production, configuring servers, or hardening security.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/wheels-deployment
SKILL.md
Wheels Deployment
Production Configuration
config/settings.cfm (Production)
<cfif get("environment") == "production">
<cfscript>
// Error handling
set(showDebugInformation=false);
set(showErrorInformation=false);
set(sendEmailOnError=true);
set(errorEmailAddress="admin@example.com");
// Performance
set(cacheActions=true);
set(cachePages=true);
set(cachePartials=true);
set(cacheQueries=true);
// Security
set(csrfProtection=true);
set(obfuscateUrls=true);
// Database
set(autocommit=false);
</cfscript>
</cfif>
Security Checklist
- CSRF protection enabled
- showDebugInformation = false
- showErrorInformation = false
- Strong database passwords
- HTTPS enabled
- SQL injection prevention
- XSS protection
- Secure session configuration
Performance Checklist
- Enable all caching
- Optimize database indexes
- Use eager loading (include)
- Enable GZIP compression
- Minify CSS/JS
- Use CDN for assets
- Database connection pooling
Generated by: Wheels Deployment Skill v1.0
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?