create-lore 0.14.3 → 0.14.5

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.
@@ -0,0 +1,16 @@
1
+ name: Check commit author
2
+ on: [push, pull_request]
3
+ jobs:
4
+ check:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v4
8
+ with:
9
+ fetch-depth: 0
10
+ - name: Reject blocked domain commits
11
+ run: |
12
+ BLOCKED="@bhg-inc.com"
13
+ if git log --format='%ae%n%ce' --all | grep -qi "$BLOCKED"; then
14
+ echo "::error::Commits contain blocked email domain ($BLOCKED)"
15
+ exit 1
16
+ fi
package/SECURITY.md CHANGED
@@ -21,4 +21,4 @@ We will acknowledge receipt within 48 hours and provide a timeline for a fix.
21
21
 
22
22
  | Version | Supported |
23
23
  | ------- | --------- |
24
- | 0.14.x | Yes |
24
+ | 0.14.x | Yes |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-lore",
3
- "version": "0.14.3",
3
+ "version": "0.14.5",
4
4
  "description": "Scaffold a new Lore coding agent harness",
5
5
  "bin": {
6
6
  "create-lore": "bin/create-lore.js"