@codyswann/lisa 1.57.3 → 1.58.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
@@ -72,7 +72,7 @@
72
72
  "axios": ">=1.13.5"
73
73
  },
74
74
  "name": "@codyswann/lisa",
75
- "version": "1.57.3",
75
+ "version": "1.58.0",
76
76
  "description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
77
77
  "main": "dist/index.js",
78
78
  "exports": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa",
3
- "version": "1.57.3",
3
+ "version": "1.58.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": "1.57.3",
3
+ "version": "1.58.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": "1.57.3",
3
+ "version": "1.58.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": "1.57.3",
3
+ "version": "1.58.0",
4
4
  "description": "NestJS-specific skills (GraphQL, TypeORM)",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-rails",
3
- "version": "1.57.3",
3
+ "version": "1.58.0",
4
4
  "description": "Ruby on Rails-specific skills, rules, and conventions",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-typescript",
3
- "version": "1.57.3",
3
+ "version": "1.58.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,34 @@
1
+ # This file was created by Lisa on first setup.
2
+ # You can customize this file — Lisa will not overwrite it.
3
+
4
+ name: Claude Nightly Jira Triage
5
+
6
+ on:
7
+ schedule:
8
+ - cron: '0 6 * * 1-5'
9
+ workflow_dispatch:
10
+ inputs:
11
+ ticket_key:
12
+ description: 'Specific Jira ticket key to triage (leave empty for batch mode)'
13
+ required: false
14
+ type: string
15
+ ticket_count:
16
+ description: 'Number of untriaged tickets to process in batch mode'
17
+ required: false
18
+ default: '5'
19
+ type: string
20
+
21
+ permissions:
22
+ contents: read
23
+ issues: write
24
+ id-token: write
25
+
26
+ jobs:
27
+ triage:
28
+ uses: CodySwannGT/lisa/.github/workflows/reusable-claude-nightly-jira-triage.yml@main
29
+ with:
30
+ ticket_key: ${{ github.event.inputs.ticket_key || '' }}
31
+ ticket_count: ${{ fromJSON(github.event.inputs.ticket_count || '5') }}
32
+ secrets:
33
+ CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
34
+ JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
@@ -0,0 +1,34 @@
1
+ # This file was created by Lisa on first setup.
2
+ # You can customize this file — Lisa will not overwrite it.
3
+
4
+ name: Claude Nightly Jira Triage
5
+
6
+ on:
7
+ schedule:
8
+ - cron: '0 6 * * 1-5'
9
+ workflow_dispatch:
10
+ inputs:
11
+ ticket_key:
12
+ description: 'Specific Jira ticket key to triage (leave empty for batch mode)'
13
+ required: false
14
+ type: string
15
+ ticket_count:
16
+ description: 'Number of untriaged tickets to process in batch mode'
17
+ required: false
18
+ default: '5'
19
+ type: string
20
+
21
+ permissions:
22
+ contents: read
23
+ issues: write
24
+ id-token: write
25
+
26
+ jobs:
27
+ triage:
28
+ uses: CodySwannGT/lisa/.github/workflows/reusable-claude-nightly-jira-triage.yml@main
29
+ with:
30
+ ticket_key: ${{ github.event.inputs.ticket_key || '' }}
31
+ ticket_count: ${{ fromJSON(github.event.inputs.ticket_count || '5') }}
32
+ secrets:
33
+ CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
34
+ JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}