ekroon/agent-skills · Archived

codespaces-secret-sync

Sync user Codespaces secret repository access so multiple secrets match a base secret (defaults to first listed secret).

First seen Mar 10, 2026

Installation

$ npx skills add ekroon/agent-skills --skill codespaces-secret-sync

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from ekroon/agent-skills.

npx skills add ekroon/agent-skills

Browse all from ekroon/agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,317 B
  • docs SUMMARY.md 150 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Codespaces Secret Sync

Use this skill when you want multiple user Codespaces secrets to share the same selected-repository access as one base secret.

What it does

  • Reads the selected repositories from a base secret (--base-secret, or first listed secret by default).
  • Syncs other secrets to that same repo set.
  • Supports dry-run (default) and apply mode.

Prerequisites

  • gh CLI authenticated for the target account (gh auth status)
  • python3

Script

scripts/synccodespacessecret_repos.py

Usage

Dry-run all user Codespaces secrets except the base secret:

python3 scripts/sync_codespaces_secret_repos.py

Apply for all secrets:

python3 scripts/sync_codespaces_secret_repos.py --apply

Apply only for specific secrets:

python3 scripts/sync_codespaces_secret_repos.py --apply --secrets SECRET_A SECRET_B SECRET_C

Use a different base secret:

python3 scripts/sync_codespaces_secret_repos.py --apply --base-secret MY_BASE_SECRET

Add missing repos only (do not remove extras):

python3 scripts/sync_codespaces_secret_repos.py --apply --add-only