From 3df773e24b7c922e24657ec58b4f17eb979e0cd8 Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Tue, 24 Feb 2026 12:21:50 +0100 Subject: [PATCH] chore: replace generic email addresses with GitHub references Replace generic @netresearch.de email addresses with GitHub-native mechanisms (Issues, Security Advisories, repository URLs). - Remove email from package metadata (composer.json, ext_emconf.php) - Add support/issues URLs to package metadata - Replace security contact with GitHub Security Advisories - Replace support/contact emails with GitHub Issues links - Remove email from PHP docblock @author tags - Use OCI labels in Dockerfiles --- .claude-plugin/plugin.json | 7 +++++-- composer.json | 5 ++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 9fb1910..d462467 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -6,9 +6,12 @@ "license": "MIT", "author": { "name": "Netresearch DTT GmbH", - "email": "info@netresearch.de" + "url": "https://github.com/netresearch/github-project-skill" }, "skills": [ "./skills/github-project" - ] + ], + "support": { + "issues": "https://github.com/netresearch/github-project-skill/issues" + } } diff --git a/composer.json b/composer.json index 79e5198..2054141 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,6 @@ "authors": [ { "name": "Netresearch DTT GmbH", - "email": "info@netresearch.de", "homepage": "https://www.netresearch.de/", "role": "Manufacturer" } @@ -16,5 +15,9 @@ }, "extra": { "ai-agent-skill": "SKILL.md" + }, + "support": { + "issues": "https://github.com/netresearch/github-project-skill/issues", + "source": "https://github.com/netresearch/github-project-skill" } }