I think that would turn a computer into a tool...
Absolutely. This has been on our minds since Eve's conception, and both SmallTalk and HyperCard have been inspirations. To make this happen, you need to do two things: 1) give people a pool of data that is personally relevant, and 2) an intuitive way to query and manipulate it. Unix was one of the first great breakthroughs here. Piping and the shell allow users to compose small programs for complex purposes. 1) You can consume data from files and other programs, and 2) build a pipeline to work with it. Unix's real flaw was the data model. Since everything is reduced to strings, data is inherently unstructured, and handling complicated data is finicky and error prone. Bash scripts have earned some notoriety due to this -- most of those problems stem from the medium rather than the implementation. Microsoft saw this and tried to remedy it with PowerShell. Instead of strings, the interop is .NET objects, so everything is reasonably structured. What they've done is pretty impressive, but it hasn't seen wild adoption because it's clunky to use. To gain any benefit, schemas must be agreed upon in advance or verbosely specified by the user. In a sense, Eve is the logical conclusion of the unix paradigm. Small blocks do small tasks, and as a bonus the plumbing is handled for you. Rather than unstructured text or a variety of different data types, everything in between reduces down to human- and machine-readable records.
In terms of actually running at the OS level, I'd like to see that someday. As it is, the host OS is only really providing us with platform-specific IO and hardware drivers. We don't multithread yet, but we do have all the information required to intelligently schedule work, and our synchronous programming model insulates the user from many of concurrency's complexities. Unless there was some "Eve OS" specific feature your application wanted to take advantage of, there's no changes you should need to make for the compiler to build it to run on bare metal.
In the meantime, I think it'd be a lot of fun just to run Eve on an Arduino. It's a lot closer to the hardware there than on PC, and Eve loves data, so IoT hobby projects should be a great fit.