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

I think every company should open source their code [video]

https://www.youtube.com/watch?v=G1xqTjoihfo
1•namanyayg•1m ago•0 comments

Explaining the coexistence of economic freedom and big government

https://www.cambridge.org/core/journals/journal-of-institutional-economics/article/abs/hayekian-w...
1•paulpauper•1m ago•0 comments

Hollis Robbins on Average vs. Marginal

https://arnoldkling.substack.com/p/hollis-robbins-on-average-vs-marginal
1•paulpauper•2m ago•0 comments

Wellbeing, Youth and Survey Mode: Comparisons Across 23 Countries

https://www.nber.org/papers/w35058
1•paulpauper•2m ago•0 comments

Tmux-Kanban – a web board for managing real tmux sessions

https://github.com/linwk20/tmux-kanban
1•wkallan•2m ago•0 comments

Motorola sues social platforms and creators over posts, raising speech concerns

https://techcrunch.com/2026/04/15/motorola-sues-social-platforms-and-creators-over-posts-raising-...
1•abra_dabra•2m ago•0 comments

Any engineers here with experience of clinical data standards?

2•kalturnbull•3m ago•0 comments

Discovery of genetic switch could help turn rice into a perennial crop

https://phys.org/news/2026-03-discovery-genetic-rice-perennial-crop.html
1•PaulHoule•4m ago•0 comments

Wafer maximizes intelligence per watt by optimizing kernals

https://www.wafer.ai/blog/seed-round
1•sethbannon•4m ago•0 comments

Lint email HTML for client compatibility using caniemail data. CLI and library

https://github.com/stewartjarod/email-lint
1•stewartjarod•5m ago•0 comments

The Enshittificator [video]

https://vimeo.com/1168468796
3•aeinbu•7m ago•0 comments

Simon Oxley, famous tech logo designer, has died

https://en.wikipedia.org/wiki/Simon_Oxley
3•anigbrowl•8m ago•0 comments

Anr further skinny about Mythos

1•rkorlimarla•11m ago•0 comments

Emerging-Market Pioneer Mark Mobius Dies at 89

https://www.wsj.com/finance/investing/emerging-market-pioneer-mark-mobius-dies-at-89-5ed4e945
1•sonabinu•11m ago•0 comments

Tennessee is about to make building chatbots a Class A felony

https://old.reddit.com/r/artificial/comments/1slu23a/red_alert_tennessee_is_about_to_make_building/
3•mindcrime•12m ago•0 comments

The AI Labs Have a $7 Doritos Problem

https://vinvashishta.substack.com/p/the-ai-labs-have-a-7-doritos-problem
1•gmays•12m ago•0 comments

Google launches native Gemini app for Mac

https://9to5google.com/2026/04/15/gemini-app-mac/
2•quadrige•12m ago•0 comments

Coding agent methodology built from tool failure, not theory

https://gitlab.com/naive-x/naive-artifact-coding/-/blob/main/white-paper.md
1•haragx•17m ago•0 comments

Show HN: Experimental app for remixing and sharing Wikipedia content

https://testflight.apple.com/join/TcuN9rry
1•brokensegue•18m ago•0 comments

Pay Transparency in the EU (2026)

https://www.consilium.europa.eu/en/policies/pay-transparency/
2•andrewstetsenko•19m ago•0 comments

You can now suggest RSS feeds on Rawfeed.social

https://rawfeed.social/blog/rss-feed-suggestions
1•iozguradem•19m ago•0 comments

Claude Code can now do your job overnight

https://thenewstack.io/claude-code-can-now-do-your-job-overnight/
1•Brajeshwar•24m ago•0 comments

How to notify users about privacy policy changes without spamming everyone

https://www.openpolicy.sh/blog/building-update-flows
1•jamie_davenport•24m ago•0 comments

Ask HN: Are your product managers sending PRs?

1•subw00f•27m ago•1 comments

Reverse-enginnering a bluethoot termal printer (2021)

https://werwolv.net/posts/cat_printer/
1•Muhammad523•30m ago•0 comments

Show HN: Unseal.link – Paste a URL, set a price, let buyers unseal it via Stripe

https://unseal.link
1•beharefe•30m ago•1 comments

NoteSide

https://dylblake.dev/
2•dylblake03•31m ago•1 comments

PTEcorepractice – Free PTE Core Practice Platform for Canada PR Applicants

https://ptecorepractice.com
1•zzx•32m ago•0 comments

One Interface, Every Protocol

https://openbindings.com/blog/one-interface-every-protocol
2•clevengermatt•32m ago•3 comments

Sumida Aquarium Posts 2026 Penguin Relationship Chart, with Drama and Breakups

https://www.sumida-aquarium.com/special/sokanzu/en/2026/
2•Lwrless•33m ago•0 comments