pumuki-ast-hooks 5.5.16 → 5.5.17

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,5 +1,25 @@
1
1
  #!/bin/bash
2
- # Script Wrapper
3
- # Redirects to the centralized implementation in scripts/hooks-system
2
+ # AST Session Loader
3
+ # Runs on IDE startup to initialize AST hooks and check tokens
4
4
  REPO_ROOT=$(git rev-parse --show-toplevel 2>/dev/null || echo ".")
5
- bash "$REPO_ROOT/scripts/hooks-system/bin/session-loader.sh" "$@"
5
+
6
+ # Run token tracker to warn about approaching limits
7
+ TOKEN_TRACKER="$REPO_ROOT/scripts/hooks-system/infrastructure/watchdog/token-tracker.sh"
8
+ if [ -f "$TOKEN_TRACKER" ]; then
9
+ bash "$TOKEN_TRACKER"
10
+ fi
11
+
12
+ # Display AST hooks status
13
+ echo "🚀 AST Intelligence Hooks v5.5.16"
14
+ echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
15
+ echo ""
16
+ echo "✅ AST Hooks loaded successfully"
17
+ echo "📁 Repository: $REPO_ROOT"
18
+ echo "🤖 AI Gate: Active"
19
+ echo "🔍 Evidence Monitoring: Active"
20
+ echo ""
21
+ echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
22
+ echo ""
23
+ echo "💡 Tip: Run 'ai-start' to initialize AI context for your current branch"
24
+ echo "💡 Tip: Run 'bash scripts/hooks-system/infrastructure/shell/orchestrators/audit-orchestrator.sh' for full audit"
25
+ echo ""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pumuki-ast-hooks",
3
- "version": "5.5.16",
3
+ "version": "5.5.17",
4
4
  "description": "Enterprise-grade AST Intelligence System with multi-platform support (iOS, Android, Backend, Frontend) and Feature-First + DDD + Clean Architecture enforcement. Includes dynamic violations API for intelligent querying.",
5
5
  "main": "index.js",
6
6
  "bin": {