@codyswann/lisa 2.14.0 → 2.15.0

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/package.json CHANGED
@@ -79,7 +79,7 @@
79
79
  "lodash": ">=4.18.1"
80
80
  },
81
81
  "name": "@codyswann/lisa",
82
- "version": "2.14.0",
82
+ "version": "2.15.0",
83
83
  "description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
84
84
  "main": "dist/index.js",
85
85
  "exports": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa",
3
- "version": "2.14.0",
3
+ "version": "2.15.0",
4
4
  "description": "Universal governance — agents, skills, commands, hooks, and rules for all projects",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-cdk",
3
- "version": "2.14.0",
3
+ "version": "2.15.0",
4
4
  "description": "AWS CDK-specific plugin",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-expo",
3
- "version": "2.14.0",
3
+ "version": "2.15.0",
4
4
  "description": "Expo/React Native-specific skills, agents, rules, and MCP servers",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-nestjs",
3
- "version": "2.14.0",
3
+ "version": "2.15.0",
4
4
  "description": "NestJS-specific skills (GraphQL, TypeORM) and hooks (migration write-protection)",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-rails",
3
- "version": "2.14.0",
3
+ "version": "2.15.0",
4
4
  "description": "Ruby on Rails-specific hooks — RuboCop linting/formatting and ast-grep scanning on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-typescript",
3
- "version": "2.14.0",
3
+ "version": "2.15.0",
4
4
  "description": "TypeScript-specific hooks — Prettier formatting, ESLint linting, and ast-grep scanning on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -0,0 +1,37 @@
1
+ # This file was created by Lisa on first setup.
2
+ # You can customize this file — Lisa will not overwrite it.
3
+ #
4
+ # Back-syncs merges down the env chain so hotfixes propagate.
5
+ # Example: PR merged to main -> opens a sync PR to staging.
6
+ # PR merged to staging -> opens a sync PR to dev.
7
+ #
8
+ # Customize for your project:
9
+ # - `branches`: list each branch that should *trigger* a back-sync
10
+ # (typically the keys of `chain` below).
11
+ # - `chain`: JSON map of source -> target. Examples:
12
+ # 3-env: '{"main":"staging","staging":"dev"}'
13
+ # 2-env main/staging: '{"main":"staging"}'
14
+ # 2-env master/preprod: '{"master":"preprod"}'
15
+
16
+ name: Claude Sync Down Branches
17
+
18
+ on:
19
+ pull_request:
20
+ types: [closed]
21
+ branches: [main, staging]
22
+
23
+ permissions:
24
+ contents: write
25
+ pull-requests: write
26
+ issues: write
27
+ actions: read
28
+ id-token: write
29
+
30
+ jobs:
31
+ sync:
32
+ if: github.event.pull_request.merged == true
33
+ uses: CodySwannGT/lisa/.github/workflows/reusable-claude-sync-down-branches.yml@main
34
+ with:
35
+ chain: '{"main":"staging","staging":"dev"}'
36
+ secrets:
37
+ CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
@@ -0,0 +1,37 @@
1
+ # This file was created by Lisa on first setup.
2
+ # You can customize this file — Lisa will not overwrite it.
3
+ #
4
+ # Back-syncs merges down the env chain so hotfixes propagate.
5
+ # Example: PR merged to main -> opens a sync PR to staging.
6
+ # PR merged to staging -> opens a sync PR to dev.
7
+ #
8
+ # Customize for your project:
9
+ # - `branches`: list each branch that should *trigger* a back-sync
10
+ # (typically the keys of `chain` below).
11
+ # - `chain`: JSON map of source -> target. Examples:
12
+ # 3-env: '{"main":"staging","staging":"dev"}'
13
+ # 2-env main/staging: '{"main":"staging"}'
14
+ # 2-env master/preprod: '{"master":"preprod"}'
15
+
16
+ name: Claude Sync Down Branches
17
+
18
+ on:
19
+ pull_request:
20
+ types: [closed]
21
+ branches: [main, staging]
22
+
23
+ permissions:
24
+ contents: write
25
+ pull-requests: write
26
+ issues: write
27
+ actions: read
28
+ id-token: write
29
+
30
+ jobs:
31
+ sync:
32
+ if: github.event.pull_request.merged == true
33
+ uses: CodySwannGT/lisa/.github/workflows/reusable-claude-sync-down-branches.yml@main
34
+ with:
35
+ chain: '{"main":"staging","staging":"dev"}'
36
+ secrets:
37
+ CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}