@codyswann/lisa 2.199.0 → 2.200.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/dist/cli/index.d.ts +6 -0
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +30 -3
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/sync-cmd.d.ts +21 -0
- package/dist/cli/sync-cmd.d.ts.map +1 -0
- package/dist/cli/sync-cmd.js +43 -0
- package/dist/cli/sync-cmd.js.map +1 -0
- package/dist/cli/ui-cmd.d.ts +35 -0
- package/dist/cli/ui-cmd.d.ts.map +1 -0
- package/dist/cli/ui-cmd.js +104 -0
- package/dist/cli/ui-cmd.js.map +1 -0
- package/dist/sync/config-sync.d.ts +42 -0
- package/dist/sync/config-sync.d.ts.map +1 -0
- package/dist/sync/config-sync.js +272 -0
- package/dist/sync/config-sync.js.map +1 -0
- package/dist/sync/json-path.d.ts +58 -0
- package/dist/sync/json-path.d.ts.map +1 -0
- package/dist/sync/json-path.js +107 -0
- package/dist/sync/json-path.js.map +1 -0
- package/dist/sync/registry.d.ts +64 -0
- package/dist/sync/registry.d.ts.map +1 -0
- package/dist/sync/registry.js +207 -0
- package/dist/sync/registry.js.map +1 -0
- package/package.json +2 -1
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-agy/plugin.json +1 -1
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk-agy/plugin.json +1 -1
- package/plugins/lisa-cdk-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cursor/.claude-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-expo-agy/plugin.json +1 -1
- package/plugins/lisa-expo-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo-cursor/.claude-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-harper-fabric-agy/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-cursor/.claude-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-nestjs-agy/plugin.json +1 -1
- package/plugins/lisa-nestjs-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs-cursor/.claude-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-openclaw-agy/plugin.json +1 -1
- package/plugins/lisa-openclaw-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser-agy/plugin.json +1 -1
- package/plugins/lisa-phaser-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser-cursor/.claude-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-rails-agy/plugin.json +1 -1
- package/plugins/lisa-rails-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails-cursor/.claude-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-typescript-agy/plugin.json +1 -1
- package/plugins/lisa-typescript-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript-cursor/.claude-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/lisa-wiki-agy/plugin.json +1 -1
- package/plugins/lisa-wiki-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki-cursor/.claude-plugin/plugin.json +1 -1
- package/ui/README.md +180 -0
- package/ui/index.html +5396 -0
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
const WHEN_TRACKER_JIRA = "tracker=jira";
|
|
2
|
+
const WHEN_TRACKER_GITHUB = "tracker=github";
|
|
3
|
+
const WHEN_SOURCE_GITHUB = "source=github";
|
|
4
|
+
const WHEN_TRACKER_LINEAR = "tracker=linear";
|
|
5
|
+
const WHEN_SOURCE_LINEAR = "source=linear";
|
|
6
|
+
const WHEN_SOURCE_NOTION = "source=notion";
|
|
7
|
+
const COVERAGE_DEFAULTS = {
|
|
8
|
+
global: { statements: 70, branches: 70, functions: 70, lines: 70 },
|
|
9
|
+
};
|
|
10
|
+
const BUILD_LABEL_DEFAULTS = {
|
|
11
|
+
ready: "status:ready",
|
|
12
|
+
claimed: "status:in-progress",
|
|
13
|
+
blocked: "status:blocked",
|
|
14
|
+
human_needed: "human-needed",
|
|
15
|
+
done: {
|
|
16
|
+
dev: "status:on-dev",
|
|
17
|
+
staging: "status:on-stg",
|
|
18
|
+
production: "status:done",
|
|
19
|
+
},
|
|
20
|
+
};
|
|
21
|
+
const PRD_LABEL_DEFAULTS = {
|
|
22
|
+
draft: "prd-draft",
|
|
23
|
+
ready: "prd-ready",
|
|
24
|
+
in_review: "prd-in-review",
|
|
25
|
+
blocked: "prd-blocked",
|
|
26
|
+
ticketed: "prd-ticketed",
|
|
27
|
+
shipped: "prd-shipped",
|
|
28
|
+
verified: "prd-verified",
|
|
29
|
+
sentinel: "prd-intake-feedback",
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* All settings `lisa sync` manages. Local-only keys (`atlassian.email`,
|
|
33
|
+
* `intake.assignee`, `jira.verified_workflow_hash`, secret paths) are
|
|
34
|
+
* deliberately absent — sync never populates the committed file with values
|
|
35
|
+
* that belong in `.lisa.config.local.json`.
|
|
36
|
+
*/
|
|
37
|
+
export const SYNC_REGISTRY = [
|
|
38
|
+
{
|
|
39
|
+
key: "harness",
|
|
40
|
+
defaultValue: "claude",
|
|
41
|
+
description: "Target coding-agent harness(es)",
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
key: "quality.testCoverage",
|
|
45
|
+
defaultValue: COVERAGE_DEFAULTS,
|
|
46
|
+
artifacts: [
|
|
47
|
+
{ file: "vitest.thresholds.json", pointer: "" },
|
|
48
|
+
{ file: "jest.thresholds.json", pointer: "" },
|
|
49
|
+
],
|
|
50
|
+
description: "Test coverage floors (statements/branches/functions/lines)",
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
key: "quality.lintBudgets",
|
|
54
|
+
defaultValue: {
|
|
55
|
+
cognitiveComplexity: 10,
|
|
56
|
+
maxLines: 300,
|
|
57
|
+
maxLinesPerFunction: 75,
|
|
58
|
+
},
|
|
59
|
+
artifacts: [{ file: "eslint.thresholds.json", pointer: "" }],
|
|
60
|
+
description: "Lint complexity and size budgets",
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
key: "quality.mutation.gate",
|
|
64
|
+
defaultValue: { enabled: false, since: "main" },
|
|
65
|
+
artifacts: [{ file: "mutation.gate.json", pointer: "" }],
|
|
66
|
+
description: "Diff-only mutation testing gate",
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
key: "quality.mutation.strykerThresholds",
|
|
70
|
+
defaultValue: { high: 80, low: 60, break: 60 },
|
|
71
|
+
artifacts: [{ file: "stryker.conf.json", pointer: "thresholds" }],
|
|
72
|
+
description: "Stryker mutation-score thresholds",
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
key: "intake.repair",
|
|
76
|
+
defaultValue: { staleAfterHours: 2, maxCandidates: 100 },
|
|
77
|
+
description: "Repair-intake stall window and candidate cap",
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
key: "monitor",
|
|
81
|
+
defaultValue: {
|
|
82
|
+
maxCandidates: 20,
|
|
83
|
+
gapTiers: "core",
|
|
84
|
+
backoffHours: 24,
|
|
85
|
+
// Provider-neutral threshold names: the audit spans Sentry, CloudWatch,
|
|
86
|
+
// X-Ray, and future providers, so no key is prefixed with a vendor. The
|
|
87
|
+
// lisa-monitor skill still reads the legacy sentryMinEvents24h /
|
|
88
|
+
// xrayFaultRatePct keys — renaming those (config-resolution.md + skill)
|
|
89
|
+
// is a tracked follow-up; see ui/README.md.
|
|
90
|
+
thresholds: {
|
|
91
|
+
minEvents24h: 1,
|
|
92
|
+
errorRateSpikeMultiplier: 2,
|
|
93
|
+
p95LatencyMs: 1000,
|
|
94
|
+
faultRatePct: 5,
|
|
95
|
+
},
|
|
96
|
+
},
|
|
97
|
+
description: "Observability audit caps and alert thresholds",
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
key: "jira.workflow",
|
|
101
|
+
defaultValue: {
|
|
102
|
+
ready: "Ready",
|
|
103
|
+
claimed: "In Progress",
|
|
104
|
+
review: "Code Review",
|
|
105
|
+
blocked: "Blocked",
|
|
106
|
+
done: { dev: "On Dev", staging: "On Stg", production: "Done" },
|
|
107
|
+
},
|
|
108
|
+
relevantWhen: ["jira", WHEN_TRACKER_JIRA],
|
|
109
|
+
description: "JIRA workflow status names per lifecycle role",
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
key: "jira.labels",
|
|
113
|
+
defaultValue: { human_needed: "Human Needed" },
|
|
114
|
+
relevantWhen: ["jira", WHEN_TRACKER_JIRA],
|
|
115
|
+
description: "JIRA marker labels",
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
key: "github.labels",
|
|
119
|
+
defaultValue: { build: BUILD_LABEL_DEFAULTS, prd: PRD_LABEL_DEFAULTS },
|
|
120
|
+
relevantWhen: ["github", WHEN_TRACKER_GITHUB, WHEN_SOURCE_GITHUB],
|
|
121
|
+
description: "GitHub build and PRD lifecycle labels",
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
key: "linear.labels",
|
|
125
|
+
defaultValue: {
|
|
126
|
+
build: { ...BUILD_LABEL_DEFAULTS, review: "status:code-review" },
|
|
127
|
+
prd: PRD_LABEL_DEFAULTS,
|
|
128
|
+
},
|
|
129
|
+
relevantWhen: ["linear", WHEN_TRACKER_LINEAR, WHEN_SOURCE_LINEAR],
|
|
130
|
+
description: "Linear build and PRD lifecycle labels",
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
key: "notion.statusProperty",
|
|
134
|
+
defaultValue: "Status",
|
|
135
|
+
relevantWhen: ["notion", WHEN_SOURCE_NOTION],
|
|
136
|
+
description: "Notion database property that drives the PRD lifecycle",
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
key: "notion.values",
|
|
140
|
+
defaultValue: {
|
|
141
|
+
draft: "Draft",
|
|
142
|
+
ready: "Ready",
|
|
143
|
+
in_review: "In Review",
|
|
144
|
+
blocked: "Blocked",
|
|
145
|
+
ticketed: "Ticketed",
|
|
146
|
+
shipped: "Shipped",
|
|
147
|
+
verified: "Verified",
|
|
148
|
+
},
|
|
149
|
+
relevantWhen: ["notion", WHEN_SOURCE_NOTION],
|
|
150
|
+
description: "Notion status option names per lifecycle role",
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
key: "wiki.ttlSeconds",
|
|
154
|
+
defaultValue: 300,
|
|
155
|
+
relevantWhen: ["wiki"],
|
|
156
|
+
description: "Remote wiki mirror refresh TTL",
|
|
157
|
+
},
|
|
158
|
+
];
|
|
159
|
+
/**
|
|
160
|
+
* Keys sync can never default: they identify external systems and must come
|
|
161
|
+
* from a human (via the matching `/lisa:setup:*` skill). Sync reports them
|
|
162
|
+
* when missing instead of inventing values.
|
|
163
|
+
*/
|
|
164
|
+
export const REQUIRED_KEYS = [
|
|
165
|
+
{ key: "tracker", setupHint: "/lisa:setup:jira | github | linear" },
|
|
166
|
+
{
|
|
167
|
+
key: "jira.project",
|
|
168
|
+
relevantWhen: [WHEN_TRACKER_JIRA],
|
|
169
|
+
setupHint: "/lisa:setup:jira",
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
key: "atlassian.cloudId",
|
|
173
|
+
relevantWhen: [WHEN_TRACKER_JIRA, "source=confluence"],
|
|
174
|
+
setupHint: "/lisa:setup:atlassian",
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
key: "github.org",
|
|
178
|
+
relevantWhen: [WHEN_TRACKER_GITHUB, WHEN_SOURCE_GITHUB],
|
|
179
|
+
setupHint: "/lisa:setup:github",
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
key: "github.repo",
|
|
183
|
+
relevantWhen: [WHEN_TRACKER_GITHUB, WHEN_SOURCE_GITHUB],
|
|
184
|
+
setupHint: "/lisa:setup:github",
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
key: "linear.workspace",
|
|
188
|
+
relevantWhen: [WHEN_TRACKER_LINEAR, WHEN_SOURCE_LINEAR],
|
|
189
|
+
setupHint: "/lisa:setup:linear",
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
key: "linear.teamKey",
|
|
193
|
+
relevantWhen: [WHEN_TRACKER_LINEAR],
|
|
194
|
+
setupHint: "/lisa:setup:linear",
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
key: "notion.workspaceId",
|
|
198
|
+
relevantWhen: [WHEN_SOURCE_NOTION],
|
|
199
|
+
setupHint: "/lisa:setup:notion",
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
key: "notion.prdDatabaseId",
|
|
203
|
+
relevantWhen: [WHEN_SOURCE_NOTION],
|
|
204
|
+
setupHint: "/lisa:setup:notion",
|
|
205
|
+
},
|
|
206
|
+
];
|
|
207
|
+
//# sourceMappingURL=registry.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"registry.js","sourceRoot":"","sources":["../../src/sync/registry.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
],
|
|
50
50
|
"files": [
|
|
51
51
|
"dist",
|
|
52
|
+
"ui",
|
|
52
53
|
"all",
|
|
53
54
|
"typescript",
|
|
54
55
|
"npm-package",
|
|
@@ -94,7 +95,7 @@
|
|
|
94
95
|
"ws": ">=8.20.1"
|
|
95
96
|
},
|
|
96
97
|
"name": "@codyswann/lisa",
|
|
97
|
-
"version": "2.
|
|
98
|
+
"version": "2.200.0",
|
|
98
99
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
99
100
|
"main": "dist/index.js",
|
|
100
101
|
"exports": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-openclaw",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.200.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.200.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"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-openclaw",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.200.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.200.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.200.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"
|