Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
6daf1d7
Delete samples
MelbourneDeveloper Apr 3, 2026
c8c9403
Remove samples
MelbourneDeveloper Mar 31, 2026
3275f5f
Delete reporting
MelbourneDeveloper Apr 3, 2026
2cee3b4
Delete samples
MelbourneDeveloper Apr 3, 2026
4775000
Rename everything
MelbourneDeveloper Apr 3, 2026
3aad3ec
Renaming fixes
MelbourneDeveloper Apr 3, 2026
dc4d1de
Fixes
MelbourneDeveloper Apr 3, 2026
0d41864
Renaming fixes
MelbourneDeveloper Apr 3, 2026
db6ade1
Fixes
MelbourneDeveloper Apr 3, 2026
f68b243
Fixes
MelbourneDeveloper Apr 3, 2026
99e86b9
Remove gatekeeper
MelbourneDeveloper Apr 3, 2026
8511ac4
rename
MelbourneDeveloper Apr 3, 2026
0eb105b
Rename
MelbourneDeveloper Apr 3, 2026
b580971
stuff
MelbourneDeveloper Apr 3, 2026
49bf488
Format
MelbourneDeveloper Apr 3, 2026
6a27247
Redo ci
MelbourneDeveloper Apr 3, 2026
3eb7c5f
fix vsix tests
MelbourneDeveloper Apr 4, 2026
4eacb0a
testing fixes
MelbourneDeveloper Apr 4, 2026
136a07c
testing fixes
MelbourneDeveloper Apr 4, 2026
1779085
testing fixes
MelbourneDeveloper Apr 4, 2026
81b1ef8
test coverage
MelbourneDeveloper Apr 4, 2026
86926c8
test fixes
MelbourneDeveloper Apr 4, 2026
7bd08e9
format
MelbourneDeveloper Apr 4, 2026
346b96d
testing fixes
MelbourneDeveloper Apr 4, 2026
efec752
fixes
MelbourneDeveloper Apr 4, 2026
240bcd6
work on thresholds
MelbourneDeveloper Apr 4, 2026
bad2c49
coverage stuff
MelbourneDeveloper Apr 4, 2026
8fdc8e2
cleanup
MelbourneDeveloper Apr 4, 2026
cfbc121
cleanup
MelbourneDeveloper Apr 4, 2026
3fd025f
Cleanup
MelbourneDeveloper Apr 4, 2026
7c6b8e9
fixes
MelbourneDeveloper Apr 5, 2026
8eab0dc
Fix CA1308: Replace ToLowerInvariant with ToUpperInvariant
MelbourneDeveloper Apr 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
48 changes: 0 additions & 48 deletions .claude/skills/container-logs/SKILL.md

This file was deleted.

52 changes: 0 additions & 52 deletions .claude/skills/run-samples/SKILL.md

This file was deleted.

11 changes: 6 additions & 5 deletions .claude/skills/submit-pr/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,22 @@ Create a pull request for the current branch with a well-structured description.
## Steps

1. Run `make ci` — must pass completely before creating PR
2. Determine the PR title from recent commits and changed files
3. Read the PR template from `.github/PULL_REQUEST_TEMPLATE.md`
4. Fill in:
2. **Generate the diff against main.** Run `git diff main...HEAD > /tmp/pr-diff.txt` to capture the full diff between the current branch and the head of main. This is the ONLY source of truth for what the PR contains. **Warning:** the diff can be very large. If the diff file exceeds context limits, process it in chunks (e.g., read sections with `head`/`tail` or split by file) rather than trying to load it all at once.
3. **Derive the PR title and description SOLELY from the diff.** Read the diff output and summarize what changed. Ignore commit messages, branch names, and any other metadata — only the actual code/content diff matters.
4. Write PR body using the template in `.github/pull_request_template.md`
5. Fill in (based on the diff analysis from step 3):
- TLDR: one sentence
- What Was Added: new files, features, deps
- What Was Changed/Deleted: modified behaviour
- How Tests Prove It Works: specific test names or output
- Spec/Doc Changes: if any
- Breaking Changes: yes/no + description
5. Use `gh pr create` with the filled template
6. Use `gh pr create` with the filled template

## Rules

- Never create a PR if `make ci` fails
- PR description must be specific ��� no vague placeholders
- PR description must be specific and tight — no vague placeholders
- Link to the relevant GitHub issue if one exists

## Success criteria
Expand Down
Loading
Loading