Skip to content
Merged
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
9 changes: 2 additions & 7 deletions .github/agents/github-maintenance-agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ My `github-maintenance-agent`:
Validate GitHub Actions workflows:
```bash
# Check YAML syntax
yamllint .github/workflows/*.yml
yamllint -c .github/.yamllint .github/workflows/*.yml
```

Test issue template rendering:
Expand All @@ -41,12 +41,7 @@ gh issue create --web
```
.github/
├── agents/ # Agent definitions
│ ├── cds-extractor-agent.md
│ ├── cap-modeling-agent.md
│ ├── ui5-modeling-agent.md
│ ├── xsjs-modeling-agent.md
│ ├── dependency-upgrade-agent.md
│ └── github-maintenance-agent.md
│ └── *.md # Individual agent definition files
├── instructions/ # Middle-layer instructions
│ ├── extractors_cds_tools_ts.instructions.md
│ ├── javascript_cap_ql.instructions.md
Expand Down
2 changes: 1 addition & 1 deletion .github/prompts/github_maintenance.prompt.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ When updating `.github/workflows/*.yml`:
actionlint .github/workflows/*.yml

# Or use yamllint
yamllint .github/workflows/*.yml
yamllint -c .github/.yamllint .github/workflows/*.yml

# Test in PR before merging
```
Expand Down
2 changes: 0 additions & 2 deletions .github/prompts/ui5_framework_codeql_dev.prompt.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
```prompt
# UI5 Framework CodeQL Query Development

Guidelines for developing CodeQL security queries that detect vulnerable code patterns in SAPUI5 applications.
Expand Down Expand Up @@ -165,4 +164,3 @@ const fragment = await Fragment.load({
- [UI5 Library Modeling Prompt](ui5_framework_codeql_lib.prompt.md) - Library implementation details
- [UI5 Testing Prompt](ui5_framework_codeql_test.prompt.md) - Test case development
- [CodeQL Test Commands](codeql_test_commands.prompt.md) - Testing workflow
```
2 changes: 0 additions & 2 deletions .github/prompts/ui5_framework_codeql_lib.prompt.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
```prompt
# UI5 Framework CodeQL Library Modeling

Guidelines for developing CodeQL library models (`.qll` files) that define sources, sinks, and taint steps for SAPUI5 security analysis.
Expand Down Expand Up @@ -264,4 +263,3 @@ module UI5LogInjection implements DataFlow::ConfigSig {
- [UI5 Query Development Prompt](ui5_framework_codeql_dev.prompt.md) - Query file structure
- [UI5 Testing Prompt](ui5_framework_codeql_test.prompt.md) - Test case development
- [UI5 Framework Development](ui5_framework_development.prompt.md) - General UI5 context
```
2 changes: 0 additions & 2 deletions .github/prompts/ui5_framework_codeql_test.prompt.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
```prompt
# UI5 Framework CodeQL Unit Testing

Guidelines for creating unit tests for UI5 CodeQL queries and library models.
Expand Down Expand Up @@ -287,4 +286,3 @@ Each alert on separate line in `#select`:
- [UI5 Library Modeling Prompt](ui5_framework_codeql_lib.prompt.md) - Library implementation
- [CodeQL Test Commands](codeql_test_commands.prompt.md) - Command reference
- [Test-Driven Development](test_driven_development.prompt.md) - TDD workflow
```