implement

implement is a skill for Claude Code from SocialGouv/egapro. It costs 55 tokens per session (6,459 once invoked), scanned A, original, Apache-2.0.

An implementation workflow that chooses how to handle a feature, task, bug, or sub-task, then starts the matching coding and end-to-end testing steps. End-to-end testing checks a complete user flow rather than only an individual function.

In plain words
What is it for?
Use it to implement feature work, tasks, and bug fixes, run the corresponding coding process, and start end-to-end checks after validation.
Why use it?
It removes the need to manually choose the execution path for each issue type and ensures the relevant testing step follows implementation. Larger features can be handled through a background loop while smaller tasks run directly.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: mentions subagents; names the AskUserQuestion tool; positional $N argument.

Not installable on its own: it runs a file from its repository that does not travel with it. Clone the repository, or install whatever ships that file. The line is bash scripts/orchestration/ensure_epic_branch.sh "$ISSUE_N".

Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Claude Code.

Wrote 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.

agentmods badge for implement

README.md
[![agentmods](https://agentmods.dev/badge/skills/socialgouv/egapro/implement.svg)](https://agentmods.dev/skills/socialgouv/egapro/implement)
Your own site
<a href="https://agentmods.dev/skills/socialgouv/egapro/implement"><img src="https://agentmods.dev/badge/skills/socialgouv/egapro/implement.svg" alt="Measured on agentmods" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,459 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00055 $0.06459
Opus 5 $0.00028 $0.03230
Sonnet 5 $0.00011 $0.01292
Haiku 4.5 $0.00006 $0.00646

Measured yesterday against content hash 9df6e449dbc3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

implement 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.

.claude/skills/implement/SKILL.md · 303 lines

How it starts

The opening of the file, as written. The whole thing — 303 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/implement

Phase exécution de la pipeline. Détecte le mode depuis le type d'issue et branche :

Type d'issue Mode Mécanisme
Feature (epic) epic nohup bash scripts/orchestration/epic_loop.sh <N> > /tmp/epic_loop_<KEY>.log 2>&1 & (background, parallèle, plusieurs sub-tickets ; e2e-dev lancé en fin de loop sur epic/<N>)
Task task Lance code-dev en CLI foreground (claude --agent code-dev, bloquant), puis e2e-dev une fois validated
Bug bug Lance code-dev en CLI foreground (claude --agent code-dev, bloquant) avec rules/bug-fix-workflow.md, puis e2e-dev une fois validated
sub-issue d'un epic (non-feature) task-debug Comme task — utile pour re-rouler un sous-ticket d'un epic plus large (ex: après refacto ou debug)

/implement n'orchestre rien lui-même : pour epic c'est epic_loop.sh qui parallèlise (et exécute la gate E2E bloquante run_e2e_dev.shrun_architect_rework.sh en fin de loop), pour task/bug c'est un process CLI claude --agent code-dev foreground suivi d'un claude --agent e2e-dev. code-dev tourne comme main agent (process CLI) — obligatoire pour qu'il puisse lancer ses propres sous-agents (les 4 validateurs, functional-validator, design-validator) : un sous-agent ne peut pas en spawner d'autres. e2e-dev tourne en fin de pipeline (après dev terminé + sous-tickets mergés pour une Feature, ou après code-dev validated pour une Task/Bug) et possède toute la couverture E2E — code-dev n'écrit plus aucun test E2E.


Step 0 — Valider l'argument

$ARGUMENTS doit contenir un numéro d'issue. Si vide → demander à l'utilisateur lequel exécuter.

ARG_HEAD="$(echo "$ARGUMENTS" | awk '{print $1}')"
ISSUE_N="${ARG_HEAD#\#}"

# Récupérer le type + parent eventuel
gh issue view "$ISSUE_N" --json number,title,issueType,labels,state \
  --jq '{number, title, issueType: .issueType.name, labels: [.labels[].name], state}'

Read the full file on GitHub · 303 lines

Changes

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.

  1. yesterday First seen · 303 lines · 55 tokens per session scan A 9df6e449dbc3

Subscribe to this mod's changes

implement is a skill published in the GitHub repository SocialGouv/egapro (12 stars, last pushed 2d ago), licensed Apache-2.0. It adds 55 tokens to every session and 6,459 once invoked, about $0.0003 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.

Related

Other skills, from other repositories