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

Pompeii archaeologists use AI to reconstruct man killed in volcano's eruption

https://www.npr.org/2026/04/28/g-s1-118986/pompeii-archaeologists-use-ai-to-reconstruct-man-kille...
1•razorbeamz•3m ago•0 comments

Show HN: Nat-zero – Scale-to-zero NAT instances for AWS (Terraform module)

https://machine.dev/blog/nat-zero-scale-to-zero-nat-instances/
1•leonardosul•6m ago•1 comments

Porting a Scratch-Built 500M LLM Training Pipeline to ROCm on Strix Halo

https://github.com/epscylonb/1386.ai.rocm
1•thomasfromcdnjs•9m ago•0 comments

Wire: Secure Messenger from Berlin

https://wire.com/en/
2•cl3misch•10m ago•0 comments

Show HN: A narrative walk through AI history, paper by paper (1936–2025)

https://github.com/hgus107/A-Long-Walk-of-AI
1•hgus107•11m ago•0 comments

Vibe Coding Will Break Your Company

https://www.forbes.com/sites/jasonwingard/2026/04/23/vibe-coding-will-break-your-company/
3•sminchev•13m ago•0 comments

Requests for Startups

https://www.ycombinator.com/rfs
2•taubek•21m ago•0 comments

Xiaomi open-sources MiMo-V2.5: 311B A15B 1M-context omnimodal model

https://huggingface.co/XiaomiMiMo/MiMo-V2.5
2•gainsurier•23m ago•0 comments

For the average price of a car in the US, you could buy 4 new Chinese EVs

https://english.kyodonews.net/articles/-/75029
4•anigbrowl•25m ago•0 comments

Show HN: Discuss CLI – No more reviewing agent plans in the terminal

https://github.com/codesoda/discuss-cli/
1•codesoda•29m ago•0 comments

What Claude Shannon Knew in 1950 That We're Pretending Is New

https://www.thecontentwrangler.com/p/what-claude-shannon-knew-in-1950
3•eigenBasis•35m ago•0 comments

Billionaire tax proposal in California on track to qualify for ballot

https://www.boston25news.com/news/national/billionaire-tax/CB6SLQIFI42VDPRJQ37OBMS4TY/
2•1vuio0pswjnm7•42m ago•0 comments

Nvidia's Reaches New Record at Nearly $5.3T Value

https://www.forbes.com/sites/antoniopequenoiv/2026/04/27/nvidia-sets-new-record-with-nearly-53-tr...
1•mgh2•43m ago•0 comments

Ideavalu – AI generates startup ideas based on your esperience

https://www.ideavalu.com
1•Sottasan•46m ago•0 comments

Nocord HF – A discord style FT8 client written in Golang

https://github.com/kyleomalley/nocordhf
1•kyleomalley•47m ago•2 comments

A new Moore's Law for AI agents

https://theaidigest.org/time-horizons
1•Cub3•48m ago•0 comments

The Technological Republic, in brief

https://twitter.com/PalantirTech/status/2045574398573453312
1•layer8•50m ago•0 comments

Gardens, Not Roads: Cultivating Open Source Communities

https://tarakiyee.com/gardens-not-roads-cultivating-open-source-communities/
2•g0xA52A2A•52m ago•0 comments

Peerloop – Review three products, get three reviews on yours

https://peerloop.xyz/
2•sssecasiu•1h ago•0 comments

HNSW vector search beyond available RAM for ESP32P4

https://github.com/brunokeymolen/nn20db-sdk
2•brunokeymolen•1h ago•1 comments

Great Paper: The Calculated Typer – Iowa Type Theory Commute Podcast S7 E6

https://pocketcasts.com/podcast/iowa-type-theory-commute/4c437000-eef8-0137-b700-0acc26574db2/gre...
2•matt_d•1h ago•0 comments

Show HN: Vaava – a baby routine tracker / logging app

https://www.vaava.app/
1•jkantola•1h ago•1 comments

WASM is not quite a stack machine

https://purplesyringa.moe/blog/wasm-is-not-quite-a-stack-machine/
2•signa11•1h ago•0 comments

TiddlyWiki v5.4.0

https://tiddlywiki.com/
6•Tomte•1h ago•0 comments

San Francisco, AI capital of the world, is an economic laggard

https://www.economist.com/finance-and-economics/2026/04/26/san-francisco-ai-capital-of-the-world-...
22•1vuio0pswjnm7•1h ago•12 comments

Cold Rush: Cooling Quantum Computers

https://www.science.org/content/article/helium-3-runs-scarce-researchers-seek-new-ways-chill-quan...
1•sudo_cowsay•1h ago•0 comments

Temporal Language Models

https://www.calcifercomputing.com/reports/tlm
1•oldfuture•1h ago•0 comments

QuickQWERTY: Touch typing tutor that runs in the web browser

https://codeberg.org/susam/quickqwerty
1•susam•1h ago•0 comments

Taylor Swift files to trademark voice and image after AI concerns

https://www.bbc.co.uk/news/articles/crm1mygrmv2o
5•austinallegro•1h ago•1 comments

Go is FIPS 140-3 certified

https://bsky.app/profile/filippo.abyssdomain.expert/post/3mkjbzbzxh62b
2•joonas•1h ago•0 comments