Add CrewAI instrumentation boilerplate#308
Open
venkata-pavani wants to merge 2 commits into
Open
Conversation
venkata-pavani
marked this pull request as ready for review
July 24, 2026 01:41
Pull request dashboard statusStatus last refreshed: 2026-07-25 12:52:24 UTC.
This automated status or its linked feedback items may be incorrect. If something looks wrong, please report it with the result you expected. |
venkata-pavani
force-pushed
the
crewai-boilerplate
branch
from
July 24, 2026 01:53
a8a4341 to
8cc7971
Compare
Assisted-by: ChatGPT 5.6
venkata-pavani
force-pushed
the
crewai-boilerplate
branch
from
July 24, 2026 02:13
8cc7971 to
005e392
Compare
Author
|
Hi All, I added a temporary typecheck-specific dependency override for CrewAI’s OpenTelemetry <1.43 constraint; it can be removed once CrewAI supports the repository’s ~=1.43 line. Because the typecheck environment installs crewai[instruments], but CrewAI restricts OpenTelemetry below 1.43 while this repository requires ~=1.43; without the override, dependency installation fails before Pyright can run. All checks gone through successfully now. Please let me know if you have any issues or feedback on this |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR only adds the boilerplate. The actual CrewAI operation instrumentation and SDK patching will come in follow-up PRs.
How has this been tested?
CrewAI lifecycle tests: 3 passed
Ruff lint and formatting: passed
README validation: passed
License-header validation: passed
Generated-file check: passed
uv lock --check: passed
CrewAI source type checking: passed
Checklist
See CONTRIBUTING.md
for the style guide, changelog guidance, and more.
Note : Added a temporary typecheck-specific dependency override for CrewAI’s OpenTelemetry
<1.43constraint; it can be removed once CrewAI supports the repository’s~=1.43line.Because the typecheck environment installs
crewai[instruments], but CrewAI restricts OpenTelemetry below1.43while this repository requires~=1.43; without the override, dependency installation fails before Pyright can run.