From 07b48034efe16edebf508fc37594b554e3de8d5b Mon Sep 17 00:00:00 2001 From: Iris Clawd Date: Wed, 27 May 2026 13:59:44 +0000 Subject: [PATCH] Add CLAUDE.md with dependency management guidelines --- CLAUDE.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 000000000..79346e303 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,13 @@ +# CLAUDE.md — AI-Assisted Development Guidelines + +This file provides guidance for AI coding agents (Claude Code, Codex, etc.) working on the crewAI codebase. + +## Dependency Management + +**Do NOT use `override-dependencies`** (e.g. in `pyproject.toml` or similar) to resolve security audit or dependency issues. + +This approach: +- Does not carry over to downstream projects that depend on crewAI +- Can cause dependency conflicts that are potentially unresolvable + +**Instead:** Fix dependency issues by updating the actual dependency versions directly. Pin or bump the real dependency so the fix propagates correctly to all consumers.