open-agents-ai 0.187.138 → 0.187.140
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.
- package/README.md +22 -4
- package/dist/index.js +1705 -1227
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ An autonomous multi-turn tool-calling agent that reads your code, makes changes,
|
|
|
40
40
|
- [Model-Tier Awareness](#model-tier-awareness)
|
|
41
41
|
- [Live Code Knowledge Graph](#live-code-knowledge-graph)
|
|
42
42
|
- [Auto-Expanding Context Window](#auto-expanding-context-window)
|
|
43
|
-
- [Tools (
|
|
43
|
+
- [Tools (68+)](#tools-68)
|
|
44
44
|
- [Ralph Loop — Iteration-First Design](#ralph-loop--iteration-first-design)
|
|
45
45
|
- [Task Control](#task-control)
|
|
46
46
|
- [COHERE Cognitive Framework](#cohere-cognitive-framework)
|
|
@@ -923,7 +923,7 @@ On startup and `/model` switch, Open Agents detects your RAM/VRAM and creates an
|
|
|
923
923
|
|
|
924
924
|
|
|
925
925
|
|
|
926
|
-
## Tools (
|
|
926
|
+
## Tools (68)
|
|
927
927
|
|
|
928
928
|
<div align="right"><a href="#top">back to top</a></div>
|
|
929
929
|
|
|
@@ -1011,6 +1011,10 @@ On startup and `/model` switch, Open Agents detects your RAM/VRAM and creates an
|
|
|
1011
1011
|
| `camera_capture` | Access system cameras — list devices, capture JPEG frames, query capabilities. Uses ffmpeg + v4l2. Supports USB, CSI, and 360 cameras (QooCam, RealSense). Captured images can be piped to vision tools |
|
|
1012
1012
|
| `audio_capture` | Record from microphone — list input devices, record WAV/MP3 (configurable duration/rate/channels), check real-time mic level (RMS dBFS). Uses arecord + ffmpeg backends |
|
|
1013
1013
|
| `audio_playback` | Speaker control and TTS — play audio files (WAV/MP3/OGG), text-to-speech via espeak-ng (multi-language), get/set system volume. Uses aplay/ffplay/amixer backends |
|
|
1014
|
+
| `wifi_control` | WiFi network scanning and management — scan nearby networks (SSID, signal, channel, security), list WiFi adapters (built-in + USB dongles), connect/disconnect, check connection status, toggle monitor mode. Auto-detects AC600/RTL8811AU and other USB adapters |
|
|
1015
|
+
| `bluetooth_scan` | Bluetooth device discovery — scan for Classic and BLE devices, list HCI adapters, get device info. Uses hcitool/bluetoothctl backends |
|
|
1016
|
+
| `sdr_scan` | Software-defined radio scanning — frequency sweeps, ADS-B aircraft tracking (1090 MHz), FM radio capture. Auto-installs rtl-sdr tools when RTL-SDR hardware detected. Uses rtl_power/rtl_fm/dump1090 |
|
|
1017
|
+
| `flipper_zero` | Flipper Zero multi-tool control — Sub-GHz scanning (315/433/868/915 MHz), NFC tag reading, 125kHz RFID reading, IR capture, GPIO pin reading, storage browsing. Serial CLI via /dev/ttyACM* |
|
|
1014
1018
|
|
|
1015
1019
|
Read-only tools execute concurrently when called in the same turn. Mutating tools run sequentially.
|
|
1016
1020
|
|
|
@@ -1049,8 +1053,22 @@ The agent can access physical hardware — cameras, microphones, and speakers
|
|
|
1049
1053
|
| Play a sound file | `audio_playback` action=play file=alert.wav | Play WAV/MP3/OGG |
|
|
1050
1054
|
| Check volume | `audio_playback` action=volume | Get current volume % |
|
|
1051
1055
|
| Set volume | `audio_playback` action=volume volume=50 | Set to 50% |
|
|
1052
|
-
|
|
1053
|
-
|
|
1056
|
+
| Scan WiFi networks | `wifi_control` action=scan | All SSIDs, signals, channels |
|
|
1057
|
+
| List WiFi adapters | `wifi_control` action=interfaces | Built-in + USB dongles |
|
|
1058
|
+
| Connect to WiFi | `wifi_control` action=connect ssid="MyNet" password="pass" | Join network |
|
|
1059
|
+
| WiFi status | `wifi_control` action=status | Current SSID, IP, signal |
|
|
1060
|
+
| Scan Bluetooth | `bluetooth_scan` action=scan | Classic + BLE devices |
|
|
1061
|
+
| List BT adapters | `bluetooth_scan` action=interfaces | HCI adapters |
|
|
1062
|
+
| SDR device check | `sdr_scan` action=info | RTL-SDR hardware status |
|
|
1063
|
+
| RF frequency sweep | `sdr_scan` action=scan start_freq="433M" end_freq="434M" | Signal power levels |
|
|
1064
|
+
| Aircraft tracking | `sdr_scan` action=adsb duration=30 | ADS-B transponder messages |
|
|
1065
|
+
| FM radio capture | `sdr_scan` action=fm frequency="98.1M" | Record FM audio |
|
|
1066
|
+
| Detect Flipper Zero | `flipper_zero` action=detect | Connected Flippers |
|
|
1067
|
+
| Sub-GHz scan | `flipper_zero` action=subghz_scan frequency=433920000 | RF signals |
|
|
1068
|
+
| Read NFC tag | `flipper_zero` action=nfc_read | Tag UID, type |
|
|
1069
|
+
| Read RFID tag | `flipper_zero` action=rfid_read | 125kHz tag ID |
|
|
1070
|
+
|
|
1071
|
+
**Prerequisites**: `ffmpeg`, `arecord`, `aplay`, `amixer` (ALSA utils), `espeak-ng`, `bluez` (Bluetooth). Install: `sudo apt install ffmpeg alsa-utils espeak-ng bluez`
|
|
1054
1072
|
|
|
1055
1073
|
**Camera support**: USB cameras (UVC), Intel RealSense (via UVC), 360 cameras (QooCam, Ricoh Theta — raw fisheye via v4l2loopback + ffmpeg crop). The captured frame is returned as base64 JPEG that can be fed directly to the `vision` tool for analysis.
|
|
1056
1074
|
|