Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
5ffe18f
docs: update Claude developer guides and add repo config
WilcoLouwerse Apr 10, 2026
636dc21
docs: clarify L3/L5 detection criteria and update evals schema in wri…
WilcoLouwerse Apr 10, 2026
d919862
feat: add settings-repo-ref support, remove CLAUDE.local.md, bump to …
WilcoLouwerse Apr 13, 2026
6ae9e38
docs: update Claude developer guides and add repo config
WilcoLouwerse Apr 14, 2026
d292365
docs: reorganize command reference and add skill documentation
WilcoLouwerse Apr 16, 2026
18200e8
docs(retrofit): add playbook for opsx-coverage-scan / annotate / reve…
rubenvdlinde Apr 17, 2026
f47ab13
docs: update global settings, usage tracker improvements, and add she…
WilcoLouwerse Apr 17, 2026
db51565
docs: address PR review feedback — extract workstation setup, slim RE…
WilcoLouwerse Apr 20, 2026
5b66de9
Merge pull request #18 from ConductionNL/docs/update-claude-developer…
WilcoLouwerse Apr 20, 2026
0fff2c2
fix(global-settings): tighten hook guards, drop unused unlock, add te…
WilcoLouwerse Apr 21, 2026
d1eabb3
Merge remote-tracking branch 'origin/main' into docs/global-claude-se…
WilcoLouwerse Apr 23, 2026
aea4c78
Merge remote-tracking branch 'origin/retrofit/playbook-docs' into doc…
WilcoLouwerse Apr 23, 2026
4fbe9f4
docs: consolidate retrofit playbook, update ADR refs, restructure README
WilcoLouwerse Apr 23, 2026
be2de79
docs: add path conventions section to writing-skills guide
WilcoLouwerse Apr 23, 2026
d22b66f
fix(global-settings): silence shellcheck on intentional fixtures
WilcoLouwerse Apr 24, 2026
d406876
docs: add /review-pr command docs and clarify L5 eval requirements
WilcoLouwerse Apr 24, 2026
b6f589a
docs: standardize REQ-NNN format and add cross-referencing conventions
WilcoLouwerse Apr 24, 2026
d1d5fc1
docs: generalize workspace examples, expand skill-evals archiving, an…
WilcoLouwerse Apr 28, 2026
eb283f4
Merge remote-tracking branch 'origin/main' into docs/global-claude-se…
WilcoLouwerse Apr 30, 2026
0a9a651
chore: normalize SVG line endings to LF per .gitattributes
WilcoLouwerse Apr 30, 2026
e581646
docs: add workstation-setup refs, scenario heading warning, and fix p…
WilcoLouwerse Apr 30, 2026
a8cddca
fix: address all review comments from PR #22 (MWest2020)
WilcoLouwerse May 1, 2026
ce51837
Merge origin/main — resolve retrofit.md conflict
WilcoLouwerse May 1, 2026
1ce7021
docs(retrofit): restore behavioral details lost in merge conflict res…
WilcoLouwerse May 1, 2026
6156359
test(hook): make harness portable + add CI workflow
WilcoLouwerse May 4, 2026
d21b34b
Potential fix for pull request finding 'CodeQL / Workflow does not co…
WilcoLouwerse May 4, 2026
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
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* text=auto

# Source code - always use LF
*.py text eol=lf
*.js text eol=lf
*.jsx text eol=lf
*.ts text eol=lf
Expand Down Expand Up @@ -34,6 +35,7 @@

# Docker and shell scripts - always use LF
Dockerfile text eol=lf
Dockerfile.* text eol=lf
*.dockerfile text eol=lf
*.sh text eol=lf

Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/hook-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Hook tests

on:
push:
paths:
- 'global-settings/**'
pull_request:
paths:
- 'global-settings/**'

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up settings-repo-path
run: |
mkdir -p "$HOME/.claude"
echo "$GITHUB_WORKSPACE" > "$HOME/.claude/settings-repo-path"

- name: Run hook tests
env:
TEST_REPO_DIR: ${{ github.workspace }}
run: bash global-settings/tests/test-block-write-commands.sh
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
Loading
Loading