aem-project-management
v1.0.0Project lifecycle management for AEM Edge Delivery Services - handover documentation, PDF generation, and project assistance
by AdobeApache-2.0162updated 1 day ago
Source
git clone https://github.com/adobe/skillsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/aem/project-management/ inside the repository.
Layout
├── .claude-plugin/plugin.json├── skills/auth/SKILL.md├── skills/handover/SKILL.md├── skills/handover-admin/SKILL.md├── skills/handover-author/SKILL.md├── skills/handover-developer/SKILL.md├── skills/ops/SKILL.md└── skills/whitepaper/SKILL.md
Skills7
Authenticate with AEM Edge Delivery Services. Opens browser for login and captures token. Works for admin.hlx.page and Config Service APIs regardless of content source (Document Authoring, SharePoint, or Google Drive).
Generate project handover documentation for AEM Edge Delivery Services projects. Creates comprehensive guides for content authors, developers, and administrators. Use for "handover docs", "project documentation", "generate handover", "create guides".
Generate comprehensive admin documentation for AEM Edge Delivery Services project handover. Use when handing over admin responsibilities, onboarding a new site administrator, or documenting admin procedures — e.g., "admin guide", "admin documentation", "admin handover".
Generate comprehensive documentation for content authors taking over an AEM Edge Delivery Services project. Use when onboarding content authors, training content managers, or creating author-focused handover documentation — analyzes project structure and produces a complete authoring guide with blocks, templates, configurations, and publishing workflows.
Generate comprehensive technical documentation for developers taking over an AEM Edge Delivery Services project. Use when onboarding developers, creating technical handover documentation, or documenting a project's architecture — analyzes codebase structure, custom implementations, design tokens, and produces a complete developer guide.
Execute AEM Edge Delivery Services admin operations - list admins, add/remove users, preview, publish, unpublish content, clear cache, sync code, reindex, generate sitemap, manage snapshots, view logs, manage jobs, list sites, configure org/site settings, manage secrets and API keys. Also supports Document Authoring (DA) operations via admin.da.live - list/get/put content, copy, move, delete, versioning, and DA-specific preview/publish. Use for any Edge Delivery Services administrative task.
Creates professional PDF whitepapers from Markdown files. Use when the user wants to create a whitepaper, technical document, or PDF with professional formatting and typography.
Manifests1
{
"name": "aem-project-management",
"version": "1.0.0",
"description": "Project lifecycle management for AEM Edge Delivery Services - handover documentation, PDF generation, and project assistance",
"author": {
"name": "Adobe"
},
"license": "Apache-2.0",
"skills": [
"./skills/handover",
"./skills/handover-author",
"./skills/handover-developer",
"./skills/handover-admin",
"./skills/whitepaper",
"./skills/auth",
"./skills/ops"
],
"hooks": {
"PostToolUse": [
{
"matcher": "Write|Edit",
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/pdf-lifecycle.js\""
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/pdf-lifecycle.js\""
}
]
}
],
"SessionEnd": [
{
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/pdf-lifecycle.js\""
}
]
}
]
},
"keywords": [
"adobe",
"aem",
"eds",
"edge-delivery-services",
"project",
"handover",
"documentation",
"whitepaper",
"pdf"
]
}