Borrowing it
Nothing to install: this file belongs to SocialGouv/egapro. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/SocialGouv/egapro/alpha/.claude/skills/open/SKILL.mdgit clone --depth 1 https://github.com/SocialGouv/egaproWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/socialgouv/egapro/open)<a href="https://agentmods.dev/skills/socialgouv/egapro/open"><img src="https://agentmods.dev/badge/skills/socialgouv/egapro/open.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00034 | $0.00665 |
| Opus 5 | $0.00017 | $0.00332 |
| Sonnet 5 | $0.00007 | $0.00133 |
| Haiku 4.5 | $0.00003 | $0.00067 |
Grade A, and why
open scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/open
Recreate the egapro worktree associated with a PR — typically one that was auto-cleaned by /implement after the sub-agent returned validated. Use this to test the PR's code locally : run the dev server, exercise the feature, debug issues before merging.
Arguments
$ARGUMENTS — PR number (#3341, 3341). Required.
Ton rôle
Tu es un thin wrapper. Toute la logique est dans scripts/orchestration/open_worktree.sh. Tu dois :
- Valider que l'argument est un nombre de PR
- Lancer le script
- Relayer son output à l'utilisateur (path + URLs)
PR=$ARGUMENTS # strip leading #
PR=${PR#\#}
if ! [[ "$PR" =~ ^[0-9]+$ ]]; then
echo "ERROR: argument must be a PR number"
exit 1
fi
bash scripts/orchestration/open_worktree.sh "$PR"
Le script :
- Résout la branche head + le ticket linked + l'epic parent
- Choisit le premier slot libre dans
[0, EPIC_MAX_PARALLEL[ - Recrée le worktree (idempotent : réutilise s'il existe)
- Lance
setup-worktree.shsi.env.localest manquant (pnpm install + docker stack + migrations) - Affiche le path + les URLs (dev server, mailpit, minio, postgres)
Cas d'usage typiques
- Tester une PR ouverte avant de la merger :
/open 3341→ worktree recréé, dev server prêt surhttp://localhost:3001(ou autre selon le slot) - Reprendre un debug sur une PR rejetée par CI :
/open <PR>puiscd <path>et bidouiller - Reproduire un bug sur le code d'une PR mergée mais qui pose problème en preprod :
/open <PR>même après merge — la branche reste sur le remote
Limitations
- Si tous les slots
[0, EPIC_MAX_PARALLEL[sont occupés (par d'autres worktrees actifs), le script retourne une erreur. Libérer un slot viagit worktree remove ../egapro-epic*-tXXXou augmenterEPIC_MAX_PARALLEL. - Si la PR a été créée hors de la pipeline
/implement(pas de ticket lié, pas d'epic parent), le script échoue. Cas limite — créer le worktree à la main dans ce cas.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 65 lines · 34 tokens per session scan A 954529e07b10
open is a skill published in the GitHub repository SocialGouv/egapro (12 stars, last pushed 3d ago), licensed Apache-2.0. It adds 34 tokens to every session and 665 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.
Other skills, from other repositories
prowler-commit
Creates professional git commits following conventional-commits format. Trigger: When creating commits, after completing code changes, when user asks to commit.
gh-auth-isolation
Safely manage multiple GitHub identities (EMU + personal) in agent workflows.
comet-github
A routing guide for Comet-related GitHub work. It directs requests about pull requests, issues, CI failures, ideas, and fixes to the appropriate review or implementation process.
github-skill
Work with GitHub via the gh CLI — clone repositories, create/list/merge pull requests, create/list issues, and run any other gh command (API calls, workflow runs, releases, repo administration). List operations return parsed JSON.
codex-autoresearch
Run autonomous, measurable experiments in a Git repository: change one hypothesis, verify a numeric metric, keep improvements, and revert failures. Use when the user wants Codex to keep iterating toward a numeric target in the foreground or as a detached background run. Do not use for ordinary one-shot coding…
changelog-composer
Generates structured changelogs and release notes from git history and PRs, classifying breaking changes, features, fixes, performance, docs. Triggers on: "generate changelog", "write release notes", "what changed since", "prepare release", "release notes for", "diff since tag".