mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-08-10 16:32:28 +00:00
Claude Code discovers CLAUDE.md but not AGENTS.md, so the contributor instructions were loading for nobody. The import shim is what our own docs already recommend to users in docs/edge/en/guides/coding-tools/agents-md.mdx. The PreToolUse guard enforces only rules already written in CONTRIBUTING.md and AGENTS.md, so it adds no policy of its own. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ASfWmW3RGy4qAQm6s8U9jH
83 lines
3.0 KiB
YAML
83 lines
3.0 KiB
YAML
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: ruff
|
|
name: ruff
|
|
entry: bash -c 'source .venv/bin/activate && uv run ruff check --config pyproject.toml "$@"' --
|
|
language: system
|
|
pass_filenames: true
|
|
types: [python]
|
|
- id: ruff-format
|
|
name: ruff-format
|
|
entry: bash -c 'source .venv/bin/activate && uv run ruff format --config pyproject.toml "$@"' --
|
|
language: system
|
|
pass_filenames: true
|
|
types: [python]
|
|
- id: mypy
|
|
name: mypy
|
|
entry: bash -c 'source .venv/bin/activate && uv run mypy --config-file pyproject.toml "$@"' --
|
|
language: system
|
|
pass_filenames: true
|
|
types: [python]
|
|
exclude: ^(lib/crewai/src/crewai/cli/templates/|lib/cli/src/crewai_cli/templates/|lib/cli/tests/|lib/crewai/tests/|lib/crewai-tools/tests/|lib/crewai-files/tests/|lib/devtools/tests/)
|
|
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
rev: 0.11.3
|
|
hooks:
|
|
- id: uv-lock
|
|
- repo: local
|
|
hooks:
|
|
- id: pip-audit
|
|
name: pip-audit
|
|
# Keep this ignore list in sync with .github/workflows/vulnerability-scan.yml.
|
|
entry: >-
|
|
bash -c 'source .venv/bin/activate && uv run pip-audit --skip-editable
|
|
--ignore-vuln PYSEC-2024-277
|
|
--ignore-vuln PYSEC-2026-89
|
|
--ignore-vuln PYSEC-2026-97
|
|
--ignore-vuln PYSEC-2026-597
|
|
--ignore-vuln PYSEC-2025-148
|
|
--ignore-vuln PYSEC-2025-183
|
|
--ignore-vuln PYSEC-2025-189
|
|
--ignore-vuln PYSEC-2025-190
|
|
--ignore-vuln PYSEC-2025-191
|
|
--ignore-vuln PYSEC-2025-192
|
|
--ignore-vuln PYSEC-2025-193
|
|
--ignore-vuln PYSEC-2025-194
|
|
--ignore-vuln PYSEC-2025-195
|
|
--ignore-vuln PYSEC-2025-196
|
|
--ignore-vuln PYSEC-2025-197
|
|
--ignore-vuln PYSEC-2025-210
|
|
--ignore-vuln PYSEC-2026-139
|
|
--ignore-vuln GHSA-rrmf-rvhw-rf47
|
|
--ignore-vuln PYSEC-2025-211
|
|
--ignore-vuln PYSEC-2025-212
|
|
--ignore-vuln PYSEC-2025-213
|
|
--ignore-vuln PYSEC-2025-214
|
|
--ignore-vuln PYSEC-2025-215
|
|
--ignore-vuln PYSEC-2025-216
|
|
--ignore-vuln PYSEC-2025-217
|
|
--ignore-vuln PYSEC-2025-218
|
|
--ignore-vuln GHSA-f4j7-r4q5-qw2c' --
|
|
language: system
|
|
pass_filenames: false
|
|
stages: [pre-push, manual]
|
|
- repo: local
|
|
hooks:
|
|
- id: agent-guard-hook
|
|
name: agent-guard-hook
|
|
# --confcutdir keeps the root conftest out: it assumes every test lives
|
|
# under lib/<package>/tests/, which these do not.
|
|
entry: >-
|
|
bash -c 'source .venv/bin/activate && uv run pytest
|
|
.claude/hooks/test_guard.py -q --confcutdir=.claude/hooks'
|
|
language: system
|
|
pass_filenames: false
|
|
files: ^\.claude/hooks/
|
|
- repo: https://github.com/commitizen-tools/commitizen
|
|
rev: v4.10.1
|
|
hooks:
|
|
- id: commitizen
|
|
- id: commitizen-branch
|
|
stages: [ pre-push ]
|
|
|