
- Add: GitHub API integration for live version checking in taskserv management - Add: HTTP client configuration option (http.use_curl) in config.defaults.toml - Add: Helper function fetch_latest_version with curl/http get support - Fix: Settings path structure for prov_data_dirpath access pattern - Remove: Legacy simulation code for version checking - Update: Core configuration name from "provisioning-system" to "provisioning" - Clean: Remove obsolete example configs and infrastructure files
63 lines
1.7 KiB
Plaintext
Executable File
63 lines
1.7 KiB
Plaintext
Executable File
#!/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
|
|
}
|
|
}
|
|
} |