@codyswann/lisa 2.283.0 → 2.285.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/core/upstream-evidence-manifest.d.ts.map +1 -1
- package/dist/core/upstream-evidence-manifest.js +34 -2
- package/dist/core/upstream-evidence-manifest.js.map +1 -1
- 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/.codex-plugin/skills/lisa-task-decomposition/SKILL.md +26 -0
- package/plugins/lisa/rules/eager/dependency-trust-classes.md +43 -0
- package/plugins/lisa/rules/reference/dependency-trust-classes.md +243 -0
- package/plugins/lisa/skills/lisa-task-decomposition/SKILL.md +26 -0
- package/plugins/lisa-agy/plugin.json +1 -1
- package/plugins/lisa-agy/skills/lisa-task-decomposition/SKILL.md +26 -0
- 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-copilot/rules/eager/dependency-trust-classes.md +43 -0
- package/plugins/lisa-copilot/rules/reference/dependency-trust-classes.md +243 -0
- package/plugins/lisa-copilot/skills/lisa-task-decomposition/SKILL.md +26 -0
- package/plugins/lisa-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cursor/rules/dependency-trust-classes-reference.mdc +248 -0
- package/plugins/lisa-cursor/rules/dependency-trust-classes.mdc +48 -0
- package/plugins/lisa-cursor/skills/lisa-task-decomposition/SKILL.md +26 -0
- 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/plugins/src/base/rules/eager/dependency-trust-classes.md +43 -0
- package/plugins/src/base/rules/reference/dependency-trust-classes.md +243 -0
- package/plugins/src/base/skills/lisa-task-decomposition/SKILL.md +26 -0
- package/scripts/check-duplicate-versions.mjs +715 -0
- package/ui/index.html +195 -43
|
@@ -74,6 +74,31 @@ Each task must have a verification method. Choose the most appropriate:
|
|
|
74
74
|
- Prefer independent tasks that can run in parallel where possible
|
|
75
75
|
- Flag external dependencies (other teams, services, permissions, data) that may block progress
|
|
76
76
|
|
|
77
|
+
### 4.5. Classify Any New Material Dependency
|
|
78
|
+
|
|
79
|
+
Step 4 maps dependencies *between tasks*. This step covers third-party
|
|
80
|
+
dependencies a task proposes to **add**.
|
|
81
|
+
|
|
82
|
+
A dependency is **material** if its failure, disappearance, or bad update would
|
|
83
|
+
break something a user can see, or would cost real time to replace. If a work
|
|
84
|
+
unit proposes adding one, the work unit must, before it is buildable:
|
|
85
|
+
|
|
86
|
+
1. **Name its trust class** — exactly one of: mature ecosystem primitive,
|
|
87
|
+
fast-moving standard implementation, build/development tool, runtime-critical
|
|
88
|
+
service client, thin wrapper suitable for in-house ownership, or
|
|
89
|
+
temporary/experimental dependency. See the `dependency-trust-classes` rule
|
|
90
|
+
for what each class means and why it is trusted.
|
|
91
|
+
2. **State the class's required evidence** — the detection evidence that class
|
|
92
|
+
demands, and whether product/human ratification is required before the work
|
|
93
|
+
starts. Runtime-critical service clients and expiry extensions on temporary
|
|
94
|
+
dependencies always require ratification; a work unit that needs it and does
|
|
95
|
+
not say so is not ready.
|
|
96
|
+
3. **Include updating `.lisa/DEPENDENCY_DECISIONS.md`** in its acceptance
|
|
97
|
+
criteria, so the record entry lands in the same change as the dependency.
|
|
98
|
+
|
|
99
|
+
If nobody can pick a class, that is the finding — resolve it before accepting
|
|
100
|
+
the work unit, not after the package is installed.
|
|
101
|
+
|
|
77
102
|
### 5. Determine Execution Order
|
|
78
103
|
|
|
79
104
|
- Place foundational tasks first (types, schemas, interfaces, shared utilities)
|
|
@@ -121,6 +146,7 @@ Map each task to the skills needed to complete it. This enables delegation to sp
|
|
|
121
146
|
- Every task must have at least one acceptance criterion that can be empirically verified
|
|
122
147
|
- Do not create tasks that cannot be verified -- if you cannot define how to prove it is done, the task is not well-scoped
|
|
123
148
|
- Every Task / Bug / Sub-task / Improvement is scoped to exactly one repo -- if the work spans repos, split into per-repo work units under a shared parent Story (see step 1.5)
|
|
149
|
+
- Any task proposing a new material dependency names its trust class, states that class's required evidence and whether human ratification is needed, and updates `.lisa/DEPENDENCY_DECISIONS.md` in the same change (see step 4.5) -- a proposed material dependency with no named class is not ready to build
|
|
124
150
|
- Keep tasks ordered so that no task references work that has not been completed by a prior task
|
|
125
151
|
- Flag any task that requires access, permissions, or external input not yet available
|
|
126
152
|
- Prefer more small tasks over fewer large tasks -- smaller tasks are easier to verify and less risky to fail
|