# Doc ownership — used by the pr-welcome-comment workflow to tell
# PR authors who to request review from.  Uses CODEOWNERS syntax
# (last matching rule wins).
#
# This file intentionally is NOT named CODEOWNERS so that GitHub
# does not auto-request reviewers.
#
# Opt-in auto-request: append a trailing # auto-request marker on
# any rule and the pr-welcome-comment workflow will call
# requestReviewers for the matching owners, in addition to posting
# the welcome comment. Two forms:
#   /path/ @a @b   # auto-request      -> request every owner
#   /path/ @a @b   # auto-request: @a  -> request only @a
#
# The scoped form must list a subset of the rule's owners; unknown
# users are ignored. The PR author is never auto-requested.

# Owner of this file
/.github/OWNERS @lnhsingh

# Default owners for everything in the repo.
*       @lnhsingh @katmayb @npentrel @fjmorris

# Any file in the `/src/oss`
# and any of its subdirectories.
/src/oss/ @npentrel @lnhsingh

# Any file in the `/src/oss/python/integrations`
# and any of its subdirectories.
/src/oss/python/integrations/ @mdrxy

# Any file in `/src/oss/deepagents/code/`
# (must come after the general /src/oss/ rule — last match wins).
/src/oss/deepagents/code/ @mdrxy  # auto-request: @mdrxy

# Any file in the `/src/langsmith`
# and any of its subdirectories.
/src/langsmith/ @katmayb @fjmorris

# Any file in `/src/langsmith/fleet/`
# (must come after the general /src/langsmith/ rule — last match wins).
/src/langsmith/fleet/ @lnhsingh @fjmorris

# security.txt in `/src/.well-known/`
/src/.well-known/security.txt @jkennedyvz
