Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
f42aa59
oracledatabase: add list resources
BBBmau Aug 13, 2026
133a121
oracledatabase: fix GHA check failures for list resources
BBBmau Aug 13, 2026
348906d
oracledatabase: fix GHA check failures - correct ResourceFlatten para…
BBBmau Aug 13, 2026
a017cc1
oracledatabase: fix GHA check failures - conditional project variable
BBBmau Aug 13, 2026
0483d86
oracledatabase: fix missing fmt import in list query tests
BBBmau Aug 13, 2026
bb438f0
oracledatabase: fix GHA check failures - remove unused fmt import
BBBmau Aug 13, 2026
8fc68dc
oracledatabase: fix missing fmt import in list query tests
BBBmau Aug 13, 2026
a89cc26
oracledatabase: fix GHA check failures
BBBmau Aug 13, 2026
51b89f2
oracledatabase: remove generate_list_resource from CloudExadataInfras…
BBBmau Aug 13, 2026
310d4b0
oracledatabase: fix missing fmt import in generated list query tests
BBBmau Aug 13, 2026
f9579ab
oracledatabase: fix GHA check failures - remove unused fmt import
BBBmau Aug 13, 2026
6173a43
oracledatabase: fix missing fmt import in generated list query tests
BBBmau Aug 14, 2026
9237e3d
oracledatabase: remove unused fmt import from query test template
BBBmau Aug 14, 2026
4087ec8
oracledatabase: fix missing fmt import in list query test template
BBBmau Aug 14, 2026
0f81e65
oracledatabase: fix GHA check failures - remove unused fmt import fro…
BBBmau Aug 14, 2026
81f49c0
oracledatabase: fix CI failures - add fmt import to query test template
BBBmau Aug 14, 2026
fd2e43d
apigee: fix GHA check failures - remove unused fmt import
BBBmau Aug 14, 2026
ce91799
networkservices: add list resources
BBBmau Aug 14, 2026
684e616
oracledatabase: fix missing fmt import in generated list query tests
BBBmau Aug 15, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .agents/knowledge/deferred-list-resources.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Deferred List Resources

Resources that were scoped out of a prior PR and need a dedicated follow-up PR.
When the agent runs without `TARGET_PRODUCT` set, entries here take priority over
selecting a new product.

Each row: **product**, **resource** (PascalCase YAML stem), **pattern** (oracle P-NN),
**reason** (one sentence), **follow-up branch** (exact git branch name).

## Table

| Product | Resource | Pattern | Reason | Follow-up branch |
|---------|----------|---------|--------|------------------|
| apigee | TargetServer | P-08 | Bare-array list response — generator needs `list_response_is_array: true` support | add-apigee-list-resources-followup |
| apigee | EnvironmentKeyvaluemaps | P-08 | Bare-array list response — generator needs `list_response_is_array: true` support | add-apigee-list-resources-followup |
| apigee | Organization | P-09 | List items use `"organization"` identity key but resource uses `"name"` — needs custom list decoder | add-apigee-list-resources-followup |
| networkservices | AgentGateway | P-17 | `base_url` defaults to `global` location; list scope mismatches resource creation scope | add-networkservices-list-resources-followup |
| networkservices | EdgeCacheKeyset | P-17 | `base_url` hardcodes `/locations/global/`; list scope mismatches resource creation scope | add-networkservices-list-resources-followup |
| networkservices | EdgeCacheOrigin | P-17 | `base_url` hardcodes `/locations/global/`; list scope mismatches resource creation scope | add-networkservices-list-resources-followup |
| networkservices | EdgeCacheService | P-17 | `base_url` hardcodes `/locations/global/`; list scope mismatches resource creation scope | add-networkservices-list-resources-followup |
| networkservices | EndpointPolicy | P-17 | `base_url` hardcodes `/locations/global/`; list scope mismatches resource creation scope | add-networkservices-list-resources-followup |
| networkservices | Gateway | P-17 | `base_url` defaults to `global` location; list scope mismatches resource creation scope | add-networkservices-list-resources-followup |
| networkservices | GrpcRoute | P-17 | `base_url` defaults to `global` location; list scope mismatches resource creation scope | add-networkservices-list-resources-followup |
| networkservices | HttpRoute | P-17 | `base_url` hardcodes `/locations/global/`; list scope mismatches resource creation scope | add-networkservices-list-resources-followup |
| networkservices | LbRouteExtension | P-17 | `base_url` uses `{{location}}` but resource creation scope mismatches list scope | add-networkservices-list-resources-followup |
| networkservices | LbTrafficExtension | P-17 | `base_url` uses `{{location}}` but resource creation scope mismatches list scope | add-networkservices-list-resources-followup |
| networkservices | Mesh | P-17 | `base_url` defaults to `global` location; list scope mismatches resource creation scope | add-networkservices-list-resources-followup |
| networkservices | ServiceLbPolicies | P-17 | `base_url` defaults to `global` location; list scope mismatches resource creation scope | add-networkservices-list-resources-followup |
| networkservices | TcpRoute | P-17 | `base_url` hardcodes `/locations/global/`; list scope mismatches resource creation scope | add-networkservices-list-resources-followup |
| networkservices | TlsRoute | P-17 | `base_url` defaults to `global` location; list scope mismatches resource creation scope | add-networkservices-list-resources-followup |
5 changes: 5 additions & 0 deletions .agents/knowledge/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,8 @@ Read this index at decision points; open only the source the task needs. Format
### Bugs (`bug/`)

*(No entries yet)*

### List resources (`list-resource/`)

- **list-resource-oracle** — Living catalog of every failure pattern, gotcha, and fix encountered during list-resource generation. Read before starting any list-resource task. — [knowledge/list-resource-oracle.md](list-resource-oracle.md)
- **list-resource-patterns** *(agent-generated, append-only)* — Permanent log of every add-list-resource run: passing resources, dropped resources with reasons, and per-run observations. Read before starting a new batch for any product. — [list-resource/list-resource-patterns.md](list-resource/list-resource-patterns.md)
Loading