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

DesigNet: Learning to Draw Vector Graphics as Designers Do

https://arxiv.org/abs/2604.06494
1•50kIters•55s ago•0 comments

Blackdesk – open-source market research terminal (Go, TUI, local AI)

https://blackdesk.ai/
1•dumitruflorin•2m ago•0 comments

GitHub Availability March 2026

https://github.blog/news-insights/company-news/github-availability-report-march-2026/
2•alexbilbie•4m ago•0 comments

Rendering large code diffs in the browser without freezing the UI

https://github.com/Zhang-JiahangH/react-virtualized-diff
1•jiahangzhang•4m ago•1 comments

Interpretable models with boosting, symbolic regression and e-graphs

https://mchav.github.io/grow-and-mow/
1•mchav•6m ago•0 comments

Show HN: HoldMyBill – Organize Ownership

1•niksmac•11m ago•0 comments

Show HN: UX Agent Mac app running continuously locally using Gemma 4

https://github.com/tommyjepsen/ux-agent-app
1•tommyjepsen•15m ago•0 comments

Tell HN: I know I dislike a developer

1•ishener•16m ago•1 comments

The First Bike Bell Designed to Penetrate Noise-Cancelling Headphones

https://www.youtube.com/watch?v=zDaVPfpQvPI
1•Ahmedb•18m ago•0 comments

Ask HN: What are you building that's not AI related?

2•meander_water•18m ago•0 comments

AI company's breached biometrics, ID document images make deepfake fraud easier

https://www.biometricupdate.com/202604/ai-companys-breached-biometrics-id-document-images-make-de...
1•tagyro•20m ago•0 comments

Greece announces social media ban for under-15s over anxiety and sleep problems

https://www.theguardian.com/world/2026/apr/08/greece-proposes-social-media-ban-under-15s-anxiety-...
1•Growtika•21m ago•0 comments

I Built an Offline File Sync System

https://github.com/anurag-as/Caravault
1•sampathanurag3•21m ago•0 comments

Tech industry lays off nearly 80k employees in the first quarter of 2026

https://www.tomshardware.com/tech-industry/tech-industry-lays-off-nearly-80-000-employees-in-the-...
1•Growtika•26m ago•0 comments

Fears net zero is 'next Brexit' as oil crisis fuels political climate divide

https://www.theguardian.com/environment/2026/mar/26/fears-net-zero-is-next-brexit-as-oil-crisis-f...
2•PaulHoule•26m ago•0 comments

Freestyle Ax Audit

https://techstackups.com/articles/freestyle-ax-audit/
1•ritzaco•27m ago•0 comments

New problem: AI finds too many bugs

https://etn.se/73048
2•etn_se•28m ago•3 comments

Show HN: D3 4 Layer Magma Graph – Cloak Stealth Browser

https://vektormemory.com/docs/
1•vektormemory•30m ago•0 comments

Help Keep Thunderbird Alive

https://updates.thunderbird.net/en-US/thunderbird/140.0/apr26-1e/donate/
2•playfultones•30m ago•0 comments

Lipovive – Optimize Mitochondrial Health and Burn Fat

https://www.morningstar.com/news/accesswire/1138075msn/lipovive-reviews-shocking-2026-report-what...
1•tayghalu•32m ago•0 comments

Show HN: Chrome extension to filter HN comments by user karma/account age

https://chromewebstore.google.com/detail/hn-users-filter/ineikanbokfebefjmhinpbmgablaebom
2•csomar•32m ago•0 comments

The President Speaks Genocide

https://snyder.substack.com/p/the-president-speaks-genocide
2•hkhn•33m ago•0 comments

Functional Programming with Bananas Lenses Envelopes and Barbed Wire (1991) [pdf]

https://maartenfokkinga.github.io/utwente/mmf91m.pdf
1•tosh•33m ago•0 comments

Show HN: A dev tool for routing local traffic, built with Pingora

https://github.com/antonguzun/hijakora
1•anophelon•35m ago•1 comments

One Million Prompt – $1 per block, AI generates collective art daily

1•danielhidalgo•36m ago•0 comments

Investigating Split Locks on x86-64 – By Chester Lam

https://chipsandcheese.com/p/investigating-split-locks-on-x86
1•rbanffy•37m ago•0 comments

The demise of software engineering jobs has been greatly exaggerated

https://www.cnn.com/2026/04/08/tech/ai-software-developer-jobs
3•perelin•37m ago•0 comments

Algorithms for Modern Hardware

https://en.algorithmica.org/hpc/
1•tosh•38m ago•0 comments

NanoCorp – autonomous companies run by AI

https://www.nanocorp.so
1•kandu•41m ago•0 comments

The Learning Firm Under Poverty of Stimulus

https://jimiwen.substack.com/p/the-learning-firm-under-poverty-of
1•jimiwen•47m ago•0 comments