Prentis: Shifting AI Focus from Coding to Task Automation

Jules45 Expert 1h ago Updated Jul 25, 2026 268 views 5 likes 3 min read

Reid Hoffman and Mark Pincus are currently in talks to raise $100M for Prentis, a new AI lab that is making a massive bet on "computer use" rather than just code generation. While the industry has been obsessed with AI writing Python scripts or React components, Prentis is positioning itself around the automation of routine computer tasks—essentially treating the entire OS as the interface.

The core thesis here is that the biggest value unlock for LLM agents isn't writing a function; it's the ability to navigate a browser, interact with legacy software, and execute multi-step workflows across different applications without a dedicated API. This is a shift toward "Action-Oriented AI" where the agent acts as a virtual operator.

The Technical Shift: From Code to Action

Most current AI workflows rely on a request-response cycle. For example, if you want to organize a trip, you ask an LLM for a list of flights, then you manually go to a site and book them. Prentis is targeting the "Last Mile" of automation. Instead of giving you the information, the agent executes the clicks.

To understand why this is a different beast than standard prompt engineering, consider the difference in the underlying architecture:

  • Code Generation: Predicts the next token in a syntax-heavy language based on a training set of repositories.
  • Task Automation (Agentic): Requires a loop of Perception (screenshot/DOM analysis) → Reasoning (what is the next button to click?) → Action (sending a mouse event) → Verification (did the page change as expected?).

Implementing a Basic Task Agent Workflow

If you are looking to build a similar "computer use" logic from scratch using current open-source tools, you can't just use a standard chat prompt. You need a loop that handles state. Here is a conceptual Python structure using a hypothetical agent framework that mimics the "perceive-act" cycle Prentis is likely refining:

import time
from agent_framework import VisionModel, OSController

def automate_routine_task(goal):
    agent = VisionModel(model="gpt-4o") # Or Claude 3.5 Sonnet for computer use
    os = OSController()
    
    done = False
    while not done:
        # 1. Perception: Capture the current state of the screen
        screenshot = os.capture_screen()
        
        # 2. Reasoning: Ask the LLM for the next specific coordinate/action
        # The prompt must strictly enforce a JSON output for the OS to parse
        action_json = agent.analyze(
            image=screenshot, 
            prompt=f"Goal: {goal}. What is the next click coordinate? Return {{'x': int, 'y': int, 'action': 'click'}}"
        )
        
        # 3. Execution: Perform the physical action on the OS
        os.execute(action_json['x'], action_json['y'], action_json['action'])
        
        # 4. Verification: Check if the goal is reached
        if agent.verify_goal_reached(screenshot, goal):
            done = True
        
        time.sleep(1) # Prevent CPU spiking during loop

# Example usage: "Open Excel, find the total in cell B20, and email it to [email protected]"
automate_routine_task("Extract B20 from Finance.xlsx and email to manager")

Why This Matters for AI Workflows

The $100M valuation target suggests that the "Agentic Era" is moving away from the chat box. We are seeing a convergence of three things:

  • High-resolution vision models that can actually "see" a UI.
  • Reduced latency in LLM inference, making real-time OS interaction viable.
  • Better tool-use capabilities (function calling) that allow models to trigger system-level events.

For those of us building AI workflows, the takeaway is clear: stop focusing solely on how to prompt a model to write a better email, and start looking at how to integrate LLMs into the actual execution layer of your OS. The real productivity gains aren't in the drafting of the work, but in the execution of the boring, repetitive clicks that currently eat up 40% of a knowledge worker's day.
ResourcesToolsTutorial

All Replies (2)

J
Jordan37 Intermediate 9h ago
I've been trying to automate my CRM entries with similar tools, but the UI changes always break the workflow. Hope they solve that.
0 Reply
N
NeonPanda Intermediate 9h ago
Wondering if they're focusing on API integrations or actually simulating mouse and keyboard inputs for this.
0 Reply

Write a Reply

Markdown supported