Skip to content

Commit decbd9a

Browse files
authored
Merge branch 'main' into simonfaltum/b39-python-tmpdir-leak
2 parents 7ab2e9f + ed5cf3a commit decbd9a

728 files changed

Lines changed: 215579 additions & 2049 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.agent/rules/auto-generated-files.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ Files matching this rule's glob pattern are most likely generated artifacts. Aut
6767
- Everything, in one shot:
6868
- `./task generate` — aggregator that runs all generators below
6969
- OpenAPI SDK/CLI command stubs and related generated artifacts:
70-
- `./task generate-genkit`
71-
- Includes generated `cmd/account/**`, `cmd/workspace/**`, `.gitattributes`, `internal/genkit/tagging.py`.
70+
- `./task generate-cligen` — regenerates `cmd/account/**`, `cmd/workspace/**` and `.gitattributes` from the checked-in `.codegen/cli.json`.
71+
- `./task generate-clijson` — refreshes `.codegen/cli.json` from the OpenAPI spec via genkit (requires universe repo); also updates `internal/genkit/tagging.py`.
7272
- Direct engine generated YAML:
7373
- `./task generate-direct` (or `./task generate-direct-apitypes`, `./task generate-direct-resources`)
7474
- Bundle schemas:

.agent/skills/pr-checklist/SKILL.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ After the commands above pass, scrub the diff before pushing. The quick version:
4747

4848
Follow `.github/PULL_REQUEST_TEMPLATE.md` exactly. Use its section headings (`## Changes`, `## Why`, `## Tests`) in the same order, and fill each one in. Do not invent new sections (`## Summary`, `## Test plan`, etc.), do not drop sections, and do not leave the HTML comment placeholders in the final body — replace them with real content. If a section genuinely does not apply (e.g. a docs-only change has no test steps), say so explicitly under that heading rather than removing it.
4949

50+
**RULE: Be concise in the PR summary.** Overly verbose descriptions tend to be ignored by reviewers. Let the diff speak for itself and only describe at a high level what you have implemented/what components were touched.
51+
5052
When using `gh pr create`, read `.github/PULL_REQUEST_TEMPLATE.md` first and base `--body` on it.
5153

5254
If an agent (you) authored or substantially helped author the PR, disclose it on the last line of the body, e.g. `_This PR was written by Claude Code._` or `_PR description drafted with Claude Code._`. Be honest about the level of involvement — "written by" vs. "drafted with" vs. "reviewed by" — and keep it to a single italicized line so it doesn't crowd the template sections.

.codegen.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
2-
"mode": "cli_v0",
3-
"api_changelog": true,
2+
"mode": "cli_v1",
43
"formatter": "go run golang.org/x/tools/cmd/goimports@latest -w $FILENAMES && go fmt ./...",
54
"version": {
65
"python/README.md": "version $VERSION or above",

.codegen/.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cli.json linguist-generated=true

0 commit comments

Comments
 (0)