abapgit-agent 1.11.1 → 1.11.2
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.
- package/abap/.github/copilot-instructions.md +9 -9
- package/abap/CLAUDE.md +48 -539
- package/abap/guidelines/{08_abapgit.md → abapgit.md} +1 -1
- package/abap/guidelines/branch-workflow.md +137 -0
- package/abap/guidelines/cds-testing.md +25 -0
- package/abap/guidelines/{04_cds.md → cds.md} +4 -4
- package/abap/guidelines/{10_common_errors.md → common-errors.md} +3 -3
- package/abap/guidelines/debug-dump.md +33 -0
- package/abap/guidelines/debug-session.md +280 -0
- package/abap/guidelines/index.md +50 -0
- package/abap/guidelines/object-creation.md +51 -0
- package/abap/guidelines/{06_objects.md → objects.md} +2 -2
- package/abap/guidelines/{01_sql.md → sql.md} +2 -2
- package/abap/guidelines/{03_testing.md → testing.md} +3 -3
- package/abap/guidelines/workflow-detailed.md +255 -0
- package/package.json +1 -1
- package/src/commands/debug.js +54 -20
- package/src/commands/inspect.js +5 -3
- package/src/commands/pull.js +4 -1
- package/src/commands/transport.js +3 -1
- package/src/commands/unit.js +10 -10
- package/src/commands/view.js +238 -1
- package/src/utils/abap-http.js +6 -1
- package/src/utils/abap-reference.js +4 -4
- package/src/utils/adt-http.js +6 -1
- package/src/utils/format-error.js +89 -0
- package/abap/guidelines/00_index.md +0 -44
- /package/abap/guidelines/{05_classes.md → classes.md} +0 -0
- /package/abap/guidelines/{02_exceptions.md → exceptions.md} +0 -0
- /package/abap/guidelines/{07_json.md → json.md} +0 -0
- /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/
|
|
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/
|
|
236
|
-
| `../guidelines/
|
|
237
|
-
| `../guidelines/
|
|
238
|
-
| `../guidelines/
|
|
239
|
-
| `../guidelines/
|
|
240
|
-
| `../guidelines/
|
|
241
|
-
| `../guidelines/
|
|
242
|
-
| `../guidelines/
|
|
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
|
|