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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myconvergio",
3
- "version": "4.7.0",
3
+ "version": "4.7.1",
4
4
  "description": "Enterprise Agent Suite: 58 specialized AI agents for strategy, development, compliance, and operations",
5
5
  "author": {
6
6
  "name": "Convergio.io",
package/VERSION CHANGED
@@ -3,7 +3,7 @@
3
3
  # Follows Semantic Versioning 2.0.0 (https://semver.org/)
4
4
 
5
5
  # System Version
6
- SYSTEM_VERSION=4.7.0
6
+ SYSTEM_VERSION=4.7.1
7
7
 
8
8
  # Framework Documents
9
9
  # These are foundational documents that govern all agents
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myconvergio",
3
- "version": "4.7.0",
3
+ "version": "4.7.1",
4
4
  "description": "Enterprise Agent Suite: 60 specialized AI agents for strategy, development, compliance, and operations - Claude Code Plugin",
5
5
  "keywords": [
6
6
  "claude",
@@ -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
- local found=false
261
+ found=false
262
262
  for category in "$PROJECT_ROOT/.claude/agents"/*; do
263
263
  [ -d "$category" ] || continue
264
- local agent_file="$category/$agent_name.md"
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
- local tier_cats=$(get_categories_for_tier "$TIER")
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
- local hooks_count=$(find "$TARGET_DIR/hooks" -name "*.sh" -type f | wc -l | xargs)
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
- local agent_count=$(find "$TARGET_DIR/agents" -name "*.md" -type f | wc -l | xargs)
347
- local rules_count=$(find "$TARGET_DIR/rules" -name "*.md" -type f 2>/dev/null | wc -l | xargs)
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
- local context_size="unknown"
353
+ context_size="unknown"
354
354
  case "$TIER" in
355
355
  minimal)
356
356
  context_size="~50KB"