abapgit-agent 1.11.1 → 1.11.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/abap/.github/copilot-instructions.md +9 -9
  2. package/abap/CLAUDE.md +57 -538
  3. package/abap/guidelines/{08_abapgit.md → abapgit.md} +1 -1
  4. package/abap/guidelines/branch-workflow.md +137 -0
  5. package/abap/guidelines/cds-testing.md +25 -0
  6. package/abap/guidelines/{04_cds.md → cds.md} +4 -4
  7. package/abap/guidelines/{10_common_errors.md → common-errors.md} +3 -3
  8. package/abap/guidelines/debug-dump.md +33 -0
  9. package/abap/guidelines/debug-session.md +280 -0
  10. package/abap/guidelines/index.md +50 -0
  11. package/abap/guidelines/object-creation.md +51 -0
  12. package/abap/guidelines/{06_objects.md → objects.md} +5 -2
  13. package/abap/guidelines/{01_sql.md → sql.md} +2 -2
  14. package/abap/guidelines/{03_testing.md → testing.md} +3 -3
  15. package/abap/guidelines/workflow-detailed.md +255 -0
  16. package/package.json +1 -1
  17. package/src/commands/debug.js +54 -20
  18. package/src/commands/init.js +40 -0
  19. package/src/commands/inspect.js +5 -3
  20. package/src/commands/pull.js +4 -1
  21. package/src/commands/transport.js +3 -1
  22. package/src/commands/unit.js +10 -10
  23. package/src/commands/view.js +238 -1
  24. package/src/utils/abap-http.js +6 -1
  25. package/src/utils/abap-reference.js +4 -4
  26. package/src/utils/adt-http.js +6 -1
  27. package/src/utils/format-error.js +89 -0
  28. package/abap/guidelines/00_index.md +0 -44
  29. /package/abap/guidelines/{05_classes.md → classes.md} +0 -0
  30. /package/abap/guidelines/{02_exceptions.md → exceptions.md} +0 -0
  31. /package/abap/guidelines/{07_json.md → json.md} +0 -0
  32. /package/abap/guidelines/{09_unit_testable_code.md → unit-testable-code.md} +0 -0
@@ -100,7 +100,7 @@ abapgit-agent unit --files src/zcl_test.clas.testclasses.abap
100
100
  - Testing specific scenarios that may not exist in production
101
101
  - Fast, isolated tests that don't depend on database state
102
102
 
103
- See `../guidelines/03_testing.md` for code examples.
103
+ See `../guidelines/testing.md` for code examples.
104
104
 
105
105
  ---
106
106
 
@@ -232,14 +232,14 @@ Detailed guidelines are available in the `guidelines/` folder:
232
232
 
233
233
  | File | Topic |
234
234
  |------|-------|
235
- | `../guidelines/01_sql.md` | ABAP SQL Best Practices |
236
- | `../guidelines/02_exceptions.md` | Exception Handling |
237
- | `../guidelines/03_testing.md` | Unit Testing (including CDS) |
238
- | `../guidelines/04_cds.md` | CDS Views |
239
- | `../guidelines/05_classes.md` | ABAP Classes and Objects |
240
- | `../guidelines/06_objects.md` | Object Naming Conventions |
241
- | `../guidelines/07_json.md` | JSON Handling |
242
- | `../guidelines/08_abapgit.md` | abapGit XML Metadata Templates |
235
+ | `../guidelines/sql.md` | ABAP SQL Best Practices |
236
+ | `../guidelines/exceptions.md` | Exception Handling |
237
+ | `../guidelines/testing.md` | Unit Testing (including CDS) |
238
+ | `../guidelines/cds.md` | CDS Views |
239
+ | `../guidelines/classes.md` | ABAP Classes and Objects |
240
+ | `../guidelines/objects.md` | Object Naming Conventions |
241
+ | `../guidelines/json.md` | JSON Handling |
242
+ | `../guidelines/abapgit.md` | abapGit XML Metadata Templates |
243
243
 
244
244
  These guidelines are automatically searched by the `ref` command.
245
245