How to write a plugin for _AugmentedIntelligence using the _IPlugin interface and the PLUGIN_REGISTER self-registration macro. This is the modern extension path — a plugin declares a manifest, an optional command schema, and the scopes it needs, and the host loads it with no hand-edits to SpeechCommands.cpp or RSIAgent.cpp. **Status.** The pure SDK core (`PluginCore.hpp`) […]
Plugins & Unified Bridges
Implementation of the plugins/bridges platform pack for _AugmentedIntelligence. Related: Plugin-SDK.md (Plugin-SDK.md) · GameModBridges.md (GameModBridges.md) · MinecraftIntegration.md (MinecraftIntegration.md) · SpaceEngineersRL.md (SpaceEngineersRL.md) · DearImGuiFeatures.md (DearImGuiFeatures.md) What shipped Piece Files Status Plugin host wiring PluginManager.*, BuiltinPlugins.cpp Init at boot; TryHandle early in SpeechCommands Expanded HostApi enqueue, bridge status/send, toast, catalog run, device, sandbox FS Wired in WireDefaultHostServices Builtin […]
Installing and Configuring Augmented Intelligence on Google Pixel 4
This guide walks through building, installing, and pairing the Augmented Intelligence mobile companion with your desktop _AugmentedIntelligence agent on a Google Pixel 4 or Pixel 4 XL. The Pixel 4 build (pixel4 flavor) is optimized for: The phone app does not run the full Windows desktop binary. It connects to your desktop agent over your […]
PHP graphs of _AugmentedIntelligence
What graphs can be built in PHP, what is implemented now, data sources, and how to extend. Related: ProgramStatePortal.md (ProgramStatePortal.md) · IisPhpIntegration.md (IisPhpIntegration.md) · MinecraftWebDashboard.md (MinecraftWebDashboard.md) · BrainstormIntegrations.md (BrainstormIntegrations.md) Design principle PHP is a read-only visualization layer. The C++ host exports JSON; PHP serves and charts it (Chart.js, canvas, optional vis-network later). [text]_AugmentedIntelligence portal export […]
Network IP / DNS Auto-Configuration
Optional discovery of local IP addresses and DNS names, with an opt-in apply path that can fill computer_hostname and refresh service host settings. Discover (always safe) [text]net autoconfig discovernetwork ipnet autoconfig statusnet autoconfig resolve jupiter.example.comnet autoconfig reverse 10.0.0.151 Discovery reports: Cached globals after refresh: [text]network_local_ipv4network_local_ipv6network_local_hostnamenetwork_local_fqdnnetwork_dns_suffix Enable auto-configuration Auto-config is off by default. Turn it on […]
NVIDIA NeMo bridge (Phase 0/1)
Façade for Guardrails / NIM / speech profiles. Mock rails work offline. Live HTTP hooks optional via AI_NEMO_URL. Profiles Profile Role mock Local heuristic rails (default) guardrails Prefer Guardrails service when URL healthy nim NIM OpenAI-compatible endpoints (client later) speech ASR/TTS mock (wire NIM later) train Framework job façade (later) agent NAT workflows (later) Commands […]
Robot Movement + Prototyping (Movement.cpp)
Unified robot locomotion with manual primitives, scripted prototypes, and RL / assist modes. Actuates through ROS `cmd_vel` when connected; otherwise (or with dry-run) uses an internal unicycle simulator. Modes Mode Behavior off Idle (manual set-twist still allowed when called explicitly) assist Blend heuristic + RL by movement_assist_blend prototype Play scripted movement sequences train Online Q-table […]
Minecraft plugin → PHP/HTML live dashboard
Graph the current Spigot plugin state (players, health, food, hostiles, bridge, worlds, goals, ML summary) in a browser. Architecture [text]Spigot plugin (JUPITER) WebDashboardService every web.refresh-ticks → plugins/AugmentedIntelligenceBridge/web/state.json → plugins/AugmentedIntelligenceBridge/web/history.json → optional HTTP :8787 /api/state /api/history PHP/HTML (minecraft_web_dashboard/) index.php → charts (Chart.js) api.php → reads state.json OR proxies remote HTTP Plugin setup config.yml (defaults already added): […]
Minecraft Plugin and DQN Training Guide
This guide explains how the _AugmentedIntelligence Minecraft Spigot plugin, bridge, Minecraft DQN, client controller, and MathNN neural policy fit together. Related documentation: [text]docs/MinecraftPluginOperations.md = quick operator reference, full command list, config switches, troubleshootingdocs/MinecraftIntegration.md = bridge vs. RCON integration overviewdocs/ReinforcementLearning.md = RL hub (MathNN, curriculum, executive plans)docs/MathNN.md = neural policy modes and rl net commandsminecraft_spigot_plugin/README.md = […]
Minecraft Plugin Operations Reference
This is the quick operator reference for the _AugmentedIntelligence Minecraft Spigot bridge. Use docs/MinecraftPluginTrainingGuide.md for the full training curriculum and docs/MinecraftIntegration.md for the broader RCON/bridge integration notes. Lab Topology Recommended current layout: [text]EARTH 10.0.0.151 = _AI host, Minecraft client, DQN, optional MathNNJUPITER 10.0.0.153 = Minecraft/Spigot server, AI bridge pluginNEPTUNE = optional always-on training or replay […]