mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-07-01 13:18:10 +00:00
Add CLAUDE.md with dependency management guidelines
This commit is contained in:
13
CLAUDE.md
Normal file
13
CLAUDE.md
Normal file
@@ -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.
|
||||
Reference in New Issue
Block a user