open-agents-ai 0.187.139 → 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 +12 -2
- 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
|
|
|
@@ -1013,6 +1013,8 @@ On startup and `/model` switch, Open Agents detects your RAM/VRAM and creates an
|
|
|
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
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
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* |
|
|
1016
1018
|
|
|
1017
1019
|
Read-only tools execute concurrently when called in the same turn. Mutating tools run sequentially.
|
|
1018
1020
|
|
|
@@ -1057,6 +1059,14 @@ The agent can access physical hardware — cameras, microphones, and speakers
|
|
|
1057
1059
|
| WiFi status | `wifi_control` action=status | Current SSID, IP, signal |
|
|
1058
1060
|
| Scan Bluetooth | `bluetooth_scan` action=scan | Classic + BLE devices |
|
|
1059
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 |
|
|
1060
1070
|
|
|
1061
1071
|
**Prerequisites**: `ffmpeg`, `arecord`, `aplay`, `amixer` (ALSA utils), `espeak-ng`, `bluez` (Bluetooth). Install: `sudo apt install ffmpeg alsa-utils espeak-ng bluez`
|
|
1062
1072
|
|