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

Fastest way to compute the greatest common divisor (2013)

https://lemire.me/blog/2013/12/26/fastest-way-to-compute-the-greatest-common-divisor/
1•tosh•1m ago•0 comments

Web Agent Bridge – An Open-Source OS for AI Agents (MIT and Open Core)

https://webagentbride.com
1•abokenan444•1m ago•0 comments

The purist's guide to phở in Hanoi

https://connla.substack.com/p/pho-in-hanoi-a-purists-guide
1•vinhnx•6m ago•0 comments

Binary GCD

https://en.algorithmica.org/hpc/algorithms/gcd/#binary-gcd
1•tosh•7m ago•0 comments

Ask HN: Is there an open source lovable/bolt?

1•dokdev•7m ago•0 comments

A Brief History of Fish Sauce

https://www.legalnomads.com/fish-sauce/
1•vinhnx•8m ago•0 comments

I built a real-time AR plane spotter, here's the math that makes it work

2•ananddhruv29•12m ago•0 comments

PCMind: Local AI analysis of docs, audio, video and images

https://pcmind.app/
1•hishamsasy•13m ago•0 comments

Claude is skeptical about OpenClaw

https://wecreatethis.com/blog/post?slug=claude-is-skeptical-about-openclaw
2•jameswhitford•15m ago•1 comments

Show HN: FFmpeg API Cloud – Run FFmpeg over HTTP

https://ffmpeg-api.cloud
1•gregzeng95•21m ago•0 comments

Apache Cloudberry 2.1.0

https://www.postgresql.org/about/news/apache-cloudberry-210-released-postgresql-based-mpp-databas...
1•salkahfi•21m ago•0 comments

A glimpse of the new software engineering

https://adlrocha.substack.com/p/adlrocha-a-glimpse-of-the-new-software
1•adlrocha•22m ago•0 comments

How much do sandboxes cost?

https://sandboxprices.swerdlow.dev/
3•benswerd•23m ago•1 comments

RAG as Similarity Engine

https://necromant2005.github.io/dev/rag-as-similarity-engine/
2•rmykhajliw•25m ago•2 comments

Token usage: Vanity metrics are back

https://jasperinsweden.substack.com/p/vanity-metrics-are-back
2•imartin2k•25m ago•0 comments

All you need is myformconnect

1•myformconnect•27m ago•0 comments

EU age verification app: "Worry-free package" with security vulnerabilities

https://www.heise.de/en/news/EU-age-verification-app-Worry-free-package-with-security-vulnerabili...
2•_tk_•29m ago•0 comments

Techie buys fake Ledger Nano S+ hardware wallet and almost falls for phishing

https://www.tomshardware.com/tech-industry/cyber-security/techie-buys-fake-ledger-nano-s-hardware...
2•NewCzech•31m ago•0 comments

Show HN: SharpSkill – I simplified the process of ITWs preparation

https://sharpskill.dev/en
2•Enjoyooor•39m ago•0 comments

Marvin Minsky – Steps Toward Artificial Intelligence (1961) [pdf]

https://courses.csail.mit.edu/6.803/pdf/steps.pdf
1•the-mitr•40m ago•0 comments

Show HN: Understand Anything – Graphs that teach > graphs that impress

https://github.com/Lum1104/Understand-Anything
1•lum1104•42m ago•0 comments

Show HN: Browser Sysinfo – See everything a webpage can learn about you

https://sysinfo.theden.sh/
2•theden•43m ago•0 comments

HN: UmaBot – a multi-agent AI assistant

https://github.com/shaktsin/umaBot
1•shaktdev•43m ago•0 comments

Modern Rendering Culling Techniques

https://krupitskas.com/posts/modern_culling_techniques/
3•krupitskas•46m ago•0 comments

How (and why) we rewrote our production C++ front end infrastructure in Rust

https://blog.nearlyfreespeech.net/2026/04/17/how-and-why-we-rewrote-our-production-c-frontend-inf...
3•NewCzech•51m ago•0 comments

The Hilbert-Pólya Operator

https://substack.com/@metamagic/note/c-239237060
1•r0ze-at-hn•51m ago•0 comments

Under the hood of MDN's new front end

https://developer.mozilla.org/en-US/blog/mdn-front-end-deep-dive/
2•kevsim•56m ago•0 comments

Mythos and Cybersecurity

https://www.schneier.com/blog/archives/2026/04/mythos-and-cybersecurity.html
3•omer_k•56m ago•0 comments

Robot sprints to victory in Beijing, beating the half-marathon world record

https://apnews.com/article/humanoid-robots-half-marathon-beijing-302d0c4781bab20100d6a0bb4e77b629
4•tromp•1h ago•0 comments

Did Second-Wave Feminists Really "Forget" Motherhood?

https://fairerdisputations.org/second-wave-motherhood/
3•istist•1h ago•0 comments