From 68041ddf126c444c273ec03d1a8d5feb6ac21b2d Mon Sep 17 00:00:00 2001 From: Marco Comi <9998393+kin0992@users.noreply.github.com> Date: Fri, 15 May 2026 10:01:00 +0200 Subject: [PATCH 1/3] Make repository public Change visibility from private to public so the marketplace at .claude-plugin/marketplace.json can be fetched anonymously by Claude Code, Copilot CLI, and VS Code without contributors needing access to a private repo. Also add discovery topics: agent-skills, claude-code, copilot-cli, marketplace. Applying: merge this PR, then run `pulumi up` (or let iac-deploy fire) to perform the actual GitHub visibility change. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- infra/index.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/infra/index.ts b/infra/index.ts index ad22b56..e10b481 100644 --- a/infra/index.ts +++ b/infra/index.ts @@ -8,7 +8,7 @@ export const repo = new github.Repository('dev-toolkit', { name: repoName, description: 'Platform Engineering toolkit: reusable GitHub Actions, AI Skills, and shared TypeScript configs.', - visibility: 'private', + visibility: 'public', hasIssues: false, hasDiscussions: false, hasProjects: false, @@ -32,6 +32,10 @@ export const repo = new github.Repository('dev-toolkit', { 'typescript', 'pulumi', 'changesets', + 'agent-skills', + 'claude-code', + 'copilot-cli', + 'marketplace', ], archiveOnDestroy: true, }); From 773f549ab35c384d398ceeb6ef98170bf42219fa Mon Sep 17 00:00:00 2001 From: Marco Comi <9998393+kin0992@users.noreply.github.com> Date: Fri, 15 May 2026 11:19:17 +0200 Subject: [PATCH 2/3] Add changelog --- .changeset/beige-grapes-wonder.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/beige-grapes-wonder.md diff --git a/.changeset/beige-grapes-wonder.md b/.changeset/beige-grapes-wonder.md new file mode 100644 index 0000000..82f70e9 --- /dev/null +++ b/.changeset/beige-grapes-wonder.md @@ -0,0 +1,5 @@ +--- +"dev-toolkit-infra": patch +--- + +Make repository public From a6e4d245a6482eeebb624ae5a47fd474fd70db89 Mon Sep 17 00:00:00 2001 From: Marco Comi <9998393+kin0992@users.noreply.github.com> Date: Fri, 15 May 2026 11:23:47 +0200 Subject: [PATCH 3/3] Fix formatting --- .changeset/beige-grapes-wonder.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/beige-grapes-wonder.md b/.changeset/beige-grapes-wonder.md index 82f70e9..dfbcaf7 100644 --- a/.changeset/beige-grapes-wonder.md +++ b/.changeset/beige-grapes-wonder.md @@ -1,5 +1,5 @@ --- -"dev-toolkit-infra": patch +'dev-toolkit-infra': patch --- Make repository public