chore(infra): note branch conventions in AGENTS.md (#37776)

This commit is contained in:
Mason Daugherty
2026-05-29 16:12:32 -04:00
committed by GitHub
parent 3893b9e344
commit b8c02e4389
2 changed files with 32 additions and 0 deletions

View File

@@ -97,6 +97,22 @@ feat(langchain): `ls_agent_type` tag on `create_agent` calls
fix(openai): infer Azure chat profiles from model name fix(openai): infer Azure chat profiles from model name
``` ```
#### Branch naming
Branches should be prefixed `<github-username>/<scope>/<short-description>`:
- `<github-username>` — the author's GitHub login (e.g. `mdrxy`).
- `<scope>` — the same scope used in the Conventional Commit title (`core`, `langchain`, partner name, `infra`, `docs`, etc.).
- `<short-description>` — kebab-case, brief, no trailing slash.
Examples:
```txt
mdrxy/anthropic/normalize-tool-call-ids
mdrxy/core/vector-store-type-hints
mdrxy/infra/agents-md-branch
```
#### PR descriptions #### PR descriptions
The description *is* the summary — do not add a `# Summary` header. The description *is* the summary — do not add a `# Summary` header.

View File

@@ -97,6 +97,22 @@ feat(langchain): `ls_agent_type` tag on `create_agent` calls
fix(openai): infer Azure chat profiles from model name fix(openai): infer Azure chat profiles from model name
``` ```
#### Branch naming
Branches should be prefixed `<github-username>/<scope>/<short-description>`:
- `<github-username>` — the author's GitHub login (e.g. `mdrxy`).
- `<scope>` — the same scope used in the Conventional Commit title (`core`, `langchain`, partner name, `infra`, `docs`, etc.).
- `<short-description>` — kebab-case, brief, no trailing slash.
Examples:
```txt
mdrxy/anthropic/normalize-tool-call-ids
mdrxy/core/vector-store-type-hints
mdrxy/infra/agents-md-branch
```
#### PR descriptions #### PR descriptions
The description *is* the summary — do not add a `# Summary` header. The description *is* the summary — do not add a `# Summary` header.