Help us improve
Share bugs, ideas, or general feedback.
From container-plugin
Generates professional handoff documentation for deployed resources/services by gathering git repo details, configs, Docker files, CI/CD workflows, URLs, and access info. Useful post-deployment for developer transitions.
npx claudepluginhub laurigates/claude-plugins --plugin container-pluginHow this skill is triggered — by the user, by Claude, or both
Slash command
/container-plugin:deploy-handoffThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate professional handoff messages for deployed resources and services with all necessary information for developer handoff.
Generates structured developer onboarding documents covering service overview, architecture, local setup, testing, deployment, and key contacts. Useful when orienting new engineers or documenting a service.
Generates complete deployment configurations—Dockerfile, manifests, environment config, rollback procedures—for Node.js, Python, Go, Rust, Java services. Useful for deployment setup, strategy, or rollback queries.
Generates thorough README.md documentation by exploring codebase structure, configuration, dependencies, and deployment targets.
Share bugs, ideas, or general feedback.
Generate professional handoff messages for deployed resources and services with all necessary information for developer handoff.
git remote -vgit branch --show-currentgit log --oneline --max-count=1find . -maxdepth 1 -name \'README.md\'find . -maxdepth 1 \( -name "Dockerfile" -o -name "docker-compose*.yml" \)find .github/workflows -maxdepth 1 -name '*.yml'find . -maxdepth 1 \( -name ".env.example" -o -name "*.config.*" \)$1 (RESOURCE_NAME, optional): Name of the deployed resource/service$2 (DEPLOYMENT_TYPE, optional): Type of deployment (web-app, api, database, infrastructure, etc.)Execute this deployment handoff documentation workflow:
Gather deployment details from current repository context. Identify relevant documentation and configuration files. Extract repository information and branch details.
Collect:
Find and compile:
Assemble:
Create a professionally formatted handoff message with clear sections, action items for the receiving developer, and contact information for follow-up questions.
The command generates a structured message with:
format: markdown # slack, email, markdown
include_sensitive: false # Include sensitive config info
detail_level: standard # minimal, standard, comprehensive
template_style: professional # professional, technical, brief
.env files and configuration# Basic handoff for current project
claude chat --file ~/.claude/skills/deploy-handoff/SKILL.md
# Specific service handoff
claude chat --file ~/.claude/skills/deploy-handoff/SKILL.md "User API" "web-service"
# Comprehensive handoff with full details
claude chat --file ~/.claude/skills/deploy-handoff/SKILL.md "Payment System" "microservice" --detail-level comprehensive
## 🚀 Deployment Handoff: [Service Name]
**Service**: [Service Name]
**Environment**: [Production/Staging/Development]
**Deployment Date**: [Date]
**Deployed By**: [Developer Name]
### 📋 Service Overview
- **Purpose**: [Brief description of functionality]
- **Technology Stack**: [Languages/frameworks used]
- **Status**: ✅ Active and operational
### 🔗 Access Information
- **Service URL**: [Primary access point]
- **Admin Dashboard**: [Management interface]
- **API Documentation**: [API docs location]
- **Health Check**: [Monitoring endpoint]
### 📚 Documentation & Resources
- **Repository**: [GitHub repository URL]
- **Branch/Tag**: [Deployed version]
- **Setup Guide**: [Configuration instructions]
- **Troubleshooting**: [Known issues and solutions]
### ✅ Developer Handoff Checklist
- [ ] Review service functionality and purpose
- [ ] Access all provided URLs and interfaces
- [ ] Verify monitoring and alerting setup
- [ ] Test basic functionality
- [ ] Review configuration and environment variables
### 📞 Support & Contact
For questions or issues with this deployment, please:
1. Check the troubleshooting guide first
2. Review logs at [log location]
3. Contact [deployer] for immediate assistance
*Generated on [date] for [project/client]*