deepflow 0.1.76 → 0.1.77
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/bin/install.js +2 -2
- package/package.json +1 -1
package/bin/install.js
CHANGED
|
@@ -187,7 +187,7 @@ async function main() {
|
|
|
187
187
|
console.log(' skills/ — gap-discovery, atomic-commits, code-completeness, context-hub');
|
|
188
188
|
console.log(' agents/ — reasoner (/df:auto — autonomous execution via /loop)');
|
|
189
189
|
if (level === 'global') {
|
|
190
|
-
console.log(' hooks/ — statusline, update checker');
|
|
190
|
+
console.log(' hooks/ — statusline, update checker, invariant checker');
|
|
191
191
|
}
|
|
192
192
|
console.log(' hooks/df-spec-* — spec validation (auto-enforced by /df:spec and /df:plan)');
|
|
193
193
|
console.log(' env/ — ENABLE_LSP_TOOL (code navigation via goToDefinition, findReferences, workspaceSymbol)');
|
|
@@ -474,7 +474,7 @@ async function uninstall() {
|
|
|
474
474
|
];
|
|
475
475
|
|
|
476
476
|
if (level === 'global') {
|
|
477
|
-
toRemove.push('hooks/df-statusline.js', 'hooks/df-check-update.js', 'hooks/df-consolidation-check.js');
|
|
477
|
+
toRemove.push('hooks/df-statusline.js', 'hooks/df-check-update.js', 'hooks/df-consolidation-check.js', 'hooks/df-invariant-check.js');
|
|
478
478
|
}
|
|
479
479
|
|
|
480
480
|
for (const item of toRemove) {
|