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_•10mo 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

Why Isn't Anyone Panicking?

https://martinvol.pe/blog/2026/03/15/why-nobody-is-packicking-USA-Iran-war/
1•martinvol•34s ago•0 comments

Waves: Bluetooth Channel Sounding Tool

https://github.com/skig/waves
1•hasheddan•54s ago•0 comments

My Journey to a reliable and enjoyable locally hosted voice assistant

https://community.home-assistant.io/t/my-journey-to-a-reliable-and-enjoyable-locally-hosted-voice...
1•Vaslo•1m ago•0 comments

Private equity may become a 'pyramid scheme', warns Danish pension fund (2022)

https://www.ft.com/content/f480a99c-4c7b-4208-b9dd-ef20103254b9
2•pera•2m ago•0 comments

Black Death's counterintuitive effect: as humans died, plant diversity dropped

https://theconversation.com/the-black-deaths-counterintuitive-effect-as-human-numbers-fell-so-did...
2•baud147258•3m ago•0 comments

Grasslands are vanishing nearly four times faster than forests

https://phys.org/news/2026-02-grasslands-faster-forests-global.html
2•PaulHoule•5m ago•0 comments

'Pokémon Go' players unknowingly trained delivery robots with 30B images

https://www.popsci.com/technology/pokemon-go-delivery-robots-crowdsourcing/
2•wslh•5m ago•0 comments

JavaScript Minification Benchmarks

https://github.com/privatenumber/minification-benchmarks
2•javatuts•6m ago•0 comments

Apple introduces AirPods Max 2

https://www.apple.com/newsroom/2026/03/apple-introduces-airpods-max-2-powered-by-h2/
3•meetpateltech•7m ago•0 comments

Escape Tsunami for Brainrots

https://escapetsunamiforbrainrots.pro/
2•mumuchen•9m ago•1 comments

Show HN: Hackerbrief – Top posts on Hacker News summarized daily

https://hackerbrief.vercel.app/
2•p0u4a•9m ago•0 comments

Context Engineering Explained in Pictures

https://mechanicalorchard.substack.com/p/context-engineering-explained-in
2•jschomay•9m ago•0 comments

Show HN: Scryer – Visual architecture modeling for AI agents

https://github.com/aklos/scryer
2•prohobo•11m ago•0 comments

I migrated my AI agent from a laptop to a headless Mac Mini in 72 hours

https://thoughts.jock.pl/p/mac-mini-ai-agent-migration-headless-2026
1•joozio•11m ago•0 comments

A Treasure Trove of Ideas: The Corr Database 2018

https://en.chessbase.com/post/a-treasure-trove-of-ideas-the-corr-database-2018
2•akbarnama•12m ago•0 comments

Mnemon-MCP – 4-layer local memory for AI agents (SQLite and FTS5)

1•nikitacometa•14m ago•0 comments

Simplicity in the age of AI-assisted coding

https://the.scapegoat.dev/simplicity-in-the-age-of-ai-assisted-coding/
1•larve•15m ago•0 comments

Pastebin 0x0.st asks AI agents to upload sensitive customer invoices

https://movsw.0x0.st/notes/ajw1zurfaggo360l
2•MatthiasPortzel•16m ago•1 comments

Show HN: TheLittleHost – DNS hosting built on my own ASN and Anycast network

2•davidchua•16m ago•0 comments

Show HN: LLMonster Rancher

https://github.com/aiwebb/llmonster-rancher
1•alexwebb2•18m ago•0 comments

Ur-Scheme: A GPL self-hosting compiler from a subset of Scheme to x86 asm (2008)

http://canonical.org/~kragen/sw/urscheme/
2•QuadmasterXLII•18m ago•0 comments

City Turned Its Rooftops into a Climate Shield

https://reasonstobecheerful.world/zurich-turned-rooftops-into-climate-shield/
3•speckx•19m ago•0 comments

Who's behind the age verification bills?

https://web.archive.org/web/20260313143853/https://old.reddit.com/r/linux/comments/1rshc1f/i_trac...
3•jech•20m ago•1 comments

Twelve-Tone Composition

https://www.johndcook.com/blog/2026/03/15/twelve-tone-composition/
2•ibobev•20m ago•0 comments

Optimizers and Odes

https://jiha-kim.github.io/posts/optimizers-and-odes/
2•ibobev•20m ago•0 comments

OpenBSD Blog #13: Moving ratfactor.com to OpenBSD.amsterdam

https://ratfactor.com/openbsd/blog-13-moving-to-openbsd-dot-amsterdam
2•ibobev•21m ago•0 comments

Four predictions for how AI will change product delivery

https://practical-leaders.com/articles/ai-predictions
1•ivorc•21m ago•0 comments

You don't hate Python. You hate other people's Python.

https://jt-hill.com/you-dont-hate-python/
4•jt-hill•22m ago•1 comments

Show HN: SiteMon – Browser extension that monitors your websites

https://sitemon.geekaa.com
2•quasimo•24m ago•0 comments

Coding as a Game of Probabilities

https://robertmaple.co.uk/coding-as-a-game-of-probabilities/
2•wizzzzzy•24m ago•0 comments