npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

aiad-sdd

v1.0.4

Published

AIAD SDD Mode — Spec Driven Development pour Claude Code. Framework de développement spec-first avec agents IA.

Readme

aiad-sdd

Spec Driven Development pour Claude Code — Framework de développement spec-first avec agents IA.

npx aiad-sdd init

Qu'est-ce que SDD Mode ?

SDD Mode (Spec Driven Development Mode) est le framework de développement d'AIAD. Il définit comment les équipes transforment des intentions produit en code de qualité en faisant des SPECs le pivot entre l'humain et l'agent IA.

3 principes fondateurs :

  1. Spec as Living Invariant — La SPEC reste la source de vérité entre intention et code
  2. Drift = Échec de processus — Code et SPEC toujours synchronisés
  3. Context Budget — Le PE gère le budget de contexte de chaque session agent

Installation

# Initialisation complète (structure + gouvernance + commandes Claude Code)
npx aiad-sdd init

# Sans les agents de gouvernance
npx aiad-sdd init --sans-gouvernance

# Mettre à jour les agents de gouvernance
npx aiad-sdd gouvernance

# Voir l'état du projet
npx aiad-sdd status

Ce qui est installé

Structure .aiad/

.aiad/
├── PRD.md                  ← Vision produit (template)
├── ARCHITECTURE.md         ← Standards techniques (template)
├── AGENT-GUIDE.md          ← Contexte permanent agent (template)
├── gouvernance/            ← Agents Tier 1 (droit de veto)
│   ├── CLAUDE-AI-ACT.md    ← Conformité EU AI Act
│   ├── CLAUDE-RGPD.md      ← Privacy by Design, RGPD
│   ├── CLAUDE-RGAA.md      ← Accessibilité RGAA 4.1 / WCAG 2.1
│   └── CLAUDE-RGESN.md     ← Écoconception numérique
├── intents/                ← Intent Statements
│   └── _index.md
├── specs/                  ← SPECs techniques
│   └── _index.md
└── CHANGELOG-ARTEFACTS.md  ← Historique des mises à jour

Commandes Claude Code

Cycle SDD (10 commandes) :

| Commande | Phase | Description | |----------|-------|-------------| | /sdd-init | Cadrage | Initialiser PRD + ARCHITECTURE + AGENT-GUIDE | | /sdd-intent | Intention | Capturer un Intent Statement (POURQUOI) | | /sdd-spec | Spécification | Rédiger une SPEC depuis un Intent | | /sdd-gate | Validation | Execution Gate + SQS + plan de remédiation | | /sdd-exec | Exécution | Lancer l'agent avec contexte optimisé (post-Gate) | | /sdd-validate | Validation | Valider le code produit par l'agent | | /sdd-drift-check | Intégration | Vérifier synchronisation artefacts/code | | /sdd-split | Spécification | Découper une SPEC trop volumineuse | | /sdd-resume | Exécution | Reprendre une session agent interrompue | | /sdd-context | Amélioration | Auditer le budget de contexte (estimation vs. réel) |

Framework AIAD (7 commandes) :

| Commande | Phase | Description | |----------|-------|-------------| | /aiad-init | Adoption | Bootstrapper AIAD sur un projet existant | | /aiad-onboard | Adoption | Générer un briefing d'onboarding nouveau membre | | /aiad-gouvernance | Gouvernance | Vérifier la conformité Tier 1 (AI-ACT, RGPD, RGAA, RGESN) | | /aiad-health | Monitoring | Diagnostiquer la santé des artefacts | | /aiad-status | Monitoring | État du projet SDD | | /aiad-retro | Amélioration | Rétrospective + alimentation ALIS | | /aiad-intention | Alignement | Atelier d'Intention (rituel mensuel) |

CLAUDE.md

Un CLAUDE.md est créé (ou enrichi) avec le contexte SDD Mode complet : cycle de développement, hiérarchie documentaire, règles absolues, gouvernance.

Cycle de développement

┌─────────────┐     ┌──────────┐     ┌──────────────┐
│  /sdd-intent │────▶│ /sdd-spec │────▶│  /sdd-gate   │
│  Intention   │     │  SPEC    │     │  SQS ≥ 4/5   │
└─────────────┘     └────┬─────┘     └──────┬───────┘
                         │                    │
                    /sdd-split           /sdd-exec
                   (si atomicité        (contexte
                    insuffisante)        optimisé)
                                             │
     ┌───────────────────────────────────────┘
     ▼
┌──────────────┐     ┌──────────────┐     ┌────────────────┐
│  /sdd-exec   │────▶│ /sdd-validate│────▶│/sdd-drift-check│
│  Agent IA    │     │  Validation  │     │  Drift Lock    │
└──────┬───────┘     └──────────────┘     └────────────────┘
       │
  /sdd-resume                              /sdd-context
 (si session                              (audit post-
  interrompue)                             session)

Démarrage rapide

# 1. Initialiser SDD Mode
npx aiad-sdd init

# 2. Dans Claude Code, lancer le cadrage (nouveau projet)
/sdd-init
# OU bootstrapper sur un projet existant
/aiad-init

# 3. Capturer la première intention
/sdd-intent

# 4. Rédiger la première SPEC
/sdd-spec
# Si la SPEC est trop grosse → /sdd-split

# 5. Valider la SPEC (Execution Gate)
/sdd-gate

# 6. Lancer l'agent avec contexte optimisé
/sdd-exec
# Si la session est interrompue → /sdd-resume

# 7. Valider et verrouiller
/sdd-validate
/sdd-drift-check

# 8. Auditer le budget de contexte (optionnel, recommandé)
/sdd-context

Agents de gouvernance

Les 4 agents Tier 1 ont un droit de veto sur toute implémentation non conforme :

| Agent | Périmètre | Référentiel | |-------|-----------|-------------| | CLAUDE-AI-ACT | Composants IA | Règlement (UE) 2024/1689 | | CLAUDE-RGPD | Données personnelles | RGPD + ePrivacy | | CLAUDE-RGAA | Interfaces utilisateur | RGAA 4.1 / WCAG 2.1 | | CLAUDE-RGESN | Écoconception | RGESN v2 |

Compatibilité

SDD Mode est conçu pour Claude Code mais les artefacts sont compatibles avec :

  • Cursor.aiad/AGENT-GUIDE.md ↔ Memory Bank (.cursor/rules)
  • AWS Kiro.aiad/.kiro/ (steering files)
  • GitHub Spec Kit.aiad/specs/ ↔ Spec files

Framework AIAD

AIAD (Artificial Intelligence Agent Development) est un framework open source pour le développement logiciel à l'ère des agents IA.

  • Site : aiad.ovh
  • Constitution : 6 valeurs fondatrices, gouvernance gardien/communauté
  • 5 responsabilités : PM, Product Engineer, Agents Engineer, QA Engineer, Tech Lead
  • 17 commandes : 10 SDD Mode + 7 AIAD Framework
  • ALIS : Système d'évolution lunaire (mise à jour à chaque pleine lune)

Licence

MIT — Steeve Evers — aiad.ovh