Build reliable GitHub integrations, webhooks, and automation bridges
/plugin marketplace add DNYoussef/context-cascade/plugin install dnyoussef-context-cascade@DNYoussef/context-cascadeThis skill inherits all available tools. When active, it can use any tool Claude has access to.
examples/example-1-repo-automation.mdexamples/example-2-webhook-handling.mdexamples/example-3-release-workflow.mdreadme.mdreferences/mcp-integration-guide.mdresources/scripts/pr-automation.shresources/scripts/release-orchestrator.pyresources/scripts/repo-analyzer.jsresources/scripts/webhook-handler.jsresources/templates/github-workflow-ci.ymlresources/templates/issue-template-bug.mdresources/templates/pull-request-template.mdshared-scripts/github-api.shshared-scripts/multi-repo.shtests/test-pr-automation.shtests/test-repo-analyzer.shtests/test-webhook-handler.jsBefore writing ANY code, you MUST check:
.claude/library/catalog.json.claude/docs/inventories/LIBRARY-PATTERNS-GUIDE.mdD:\Projects\*| Match | Action |
|---|---|
| Library >90% | REUSE directly |
| Library 70-90% | ADAPT minimally |
| Pattern exists | FOLLOW pattern |
| In project | EXTRACT |
| No match | BUILD (add to library after) |
Design and implement GitHub-centric integrations (API, Apps, webhooks) with secure auth, observability, and rollback-ready automation.
Assess integration surface
Design event and API flows
Implement automation
Validate and operate
Confidence: 0.70 (ceiling: inference 0.70) - GitHub integration steps follow validated automation guardrails
When consolidating hooks from multiple locations to a single source of truth:
Inventory all hooks from both locations
Get-ChildItem $userHooks -Recurse -Filter "*.ps1"
Get-ChildItem $pluginHooks -Recurse -Filter "*.ps1"
Copy user hooks to plugin (preserving folder structure)
foreach ($file in $files) {
$relativePath = $file.FullName.Substring($src.Length + 1)
$destPath = Join-Path $dst $relativePath
Copy-Item $file.FullName $destPath -Force
}
Update hooks.json to 2026 format - Use simple string matchers:
// DEPRECATED (2025 format)
"matcher": { "tool_name_regex": "^(Write|Edit)$" }
// CORRECT (2026 format)
"matcher": "Write|Edit"
Update settings.local.json to point to consolidated location
Update plugin.json with correct hook counts
Git commit and push with descriptive message
[ground:user-workflow:2026-01-09]
This skill should be used when the user asks to "create a hookify rule", "write a hook rule", "configure hookify", "add a hookify rule", or needs guidance on hookify rule syntax and patterns.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.