@codyswann/lisa 2.48.0 → 2.49.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 +1 -1
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa/skills/setup-linear/SKILL.md +5 -2
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki/.codex-plugin/plugin.json +1 -1
- package/plugins/src/base/skills/setup-linear/SKILL.md +5 -2
- package/typescript/copy-contents/.husky/commit-msg +6 -2
package/package.json
CHANGED
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"lodash": ">=4.18.1"
|
|
83
83
|
},
|
|
84
84
|
"name": "@codyswann/lisa",
|
|
85
|
-
"version": "2.
|
|
85
|
+
"version": "2.49.0",
|
|
86
86
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
87
87
|
"main": "dist/index.js",
|
|
88
88
|
"exports": {
|
|
@@ -168,7 +168,9 @@ Probe with `mcp__linear-server__list_issue_labels` (scoped to the team). For eac
|
|
|
168
168
|
|
|
169
169
|
#### 3b. PRD-lifecycle labels — PROJECT labels (only if Linear is the PRD source)
|
|
170
170
|
|
|
171
|
-
Probe with `mcp__linear-server__list_project_labels`. Create missing ones via `mcp__linear-server__create_project_label`. These are a **separate label kind** from issue labels — creating an issue label of the same name will NOT work for the PRD flow.
|
|
171
|
+
Probe with `mcp__linear-server__list_project_labels`. Create missing ones via `mcp__linear-server__create_project_label`. This probe-then-create is find-or-create per label: a label already present is reused untouched, so re-running never duplicates `prd-*`. These are a **separate label kind** from issue labels — creating an issue label of the same name will NOT work for the PRD flow.
|
|
172
|
+
|
|
173
|
+
`prd-verified` is the terminal lifecycle state after `prd-shipped` (the `verified` role from config-resolution, #591): `/lisa:verify-prd` transitions a Linear PRD project into it once the shipped product has been empirically verified against the PRD. Scaffold it through the same find-or-create path as every other `prd-*` row.
|
|
172
174
|
|
|
173
175
|
| Role | Default | Kind |
|
|
174
176
|
|------|---------|------|
|
|
@@ -178,6 +180,7 @@ Probe with `mcp__linear-server__list_project_labels`. Create missing ones via `m
|
|
|
178
180
|
| `blocked` | `prd-blocked` | project label |
|
|
179
181
|
| `ticketed` | `prd-ticketed` | project label |
|
|
180
182
|
| `shipped` | `prd-shipped` | project label |
|
|
183
|
+
| `verified` | `prd-verified` | project label |
|
|
181
184
|
| `sentinel` | `prd-intake-feedback` | **issue** label (marks the sentinel feedback issue — create via `create_issue_label`) |
|
|
182
185
|
|
|
183
186
|
#### 3c. Handle name collisions / renames
|
|
@@ -230,7 +233,7 @@ jq -e '.linear.workspace' .lisa.config.json >/dev/null
|
|
|
230
233
|
[ "$(jq -r '.tracker // empty' .lisa.config.json)" = "linear" ] && jq -e '.linear.teamKey' .lisa.config.json >/dev/null
|
|
231
234
|
```
|
|
232
235
|
|
|
233
|
-
Confirm the scaffolded labels are present (`list_issue_labels` for `status:*` + the sentinel; `list_project_labels` for `prd
|
|
236
|
+
Confirm the scaffolded labels are present (`list_issue_labels` for `status:*` + the sentinel; `list_project_labels` for `prd-*`, including the terminal `prd-verified`). Report success with the resolved workspace, team key (if any), which namespaces were scaffolded (created vs. already existed), any non-default overrides, and whether `tracker` / `source` were set. Direct the user to `/lisa:intake` to test.
|
|
234
237
|
|
|
235
238
|
## Idempotency
|
|
236
239
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-openclaw",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.49.0",
|
|
4
4
|
"description": "Connect staff roles to Telegram or Slack via OpenClaw — facilitator/specialist hub-and-spoke routing and repo-coding topics, for Claude Code and Codex",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Cody Swann"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-openclaw",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.49.0",
|
|
4
4
|
"description": "Connect staff roles to Telegram or Slack via OpenClaw — facilitator/specialist hub-and-spoke routing and repo-coding topics, across Claude and Codex.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Cody Swann"
|
|
@@ -168,7 +168,9 @@ Probe with `mcp__linear-server__list_issue_labels` (scoped to the team). For eac
|
|
|
168
168
|
|
|
169
169
|
#### 3b. PRD-lifecycle labels — PROJECT labels (only if Linear is the PRD source)
|
|
170
170
|
|
|
171
|
-
Probe with `mcp__linear-server__list_project_labels`. Create missing ones via `mcp__linear-server__create_project_label`. These are a **separate label kind** from issue labels — creating an issue label of the same name will NOT work for the PRD flow.
|
|
171
|
+
Probe with `mcp__linear-server__list_project_labels`. Create missing ones via `mcp__linear-server__create_project_label`. This probe-then-create is find-or-create per label: a label already present is reused untouched, so re-running never duplicates `prd-*`. These are a **separate label kind** from issue labels — creating an issue label of the same name will NOT work for the PRD flow.
|
|
172
|
+
|
|
173
|
+
`prd-verified` is the terminal lifecycle state after `prd-shipped` (the `verified` role from config-resolution, #591): `/lisa:verify-prd` transitions a Linear PRD project into it once the shipped product has been empirically verified against the PRD. Scaffold it through the same find-or-create path as every other `prd-*` row.
|
|
172
174
|
|
|
173
175
|
| Role | Default | Kind |
|
|
174
176
|
|------|---------|------|
|
|
@@ -178,6 +180,7 @@ Probe with `mcp__linear-server__list_project_labels`. Create missing ones via `m
|
|
|
178
180
|
| `blocked` | `prd-blocked` | project label |
|
|
179
181
|
| `ticketed` | `prd-ticketed` | project label |
|
|
180
182
|
| `shipped` | `prd-shipped` | project label |
|
|
183
|
+
| `verified` | `prd-verified` | project label |
|
|
181
184
|
| `sentinel` | `prd-intake-feedback` | **issue** label (marks the sentinel feedback issue — create via `create_issue_label`) |
|
|
182
185
|
|
|
183
186
|
#### 3c. Handle name collisions / renames
|
|
@@ -230,7 +233,7 @@ jq -e '.linear.workspace' .lisa.config.json >/dev/null
|
|
|
230
233
|
[ "$(jq -r '.tracker // empty' .lisa.config.json)" = "linear" ] && jq -e '.linear.teamKey' .lisa.config.json >/dev/null
|
|
231
234
|
```
|
|
232
235
|
|
|
233
|
-
Confirm the scaffolded labels are present (`list_issue_labels` for `status:*` + the sentinel; `list_project_labels` for `prd
|
|
236
|
+
Confirm the scaffolded labels are present (`list_issue_labels` for `status:*` + the sentinel; `list_project_labels` for `prd-*`, including the terminal `prd-verified`). Report success with the resolved workspace, team key (if any), which namespaces were scaffolded (created vs. already existed), any non-default overrides, and whether `tracker` / `source` were set. Direct the user to `/lisa:intake` to test.
|
|
234
237
|
|
|
235
238
|
## Idempotency
|
|
236
239
|
|
|
@@ -83,13 +83,17 @@ fi
|
|
|
83
83
|
|
|
84
84
|
echo "🤖 Checking for AI co-authorship..."
|
|
85
85
|
|
|
86
|
-
|
|
86
|
+
# Accept attribution from any supported coding agent (Claude or Codex),
|
|
87
|
+
# case-insensitively. Claude Code emits "Co-Authored-By: Claude"; the Codex CLI
|
|
88
|
+
# emits "Co-authored-by: Codex <noreply@openai.com>".
|
|
89
|
+
if ! echo "$COMMIT_MSG" | grep -Eiq "Co-authored-by:.*(Claude|Codex)"; then
|
|
87
90
|
echo ""
|
|
88
91
|
echo "❌ Commit message must include AI co-authorship!"
|
|
89
92
|
echo ""
|
|
90
|
-
echo "All commits must include a Co-
|
|
93
|
+
echo "All commits must include a Co-authored-by line for a coding agent (Claude or Codex)."
|
|
91
94
|
echo ""
|
|
92
95
|
echo "If you're using Claude Code, use the /git:commit command"
|
|
96
|
+
echo "If you're using Codex, enable commit_attribution in .codex/config.toml"
|
|
93
97
|
echo ""
|
|
94
98
|
exit 1
|
|
95
99
|
fi
|