You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,8 @@ Most agent CLIs are powerful because they can touch your machine directly: shell
14
14
15
15
HyperAgent takes a different route. The model acts by writing JavaScript handlers, and those handlers run inside a hardware-isolated Hyperlight micro-VM. By default there is no shell, no filesystem, no network, and no process access. When the task needs host capabilities, they are added deliberately through plugins, profiles, or MCP servers.
16
16
17
+
Because handlers can fetch, parse, filter, aggregate, and validate data before returning, the model does not have to read every raw API response, file, or plugin result itself. Well-written handlers can reduce large tool outputs into compact, relevant results, keeping more of the conversation focused on decisions instead of data plumbing and often dramatically reducing token consumption during research, repair, and analysis loops.
18
+
17
19
What that gets you:
18
20
19
21
| Instead of | HyperAgent gives you |
@@ -51,7 +53,7 @@ These are the kinds of jobs HyperAgent is designed to handle.
--prompt "Create a visually rich Artemis II mission briefing deck. Use NASA public imagery where available, include mission objectives, crew, Orion/SLS architecture, lunar flyby timeline, key risks, and why the mission matters. Make it dramatic but factual, with strong full-bleed image slides and clean diagrams. Save it as artemis-ii-briefing.pptx."
56
+
--prompt "Create a presentation on the NASA Artemis II mission include lots of statistics and data, use an appropriate theme and color scheme for the subject, your aim is to inspire the audience to find out more and get involved, make sure you go to the Internet to get the very latest mission information from https://www.nasa.gov/mission/artemis-ii and images/multimedia from https://www.nasa.gov/artemis-ii-multimedia/, ensure you include photos taken by the crew during the mission, make it stunning"
55
57
```
56
58
57
59
The agent can use `ha:pptx`, `ha:pptx-charts`, and `ha:pptx-tables` to create editable PowerPoint files instead of screenshots glued into slides.
consterror="String mode requires oldString and newString.";
1804
+
console.error(` ${C.err("❌ "+error)}`);
1805
+
return{success: false, error };
1806
+
}
1807
+
1808
+
// Check exact-once match
1809
+
constfirstIdx=currentSource.indexOf(oldString);
1810
+
if(firstIdx===-1){
1811
+
consterror=
1812
+
"oldString not found in handler. Use get_handler_source to see current code, then copy the EXACT text to replace, or use startLine/replacement line mode.";
1813
+
console.error(` ${C.err("❌ "+error)}`);
1814
+
return{success: false, error };
1815
+
}
1816
+
constsecondIdx=currentSource.indexOf(
1817
+
oldString,
1818
+
firstIdx+oldString.length,
1819
+
);
1820
+
if(secondIdx!==-1){
1821
+
consterror=
1822
+
"oldString matches multiple times. Add more surrounding context to make it unique, or use startLine/replacement line mode.";
0 commit comments