qualia-framework 2.4.1 → 2.4.2
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/framework/install.ps1
CHANGED
|
@@ -87,10 +87,10 @@ $dirs = @(
|
|
|
87
87
|
"$ClaudeDir\hooks",
|
|
88
88
|
"$ClaudeDir\rules",
|
|
89
89
|
"$ClaudeDir\knowledge\retros",
|
|
90
|
-
"$ClaudeDir\qualia-
|
|
91
|
-
"$ClaudeDir\qualia-
|
|
92
|
-
"$ClaudeDir\qualia-
|
|
93
|
-
"$ClaudeDir\qualia-
|
|
90
|
+
"$ClaudeDir\qualia-framework\bin",
|
|
91
|
+
"$ClaudeDir\qualia-framework\references",
|
|
92
|
+
"$ClaudeDir\qualia-framework\templates",
|
|
93
|
+
"$ClaudeDir\qualia-framework\workflows",
|
|
94
94
|
"$ClaudeDir\projects",
|
|
95
95
|
"$ClaudeDir\session-env"
|
|
96
96
|
)
|
|
@@ -129,7 +129,7 @@ $hookCount = (Get-ChildItem "$ClaudeDir\hooks\*.sh" -ErrorAction SilentlyContinu
|
|
|
129
129
|
Write-Host " + $hookCount hooks" -ForegroundColor Green
|
|
130
130
|
|
|
131
131
|
# Qualia Engine
|
|
132
|
-
Copy-Item "$ScriptDir\qualia-
|
|
132
|
+
Copy-Item "$ScriptDir\qualia-framework\*" "$ClaudeDir\qualia-framework\" -Recurse -Force -ErrorAction SilentlyContinue
|
|
133
133
|
Write-Host " + Qualia engine" -ForegroundColor Green
|
|
134
134
|
|
|
135
135
|
# Rules
|
|
@@ -273,7 +273,7 @@ $criticalFiles = @(
|
|
|
273
273
|
"skills\qualia-start\SKILL.md",
|
|
274
274
|
"skills\browser-qa\SKILL.md",
|
|
275
275
|
"skills\ship\SKILL.md",
|
|
276
|
-
"qualia-
|
|
276
|
+
"qualia-framework\bin\qualia-tools.js",
|
|
277
277
|
"CLAUDE.md"
|
|
278
278
|
)
|
|
279
279
|
|
package/framework/install.sh
CHANGED
|
@@ -90,7 +90,7 @@ printf "\n"
|
|
|
90
90
|
# ─── Step 2: Create directory structure ───
|
|
91
91
|
printf "${Q_WARN}[2/6] Directory structure${Q_RESET}\n"
|
|
92
92
|
|
|
93
|
-
mkdir -p "$CLAUDE_DIR"/{skills,agents,hooks,rules,knowledge/retros,qualia-
|
|
93
|
+
mkdir -p "$CLAUDE_DIR"/{skills,agents,hooks,rules,knowledge/retros,qualia-framework/{bin,references,templates,workflows},projects,session-env}
|
|
94
94
|
|
|
95
95
|
printf "${Q_PASS} ✓ Ready${Q_RESET}\n"
|
|
96
96
|
|
|
@@ -123,7 +123,9 @@ HOOK_COUNT=$(find "$CLAUDE_DIR/hooks" -name "*.sh" -type f | wc -l)
|
|
|
123
123
|
printf "${Q_PASS} ✓ $HOOK_COUNT hooks${Q_RESET}\n"
|
|
124
124
|
|
|
125
125
|
# Qualia Engine
|
|
126
|
-
cp -r "$SCRIPT_DIR"/qualia-engine/* "$CLAUDE_DIR/qualia-
|
|
126
|
+
cp -r "$SCRIPT_DIR"/qualia-engine/* "$CLAUDE_DIR/qualia-framework/" 2>/dev/null || true
|
|
127
|
+
# Clean up old path if it exists from previous installs
|
|
128
|
+
[ -d "$CLAUDE_DIR/qualia-engine" ] && rm -rf "$CLAUDE_DIR/qualia-engine"
|
|
127
129
|
printf "${Q_PASS} ✓ Qualia engine${Q_RESET}\n"
|
|
128
130
|
|
|
129
131
|
# Rules
|
|
@@ -232,7 +234,7 @@ fi
|
|
|
232
234
|
printf "${Q_WARN}[5/6] Platform setup${Q_RESET}\n"
|
|
233
235
|
|
|
234
236
|
# Make qualia-tools executable
|
|
235
|
-
[ -f "$CLAUDE_DIR/qualia-
|
|
237
|
+
[ -f "$CLAUDE_DIR/qualia-framework/bin/qualia-tools.js" ] && chmod +x "$CLAUDE_DIR/qualia-framework/bin/qualia-tools.js"
|
|
236
238
|
|
|
237
239
|
# Askpass helper (works with zenity, kdialog, or falls back to terminal)
|
|
238
240
|
if [ ! -f "$CLAUDE_DIR/askpass.sh" ]; then
|
|
@@ -273,7 +275,7 @@ for check in \
|
|
|
273
275
|
"skills/qualia-start/SKILL.md" \
|
|
274
276
|
"skills/browser-qa/SKILL.md" \
|
|
275
277
|
"skills/ship/SKILL.md" \
|
|
276
|
-
"qualia-
|
|
278
|
+
"qualia-framework/bin/qualia-tools.js" \
|
|
277
279
|
"CLAUDE.md"; do
|
|
278
280
|
if [ ! -f "$CLAUDE_DIR/$check" ]; then
|
|
279
281
|
printf "${Q_FAIL} ✗ Missing: $check${Q_RESET}\n"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
2.4.
|
|
1
|
+
2.4.2
|