@codyswann/lisa 2.286.0 → 2.286.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/all/create-only/.lisa/DEPENDENCY_DECISIONS.md +67 -0
- package/dist/core/upstream-evidence-manifest.d.ts.map +1 -1
- package/dist/core/upstream-evidence-manifest.js +10 -0
- package/dist/core/upstream-evidence-manifest.js.map +1 -1
- 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-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
|
@@ -45,6 +45,73 @@ script without rewriting the rest of the file:
|
|
|
45
45
|
- `_Not yet decided_` is the reserved marker for an unanswered field, so
|
|
46
46
|
unfilled entries are visibly honest rather than silently empty.
|
|
47
47
|
|
|
48
|
+
## The rest of the dependency-ownership layer
|
|
49
|
+
|
|
50
|
+
This file is one of five parts, and it is the only one that lives in your
|
|
51
|
+
project's own source. Three of the other four are still readable from here,
|
|
52
|
+
because they ship inside the installed Lisa package — paths starting
|
|
53
|
+
`node_modules/` below. The remaining two exist only in the Lisa project itself
|
|
54
|
+
and are called out as such; do not go looking for them in this repository.
|
|
55
|
+
|
|
56
|
+
**Installed in this project** (readable from your project root):
|
|
57
|
+
|
|
58
|
+
- **The six trust classes** — how much scrutiny a dependency deserves, set by
|
|
59
|
+
what it can reach rather than by how famous it is. The six are: mature
|
|
60
|
+
ecosystem primitive, fast-moving standard implementation, build/development
|
|
61
|
+
tool, runtime-critical service client, thin wrapper suitable for in-house
|
|
62
|
+
ownership, and temporary/experimental dependency. Sign-off rules differ by
|
|
63
|
+
class and by moment: a **runtime-critical service client** needs a human
|
|
64
|
+
sign-off to be added and at every major upgrade; a **temporary/experimental
|
|
65
|
+
dependency** needs none to be added — moving fast is the point — but must
|
|
66
|
+
carry a written expiry date no more than one quarter out and a named exit, and
|
|
67
|
+
then needs sign-off to extend past that date or to promote it. The full
|
|
68
|
+
definitions, with the evidence each class demands, are at
|
|
69
|
+
`node_modules/@codyswann/lisa/plugins/lisa/rules/reference/dependency-trust-classes.md`.
|
|
70
|
+
Your coding agent already has these loaded, so "which trust class is this, and
|
|
71
|
+
what evidence does that class require?" is a question you can just ask it.
|
|
72
|
+
|
|
73
|
+
- **The confidence-rebuild kit** — the seven things a change must prove when a
|
|
74
|
+
dependency is removed and the capability rebuilt in-house: real corpus,
|
|
75
|
+
conformance fixtures, negative fixtures, coverage as a gap detector,
|
|
76
|
+
provenance and license review, migration and update plan, and rollback or
|
|
77
|
+
replacement criteria. All seven are required; a partial kit is the finding. It
|
|
78
|
+
does **not** apply to an ordinary version bump. Full text at
|
|
79
|
+
`node_modules/@codyswann/lisa/plugins/lisa/rules/reference/dependency-internalization-kit.md`.
|
|
80
|
+
|
|
81
|
+
- **The manifest-authoritative duplicate-pin policy** — a version belongs in
|
|
82
|
+
`package.json` and nowhere else; every copy of the literal in a workflow or a
|
|
83
|
+
script is a second edit site a routine bump can miss. Lisa ships a detector
|
|
84
|
+
you can run against this project:
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
node node_modules/@codyswann/lisa/scripts/check-duplicate-versions.mjs --root . --scan .
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Be honest about what it is today: **advisory**. It is not wired into this
|
|
91
|
+
project's `package.json` scripts and it does not fail a build, so nothing runs
|
|
92
|
+
it unless you do. It also deliberately under-reports rather than over-reports,
|
|
93
|
+
so a clean run is not proof that no pin was duplicated.
|
|
94
|
+
|
|
95
|
+
**Not shipped here — they exist only in the Lisa project.** Neither path below
|
|
96
|
+
resolves from this repository; you would have to open Lisa's own repository to
|
|
97
|
+
read them, and you do not need either one to use this file.
|
|
98
|
+
|
|
99
|
+
- **A worked, filled-in example** — Lisa keeps this same file for its own
|
|
100
|
+
dependencies, written from repository evidence only, with every unanswered
|
|
101
|
+
field tracked as a ticket rather than guessed. In the Lisa project it is at
|
|
102
|
+
`.lisa/DEPENDENCY_DECISIONS.md`.
|
|
103
|
+
|
|
104
|
+
- **The full operator walkthrough** — a plain-language guide to deciding whether
|
|
105
|
+
a proposed dependency change is acceptable, with a checklist for each of the
|
|
106
|
+
three shapes (adding a dependency, taking one in-house, an ordinary version
|
|
107
|
+
bump). In the Lisa project it is at
|
|
108
|
+
`wiki/playbooks/dependency-ownership-operator-guide.md`.
|
|
109
|
+
|
|
110
|
+
Nothing above is enforced by a build gate. Nothing blocks a change that skips
|
|
111
|
+
this file, names no trust class, or removes a dependency with no rebuild
|
|
112
|
+
evidence. That is deliberate — these are review disciplines, not lint rules —
|
|
113
|
+
and it is exactly why the escalations below matter.
|
|
114
|
+
|
|
48
115
|
## When to escalate
|
|
49
116
|
|
|
50
117
|
Reading an entry should end in a decision. Raise these to an owner rather than
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"upstream-evidence-manifest.d.ts","sourceRoot":"","sources":["../../src/core/upstream-evidence-manifest.ts"],"names":[],"mappings":"AACA,iFAAiF;AACjF,eAAO,MAAM,0BAA0B,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAshEpE,CAAC;AAEL,4EAA4E;AAC5E,eAAO,MAAM,yBAAyB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"upstream-evidence-manifest.d.ts","sourceRoot":"","sources":["../../src/core/upstream-evidence-manifest.ts"],"names":[],"mappings":"AACA,iFAAiF;AACjF,eAAO,MAAM,0BAA0B,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAshEpE,CAAC;AAEL,4EAA4E;AAC5E,eAAO,MAAM,yBAAyB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CAotMjE,CAAC;AAEL,sFAAsF;AACtF,eAAO,MAAM,uBAAuB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CAk6I/D,CAAC"}
|
|
@@ -6559,6 +6559,12 @@ export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
|
6559
6559
|
"tests/fixtures/automation-status/partial-support-codex.json": true,
|
|
6560
6560
|
"tests/fixtures/dependency-internalization-kit/dependency-internalization-ticket.md": true,
|
|
6561
6561
|
"tests/fixtures/dependency-internalization-kit/version-bump-ticket.md": true,
|
|
6562
|
+
"tests/fixtures/dependency-ownership/addition/.github/workflows/deploy.yml": true,
|
|
6563
|
+
"tests/fixtures/dependency-ownership/addition/package.json": true,
|
|
6564
|
+
"tests/fixtures/dependency-ownership/addition/scripts/install-payment-client.sh": true,
|
|
6565
|
+
"tests/fixtures/dependency-ownership/internalization/.github/workflows/deploy.yml": true,
|
|
6566
|
+
"tests/fixtures/dependency-ownership/internalization/package.json": true,
|
|
6567
|
+
"tests/fixtures/dependency-ownership/internalization/scripts/verify-slugs.sh": true,
|
|
6562
6568
|
"tests/fixtures/dependency-trust-classes/dependency-addition-ticket.md": true,
|
|
6563
6569
|
"tests/fixtures/doctor/not-ready-missing-config.json": true,
|
|
6564
6570
|
"tests/fixtures/doctor/readiness/all-pass-assessed.json": true,
|
|
@@ -6924,6 +6930,9 @@ export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
|
6924
6930
|
"tests/unit/strategies/debrief-reroute-contract.test.ts": true,
|
|
6925
6931
|
"tests/unit/strategies/dependency-decision-records-rule-pair.test.ts": true,
|
|
6926
6932
|
"tests/unit/strategies/dependency-internalization-kit-rule-pair.test.ts": true,
|
|
6933
|
+
"tests/unit/strategies/dependency-ownership-helpers.ts": true,
|
|
6934
|
+
"tests/unit/strategies/dependency-ownership-integration.test.ts": true,
|
|
6935
|
+
"tests/unit/strategies/dependency-ownership-parity.test.ts": true,
|
|
6927
6936
|
"tests/unit/strategies/dependency-trust-classes-rule-pair.test.ts": true,
|
|
6928
6937
|
"tests/unit/strategies/distributed-content-round2-contract.test.ts": true,
|
|
6929
6938
|
"tests/unit/strategies/doctor-automation-readiness.test.ts": true,
|
|
@@ -7186,6 +7195,7 @@ export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
|
7186
7195
|
"wiki/open-questions/lisa-open-questions.md": true,
|
|
7187
7196
|
"wiki/playbooks/.gitkeep": true,
|
|
7188
7197
|
"wiki/playbooks/coding-agent-parity-research.md": true,
|
|
7198
|
+
"wiki/playbooks/dependency-ownership-operator-guide.md": true,
|
|
7189
7199
|
"wiki/playbooks/lisa-workflow-playbook.md": true,
|
|
7190
7200
|
"wiki/projects/lisa-monorepo.md": true,
|
|
7191
7201
|
"wiki/projects/registry.md": true,
|