@codyswann/lisa 2.14.0 → 2.15.1
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 +1 -1
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
- package/rails/copy-overwrite/.rubocop.yml +5 -0
- package/rails/create-only/.github/workflows/claude-sync-down-branches.yml +37 -0
- package/rails/create-only/.rubocop_todo.yml +8 -0
- package/typescript/copy-overwrite/eslint.ignore.config.json +3 -1
- package/typescript/create-only/.github/workflows/claude-sync-down-branches.yml +37 -0
package/package.json
CHANGED
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"lodash": ">=4.18.1"
|
|
80
80
|
},
|
|
81
81
|
"name": "@codyswann/lisa",
|
|
82
|
-
"version": "2.
|
|
82
|
+
"version": "2.15.1",
|
|
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": {
|
|
@@ -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,8 @@
|
|
|
1
|
+
# This is the standard RuboCop "fix later" file.
|
|
2
|
+
# Lisa creates it empty so .rubocop.yml's `inherit_from` resolves cleanly
|
|
3
|
+
# in projects that don't yet have legacy violations to track.
|
|
4
|
+
#
|
|
5
|
+
# Generate or update with:
|
|
6
|
+
# bundle exec rubocop --auto-gen-config
|
|
7
|
+
#
|
|
8
|
+
# This file is create-only — Lisa will not overwrite your TODO list.
|
|
@@ -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 }}
|