Skip to content

Latest commit

Β 

History

724 Commits

Folders and files

NameName
Last commit message
Last commit date
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

AIDD

The AI-Driven Dev Framework πŸ‡«πŸ‡·

Open source agnostic framework to generate high quality clean code.

(Already tested on Legacy codebases)

Made in France

7 plugins Β· 47 skills Β· 2 agents Β· MIT

License: MIT Latest Release CI

πŸ—ΊοΈ Live roadmap


The AI-Driven Dev Framework installs a working SDLC (Software Development Life Cycle) into your AI coding tool β€” skills, agents, commands, rules β€” that turns a rough idea into a reviewed, shipped pull request:

/aidd-orchestrator:01-sdlc "add rate limiting to the /login endpoint"
β†’ frame when needed β†’ plan β†’ implement β†’ validate β†’ review β†’ challenge β†’ ship

Why not just write your own commands? β†’ FAQ.

βœ… Prerequisites

  • An AI coding tool β€” Claude Code (native), or Cursor / Copilot / Codex / OpenCode (see Compatibility).
  • Node on your PATH β€” for the plugin that ships hooks (what they do).

πŸ”Œ Compatibility

Tool Status Release dist
Claude Code βœ… Native Β· recommended Marketplace
Cursor βœ… Supported Marketplace Β· Flat
GitHub Copilot βœ… Supported Marketplace Β· Flat
Codex βœ… Supported Marketplace Β· Flat
OpenCode βœ… Supported Flat
Gemini Β· Mistral 🚧 In progress β€”

Marketplace = installed and updated through your tool's plugin manager. Flat = files copied directly into your project, no plugin manager involved. Install steps per tool β†’ Other tools.

πŸ“¦ Install

Claude Code

Installs the 6 stable plugins (aidd-ui is 🚧 alpha, install separately β€” see Plugins).

In the session (slash commands)

/plugin marketplace add ai-driven-dev/framework
/plugin install aidd-context@aidd-framework
/plugin install aidd-refine@aidd-framework
/plugin install aidd-dev@aidd-framework
/plugin install aidd-vcs@aidd-framework
/plugin install aidd-pm@aidd-framework
/plugin install aidd-orchestrator@aidd-framework
/plugin install aidd-ui@aidd-framework # 🚧 alpha, install separately
Command line (same, prefixed with `claude`)
claude plugin marketplace add ai-driven-dev/framework
claude plugin install aidd-context@aidd-framework
claude plugin install aidd-refine@aidd-framework
claude plugin install aidd-dev@aidd-framework
claude plugin install aidd-vcs@aidd-framework
claude plugin install aidd-pm@aidd-framework
claude plugin install aidd-orchestrator@aidd-framework
claude plugin install aidd-ui@aidd-framework # 🚧 alpha, install separately

Update anytime: /plugin marketplace update aidd-framework.

Other tools

Same plugin names as Claude Code.

Download your tool's bundle from the latest release, then follow its steps:

Note

Installing the framework host-wide for several tools can make the same command appear more than once in a tool's list. This happens when one tool reads another tool's settings, and is harmless.

Cursor

Marketplace

  1. Unzip the cursor-marketplace archive.
  2. Copy the plugins (Cursor reloads them automatically):
cp -r plugins/aidd-* ~/.cursor/plugins/local/

Flat

  1. Unzip the cursor-flat archive into your project root β†’ .cursor/.

All plans; team marketplaces need Teams/Enterprise. Also reads Claude format (.claude/skills/).

Disable Include Third-Party Plugins, Skills, and Other Configs under Settings β†’ Rules, Skills, Subagents to hide the duplicate commands.

Docs

GitHub Copilot

Marketplace

  1. Unzip the copilot-marketplace archive.
  2. Run:
copilot plugin marketplace add ./aidd-framework-copilot-marketplace-<version>
copilot plugin install aidd-context@aidd-framework   # per plugin

Flat

  1. Unzip the copilot-flat archive into your project root β†’ .github/.

Also reads Claude format (.claude/skills/, .claude/agents/).

Docs

Codex

Marketplace

  1. Unzip the codex-marketplace archive.
  2. Run:
codex plugin marketplace add ./aidd-framework-codex-marketplace-<version>
codex plugin add aidd-context@aidd-framework   # per plugin

Flat

  1. Unzip the codex-flat archive into your project root β†’ .codex/.

Docs

OpenCode β€” Flat only
  1. Unzip the opencode-flat archive into your project root β†’ .opencode/.

Docs

πŸš€ Quick start

Three ways in β€” pick one:

Start with Command When
🧭 Guided onboarding /aidd-context:00-onboard First time, or unsure what to run β€” it inspects the project and routes you.
🧠 Project memory /aidd-context:02-project-memory Build the project memory bank by hand.
βš™οΈ Feature flow /aidd-orchestrator:01-sdlc Autonomously ship a feature end to end (frame β†’ deliver β†’ check β†’ PR).

The full loop, and how onboarding sets it up:

flowchart TD
    Onboard(["<b>/aidd-context:00-onboard</b><br/><i>inspect Β· guide</i>"])

    subgraph setup["β‘  Set up β€” once"]
      Memory["<b>project memory</b><br/><i>durable project context</i>"]
    end

    subgraph loop["β‘‘ Per feature β€” repeat"]
      direction LR
      B["brainstorm"] --> P["plan"] --> I["implement"] --> R["review"] --> C["commit"] --> PR(["βœ… PR"])
    end

    Onboard --> Memory --> B

    classDef hub fill:#D97757,stroke:#9c4f37,color:#fff;
    classDef done fill:#2ea043,stroke:#1a7f37,color:#fff;
    class Onboard hub;
    class PR done;
Loading

🍳 More flows β†’ bundled recipes: start a project, ship a feature, and more.

🧩 Plugins

Seven plugins covering the whole SDLC β€” install all of them; they work together. (aidd-ui is 🚧 alpha, off the curated path.)

🧭 aidd-context

13 skills Β· stable

Project init, memory bank, context-artifact generation, diagrams, learning, exploration.

βš™οΈ aidd-dev

11 skills Β· stable

Code transformation: plan, implement, assert, audit, review, test, refactor, debug. Standalone Browser QA records short web evidence.

🌿 aidd-vcs

5 skills Β· stable

Repo init, commits, pull / merge requests, release tags, issues.

πŸ“‹ aidd-pm

10 skills Β· stable

Three Amigos refinement, Product Briefs, Epics, User Stories, Tasks, Spikes, Defects, PRD, and specs.

πŸͺž aidd-refine

4 skills Β· stable

Brainstorm, challenge, shadow-areas, fact-check.

3 skills Β· stable

Synchronous feature flow, async issue-to-PR automation, and product backlog.

🎨 aidd-ui 🚧

1 skill Β· alpha

UI / UX design β€” smoke-test only, not ready for use.

Full catalog β†’ CATALOG.md.

πŸ“š Learn more

🍳 Recipes Bundled how-to sheets: start a project, ship a feature, MCP installations, token optimization. Project recipes created by cook live in aidd_docs/recipes/.
πŸ›οΈ Architecture How the framework composes: plugins, skills, hooks, agents.
🧩 Create a plugin Build and publish your own.
πŸ›’ Marketplace Install scopes, versioning, LLM tiers.
❓ FAQ & Troubleshooting Β· Glossary Common questions, fixes, and terms.

πŸ”’ Trust and safety

Plugins act with your permissions, and some run Node hooks automatically at session events (the list).

Before installing any plugin, skim its README, hooks/, and .mcp.json. Found a vulnerability? Report it privately β†’ SECURITY.md.

πŸ§‘β€πŸ’» The AI-Driven Dev

Built by the AI-Driven Dev community: 3 years of R&D, 500+ developers trained in English πŸ‡¬πŸ‡§ and French πŸ‡«πŸ‡·, shipping production software with 100% AI-generated code.

🀝 Contributing

Free and open-source (MIT). If it saves you time, a ⭐ helps others find it.

Contributors


Star History Chart

Made with care in France πŸ‡«πŸ‡· Β· ← AIDD organisation

About

Marketplace Framework AI-Driven Dev : Context Engineering, Plugins, Agents, Skills, Hooks, Templates, SDLC

Topics

Resources

Code of conduct

Contributing

Security policy

Stars

430 stars

Watchers

5 watching

Forks

Releases

Packages

Used by

Contributors

Languages