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

Pro-Iran hackers claim cyberattack on major US medical device maker

https://www.cnn.com/2026/03/11/politics/pro-iran-hackers-cyberattack-medical-device-maker
1•zomg•17s ago•0 comments

PeerTube v8.1 Released

https://joinpeertube.org/news/release-8.1
2•toomuchtodo•1m ago•1 comments

Constellation Draw

https://neal.fun/constellation-draw
1•xia•3m ago•0 comments

Browserbase Fetch: Simple API for extracting web page content for AI agents

https://www.browserbase.com/blog/fetch-api
1•Kylejeong21•4m ago•0 comments

A Definition-Based Wordle Game

https://www.jlauf.com/dictle/
1•jlauf•4m ago•0 comments

Show HN: AutosArena – The most complete automotive data platform, available free

https://autos-arena.com
1•seeyam14•5m ago•0 comments

SetupClaw – White-Glove OpenClaw Deployment for Founders and Exec Teams

https://setupclaw.com
2•personjerry•5m ago•1 comments

Made my own programming language, kinda advanced

https://github.com/entrenchedosx/spl
1•redempt1on•6m ago•0 comments

Show HN: Pointify – Retro analog gauges for system stats and Claude usage

https://github.com/luftaquila/pointify
2•luftaquila•6m ago•0 comments

Charging Strategies for Battery Electric Trucks in Germany

https://www.mdpi.com/2032-6653/17/2/106
1•PaulHoule•6m ago•0 comments

Most Watched Software Engineering Talks of 2025

https://www.techtalksweekly.io/p/100-most-watched-software-engineering-talks-of-2025
2•m4lloc•7m ago•0 comments

Homebrew 5.1.0

https://brew.sh/2026/03/10/homebrew-5.1.0/
3•mikemcquaid•7m ago•1 comments

Show HN: Sandbox Flow – A Playground for Sandboxes

https://github.com/BandarLabs/sandboxflow
1•mkagenius•9m ago•0 comments

Signs of Spring? Or Signs of the Apocalypse? Same Thing

https://petermoore.substack.com/p/forget-april-now-march-is-the-cruelest
1•road2elsewhere•9m ago•0 comments

I Did as Little Homework as I Could

https://kytael.substack.com/p/i-did-as-little-homework-as-i-could
1•tasshin•9m ago•0 comments

Show HN: Email inbox for your OpenClaw agent

https://mailboxkit.com
1•obaid•9m ago•0 comments

NASA and SpaceX disagree about manual controls for lunar lander

https://arstechnica.com/space/2026/03/nasa-and-spacex-disagree-about-manual-controls-for-lunar-la...
1•rbanffy•9m ago•0 comments

Norwegian consumer watchdog calls out 'enshittification' of video games, devices

https://www.tomshardware.com/tech-industry/norwegian-consumer-watchdog-calls-out-enshittification
2•rubenbe•10m ago•0 comments

Ask HN: Add a policy to state when LLM is used to assist in writing

1•smusamashah•11m ago•1 comments

Lego Machine Learning

https://github.com/360er0/awesome-lego-machine-learning
1•cyanbane•11m ago•0 comments

Stryker Hit with Suspected Iran-Linked Cyberattack

https://www.wsj.com/articles/stryker-hit-with-suspected-iran-linked-cyberattack-52f6615c
1•p4ul•11m ago•0 comments

Global farmers face fertilizer shortages due to Persian Gulf supply disruptions

https://grist.org/food-and-agriculture/the-war-in-iran-could-plunge-the-world-into-hunger/
2•speckx•12m ago•0 comments

Microsoft Authenticator to nuke Entra creds on rooted and jailbroken phones

https://www.theregister.com/2026/03/10/microsoft_authenticator_checks/
2•azalemeth•12m ago•0 comments

Iran warns US tech firms cold become targets as war expands

https://www.wired.me/story/war-on-big-tech-iran-names-israeli-linked-us-firms-as-potential-targets
3•Fricken•15m ago•1 comments

Meta acquires Moltbook, the AI agent social network

https://arstechnica.com/ai/2026/03/meta-acquires-moltbook-the-ai-agent-social-network/
1•rbanffy•15m ago•0 comments

Music Maker: Automate Music Generation with Claude Code

https://github.com/mkagenius/music-maker
1•mkagenius•16m ago•0 comments

Tesla China Sales Up 91% in Feb, BYD Down 47%

https://twitter.com/tslaming/status/2031684023035322534
1•leesec•18m ago•1 comments

What monotheism means is surprisingly hard to pin down

https://www.newyorker.com/magazine/2026/03/09/how-god-got-so-great
1•diodorus•18m ago•0 comments

The dead Internet is not a theory anymore

https://www.adriankrebs.ch/blog/dead-internet/
17•hubraumhugo•19m ago•0 comments

Show HN: An app to simulate whether AI will take your job

https://underclass.sh
1•shaiunterslak•20m ago•0 comments