Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ fail-closed and only pauses when the agent actually proposed a reviewed output.
│ │ │ ├── 0003_flatten_work_item_config.rs # Legacy work-item config flatten codemod
│ │ │ ├── 0004_legacy_path_markers.rs # Migrate {{ workspace }}/{{ working_directory }}/{{ trigger_repo_directory }} markers → explicit ADO path exprs (resolved from workspace:/repos:)
│ │ │ ├── 0005_drop_build_attachment_allowed_build_ids.rs # Remove inert safe-outputs.upload-build-attachment.allowed-build-ids key (build attachments are current-run only)
│ │ │ ├── 0006_explicit_push_trigger.rs # Absent `on:` → explicit `on.push` (all branches) for sources predating the trigger-semantics change; fires only when source provenance proves the pre-change version
│ │ │ └── helpers.rs # take_key, insert_no_overwrite, rename_key, ConflictPolicy
│ │ ├── codemod_integration_test.rs # White-box rewrite-path tests (stub registry injection)
│ │ ├── types.rs # Front matter grammar and types
Expand Down
3 changes: 2 additions & 1 deletion docs/codemods.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ src/compile/codemods/
├── 0002_pool_object_form.rs # Legacy scalar pool → explicit object form codemod
├── 0003_flatten_work_item_config.rs # Legacy work-item config flatten codemod
├── 0004_legacy_path_markers.rs # {{ workspace }} / {{ working_directory }} / {{ trigger_repo_directory }} → explicit ADO path exprs
└── 0005_drop_build_attachment_allowed_build_ids.rs # remove no-op upload-build-attachment.allowed-build-ids
├── 0005_drop_build_attachment_allowed_build_ids.rs # remove no-op upload-build-attachment.allowed-build-ids
└── 0006_explicit_push_trigger.rs # absent `on:` → explicit `on.push` (all branches) for pre-change sources
```

(New codemods are appended as `<NNNN>_<id>.rs` files.)
Expand Down