myconvergio 4.7.0 → 4.7.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/.claude-plugin/plugin.json +1 -1
- package/VERSION +1 -1
- package/package.json +1 -1
- package/scripts/selective-install.sh +7 -7
package/VERSION
CHANGED
package/package.json
CHANGED
|
@@ -258,10 +258,10 @@ if [ -n "$AGENTS" ]; then
|
|
|
258
258
|
agent_name=$(echo "$agent_name" | xargs) # trim whitespace
|
|
259
259
|
|
|
260
260
|
# Find agent file across all categories
|
|
261
|
-
|
|
261
|
+
found=false
|
|
262
262
|
for category in "$PROJECT_ROOT/.claude/agents"/*; do
|
|
263
263
|
[ -d "$category" ] || continue
|
|
264
|
-
|
|
264
|
+
agent_file="$category/$agent_name.md"
|
|
265
265
|
if [ -f "$agent_file" ]; then
|
|
266
266
|
install_agent "$agent_file" "$(basename "$category")"
|
|
267
267
|
found=true
|
|
@@ -284,7 +284,7 @@ else
|
|
|
284
284
|
# Install tier
|
|
285
285
|
info "Installing tier: $TIER"
|
|
286
286
|
|
|
287
|
-
|
|
287
|
+
tier_cats=$(get_categories_for_tier "$TIER")
|
|
288
288
|
for category in $tier_cats; do
|
|
289
289
|
install_category "$category"
|
|
290
290
|
done
|
|
@@ -300,7 +300,7 @@ if [ -d "$PROJECT_ROOT/hooks" ]; then
|
|
|
300
300
|
cp "$PROJECT_ROOT"/hooks/*.sh "$TARGET_DIR/hooks/" 2>/dev/null || true
|
|
301
301
|
cp "$PROJECT_ROOT"/hooks/lib/*.sh "$TARGET_DIR/hooks/lib/" 2>/dev/null || true
|
|
302
302
|
chmod +x "$TARGET_DIR"/hooks/*.sh "$TARGET_DIR"/hooks/lib/*.sh 2>/dev/null || true
|
|
303
|
-
|
|
303
|
+
hooks_count=$(find "$TARGET_DIR/hooks" -name "*.sh" -type f | wc -l | xargs)
|
|
304
304
|
success "Installed $hooks_count hooks"
|
|
305
305
|
fi
|
|
306
306
|
|
|
@@ -343,14 +343,14 @@ info "Rules installed to: $TARGET_DIR/rules/"
|
|
|
343
343
|
# Show summary
|
|
344
344
|
echo ""
|
|
345
345
|
info "Installation Summary:"
|
|
346
|
-
|
|
347
|
-
|
|
346
|
+
agent_count=$(find "$TARGET_DIR/agents" -name "*.md" -type f | wc -l | xargs)
|
|
347
|
+
rules_count=$(find "$TARGET_DIR/rules" -name "*.md" -type f 2>/dev/null | wc -l | xargs)
|
|
348
348
|
echo " Agents: $agent_count"
|
|
349
349
|
echo " Rules: $rules_count"
|
|
350
350
|
echo " Variant: $VARIANT"
|
|
351
351
|
|
|
352
352
|
# Estimate context size
|
|
353
|
-
|
|
353
|
+
context_size="unknown"
|
|
354
354
|
case "$TIER" in
|
|
355
355
|
minimal)
|
|
356
356
|
context_size="~50KB"
|