From Web Publishing
Generates standardized markdown report headers with metadata including status emojis, timestamps, and optional fields like workflow phase and custom metrics.
How this skill is triggered — by the user, by Claude, or both
Slash command
/web-publish:generate-report-headerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create consistent, well-formatted headers for all agent-generated reports with proper metadata.
Create consistent, well-formatted headers for all agent-generated reports with proper metadata.
Gather required information for header.
Expected Input:
reportType: String (e.g., "Bug Hunting", "Security Audit", "Version Update")version: String (e.g., "0.8.0", "2025-10-17", "final")status: String (success|partial|failed|in_progress)timestamp: String (optional, ISO-8601 format, defaults to current time)duration: String (optional, e.g., "3m 45s", "1h 12m")workflow: String (optional, e.g., "bugs", "security", "dead-code", "dependencies")phase: String (optional, e.g., "detection", "fixing", "verification")additionalMetadata: Object (optional, extra fields)Convert timestamp to readable format if needed.
Format: "YYYY-MM-DD HH:mm:ss UTC"
Example: "2025-10-17 14:30:00 UTC"
Map status to appropriate emoji.
Status Mapping:
success: ✅partial: ⚠️failed: ❌in_progress: 🔄Create formatted markdown header.
Expected Output:
# {ReportType} Report: {Version}
**Generated**: {Timestamp}
**Status**: {StatusEmoji} {Status}
**Version**: {Version}
**Duration**: {Duration} (if provided)
**Workflow**: {Workflow} (if provided)
**Phase**: {Phase} (if provided)
---
## Executive Summary
Standard Metrics (include when available):
Include additional metadata fields if provided.
Optional Fields:
Input:
{
"reportType": "Bug Hunting",
"version": "2025-10-17",
"status": "success",
"additionalMetadata": {
"agent": "bug-hunter",
"filesScanned": 147,
"bugsFound": 23
}
}
Output:
# Bug Hunting Report: 2025-10-17
**Generated**: 2025-10-17 14:30:00 UTC
**Status**: ✅ success
**Version**: 2025-10-17
**Agent**: bug-hunter
**Files Scanned**: 147
**Bugs Found**: 23
---
## Executive Summary
Input:
{
"reportType": "Version Update",
"version": "0.7.0 → 0.8.0",
"status": "success"
}
Output:
# Version Update Report: 0.7.0 → 0.8.0
**Generated**: 2025-10-17 14:30:00 UTC
**Status**: ✅ success
**Version**: 0.7.0 → 0.8.0
---
## Executive Summary
Input:
{
"reportType": "Security Audit",
"version": "final",
"status": "partial",
"timestamp": "2025-10-17T14:30:00Z",
"additionalMetadata": {
"criticalIssues": 2,
"highIssues": 5,
"fixedIssues": 5
}
}
Output:
# Security Audit Report: final
**Generated**: 2025-10-17 14:30:00 UTC
**Status**: ⚠️ partial
**Version**: final
**Critical Issues**: 2
**High Issues**: 5
**Fixed Issues**: 5
---
## Executive Summary
Input:
{
"reportType": "Dependency Update",
"version": "2025-10-17",
"status": "failed",
"additionalMetadata": {
"error": "npm install failed",
"failedPackages": ["package-a", "package-b"]
}
}
Output:
# Dependency Update Report: 2025-10-17
**Generated**: 2025-10-17 14:30:00 UTC
**Status**: ❌ failed
**Version**: 2025-10-17
**Error**: npm install failed
**Failed Packages**: package-a, package-b
---
## Executive Summary
template.md: Report header template (see Supporting Files section)npx claudepluginhub jhamidun/claude-code-config-pack --plugin web-publishMines projects and conversations into a searchable memory palace. Activates on queries about MemPalace, memory palace, mining, searching, palace setup, wings, rooms, drawers, or recalling past work.
Guides Payload CMS config (payload.config.ts), collections, fields, hooks, access control, APIs. Debugs validation errors, security, relationships, queries, transactions, hook behavior.
Implements vector databases with Pinecone, Weaviate, Qdrant, Milvus, pgvector for semantic search, RAG, recommendations, and similarity systems. Optimizes embeddings, indexing, and hybrid search.