provisioning/core/nulib/lib_provisioning/cache/agent.nu

63 lines
1.7 KiB
Plaintext
Raw Permalink Normal View History

#!/usr/bin/env nu
# Dynamic Version Cache Agent
# Token-optimized agent for progressive version caching with infra-aware hierarchy
# Usage: nu agent.nu <command> [args]
use cache_manager.nu *
use version_loader.nu *
use grace_checker.nu *
use batch_updater.nu *
# Main agent entry point
def main [
command: string # Command: init, get, update-all, clear, status
...args # Additional arguments
] {
match $command {
"init" => {
print "πŸš€ Initializing dynamic version cache system..."
init-cache-system
print "βœ… Cache system initialized"
}
"get" => {
if ($args | length) == 0 {
print "❌ Usage: agent.nu get <component-name>"
exit 1
}
let component = ($args | get 0)
print $"πŸ” Getting version for ($component)..."
let version = (get-cached-version $component)
print $"πŸ“¦ ($component): ($version)"
}
"update-all" => {
print "πŸ”„ Updating all cached versions..."
batch-update-cache
print "βœ… Cache updated"
}
"clear" => {
print "πŸ—‘οΈ Clearing version cache..."
clear-cache-system
print "βœ… Cache cleared"
}
"status" => {
print "πŸ“Š Version cache status:"
show-cache-status
}
"sync" => {
print "πŸ”„ Syncing cache from sources..."
sync-cache-from-sources
print "βœ… Cache synced"
}
_ => {
print $"❌ Unknown command: ($command)"
print "Available commands: init, get, update-all, clear, status, sync"
exit 1
}
}
}