frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Show HN: SDK for AI Coding with Long Running Tasks

https://cloudcoding.ai/
2•sean_•1y ago
It seems that using Cursor has become really repetitive. My workflow typically goes like this: - Get a task to accomplish on a codebase - Research the web and codebase to create a plan - Send the entire plan to cursor and sit back for it to finish

This flow works really well with a high level of accuracy for the most part and it's becoming obvious that the margin between where it is today and "perfect" is quickly closing.

Because of this flow, I feel that I can replicate it through an SDK that uses a AI cli coder tool with low level control.

In this SDK, you can also use the best coder in the world per: https://aider.chat/docs/leaderboards/

As shown here:

```python from cloudcode import Local import os

def main(): # Use the current directory cwd = os.getcwd() example_file = "example.py"

    # Initialize the Aider SDK in architect mode
    agent = Local(
        working_dir=cwd,
        model="o3",  # Main (planner) model
        editor_model="gpt-4.1",  # Editor model for implementing changes
        architect_mode=True,
        use_git=False,
        api_key=os.getenv("CLOUDCODE_API_KEY")
    )

    # Create or overwrite a simple Python file to modify using the SDK
    agent.create_file(
        example_file,
        """def add(a, b):
    return a + b
""" )

    # Run a coding task using the two-model workflow
    result = agent.code(
        prompt="make this function super cool. just make the math functions better",
        editable_files=[example_file]
    )

    # Print the results
    print("\nTask completed!")
    print(f"Success: {result['success']}")
    print("\nChanges made:")
    print(result["diff"])


    # Display cost information
    print("\nTask completed!")
if __name__ == "__main__": main()

```

Given that you can mimic your workflows from cursor and claude code into this sdk, you shouldn't have to sit around on your computer waiting for the long running task to finish.

That's why I built in a Sandbox class that mounts the ai coder into a remote sandbox directory instead of a local folder so you can deploy an ai coder to the cloud, enabling use cases such as coding from your phone and the browser.

I have already found so many low-handing fruit use cases for this sdk to automate prompting, information gathering, and auto-docs as shown in our github https://github.com/LMSystems-ai/cloud-coding

But I want to take it a step further.

You can get started for free today with this sdk and see our favorable pricing model here: https://docs.cloudcoding.ai/pricing

Their Phones Were Stolen in London. Then the Threats Started

https://www.nytimes.com/2026/05/23/world/europe/phone-theft-threats-london.html
1•0in•4m ago•0 comments

Easier bets to get early customer validation and VC attention

1•Notional_ID•5m ago•0 comments

Pre-ASI Society

https://lifearchitect.ai/wiki/
1•adt•8m ago•0 comments

Export chats from 11 AI platforms to PDF or Markdown locally

https://chromewebstore.google.com/detail/ai-chat-exporter-sharer-p/eamemmejpblbiapnigdimieiblldhgoi
1•Rocke1001feller•9m ago•2 comments

'Fuck you, Bambu': How one private message could change the face of 3D printing

https://www.theverge.com/tech/931532/bambu-agpl-pawel-jarczak-open-source-threat-dmca-github
2•tambourine_man•10m ago•0 comments

When Was the First Islamic Voyage to the Americas?

https://lostfutures.substack.com/p/when-was-the-first-islamic-voyage
2•Lost-Futures•11m ago•0 comments

Family wanted to start over. They're building opt-in village for anyone to apply [video]

https://www.youtube.com/watch?v=5hiLNnzbj8o
1•surprisetalk•13m ago•0 comments

Human Bottlenecks

https://borretti.me/article/human-bottlenecks
2•zdw•14m ago•0 comments

Who Builds a House Without Drawing Blueprints? (2015)

https://cacm.acm.org/opinion/who-builds-a-house-without-drawing-blueprints/
1•zdw•15m ago•0 comments

Why Is Vivado 2026.1 Dropping Linux Support for Free Tier?

https://adaptivesupport.amd.com/s/question/0D5Pd00001YQLdMKAX/why-is-vivado-20261-dropping-linux-...
2•zdw•18m ago•0 comments

The C64 Dead Test Font

https://www.masswerk.at/nowgobang/2026/c64-dead-test-font
3•masswerk•36m ago•0 comments

The Random Camera Shop Discovery That Inspired Star Wars' Lightsaber Design

https://www.bgr.com/2143613/star-wars-lightsaber-design-inspiration-camera-shop-discovery/
1•gnabgib•37m ago•0 comments

All the Star Wars Lightsaber Designs

https://kottke.org/26/05/all-the-star-wars-lightsaber-designs
1•vinhnx•45m ago•1 comments

How a fake investigation into India, Myanmar rebels went around the world

https://www.altnews.in/the-conspiracy-that-wasnt-how-a-fake-investigation-into-india-myanmar-rebe...
1•thunderbong•46m ago•0 comments

AI as a Design Medium

https://www.harvarddesignmagazine.org/articles/ai-as-a-design-medium-rodenbeck/
1•vinhnx•46m ago•0 comments

Scam calls hunt the lonely, not the gullible

https://pilgrimsage.substack.com/p/the-faceless-voice
2•momentmaker•48m ago•0 comments

Base Fatality List

https://bfl.baseaddict.com/
4•OsrsNeedsf2P•1h ago•0 comments

Investigating Trump's Stock Trades and Public Announcement Timings [video]

https://www.youtube.com/shorts/LEIn9wHJTbw
1•Cider9986•1h ago•0 comments

Syllaby

https://syllaby.io/
1•Austinrmstrong•1h ago•0 comments

New Project Announcement: Radar Pipeline

https://github.com/omid2007hope/My-best-works
2•omid2007hope•1h ago•0 comments

Alexander Grothendieck Revolutionized 20th-Century Mathematics

https://www.quantamagazine.org/how-alexander-grothendieck-revolutionized-20th-century-mathematics...
4•anujbans•1h ago•0 comments

How I Host

https://davepeck.org/2026/05/23/how-i-host/
3•davepeck•1h ago•0 comments

Lenovo releases new 14-inch ThinkPad laptop with up to 120 Hz OLED and 96 GB RAM

https://www.notebookcheck.net/Lenovo-releases-new-14-inch-laptop-with-up-to-120-Hz-OLED-and-96-GB...
2•teleforce•1h ago•4 comments

From Vibe Coding to AI-Assisted Engineering: Lessons from Real Projects

https://medium.com/@eritonsilva/from-vibe-coding-to-ai-assisted-engineering-lessons-from-real-pro...
3•Eritsil•1h ago•0 comments

Micron Virginia expansion advances DDR4 memory made in the USA

https://www.micron.com/us-expansion/va
3•walterbell•1h ago•1 comments

Linus Torvalds: Linux 7.1-rc4

https://lkml.org/lkml/2026/5/17/896
7•vnykmshr•1h ago•1 comments

Who Is the King of Memorial Day Weekend Movies? We Ranked the Biggest Stars

https://editorial.rottentomatoes.com/article/memorial-day-weekend-movie-stars-ranked/
3•evo_9•1h ago•0 comments

Anthropic Says Mythos Has Found More Than 10k Vulnerabilities

https://www.engadget.com/2180028/anthropic-claude-mythos-preview-project-glasswing-update/
3•jonbaer•1h ago•3 comments

Clickup Reduced Headcount by 22%

https://twitter.com/DJ_CURFEW/status/2057522382315929802
6•ankit84•1h ago•2 comments

Show HN: Slow Code, a monthly meetup to practice coding by hand

3•virgil_disgr4ce•2h ago•1 comments