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

Purl – A curl-esque CLI for making HTTP requests that require payment

https://github.com/stripe/purl
1•vercantez•1m ago•0 comments

Exiting the Cubic Simulation: The SPU-13 and the Geometry of Freedom

https://github.com/johncurley/synergetic-sqr
1•j291920•2m ago•1 comments

Trump tells CNN he's not insisting Iran needs to be a democratic state

https://www.cnn.com/2026/03/06/politics/trump-interview-iran-cuba-dana-bash
2•maxloh•3m ago•1 comments

Ask HN: Why do analytics tools show what happened but not why?

1•HPSimulator•4m ago•0 comments

Loxation flags: pig-butchering, grooming and social engineering

https://www.loxation.com/blog/posts/blog_vector_db_learning_substrate/
1•jabbr•7m ago•0 comments

Show HN: PriceMon – get alerted when a competitor changes their pricing

https://pricemon.io
1•scrygl•9m ago•0 comments

Web inventor Tim Berners-Lee backs social media ban for under-16s

https://www.catalannews.com/business/item/web-inventor-tim-berners-lee-backs-social-media-ban-for...
1•rbanffy•10m ago•0 comments

Syracuse among cities to upgrade snowplows with video, AI and GPS – AP News

https://apnews.com/article/snowplows-blizzard-ai-gps-syracuse-newyork-7508aa04a5877541bb1ea55e946...
1•rbanffy•10m ago•0 comments

China's Parents Are Outsourcing the Homework Grind to A.I

https://www.nytimes.com/2026/03/02/world/asia/china-education-ai.html
1•rbanffy•11m ago•0 comments

Show HN: Typeui.sh – generate skill files for design system specifications

https://www.typeui.sh/
5•elwingo1•13m ago•2 comments

I Audit a Legacy Rails Codebase in the First Week

https://piechowski.io/post/how-i-audit-a-legacy-rails-codebase/
1•birdculture•13m ago•0 comments

We're Training Students to Write Worse to Prove They're Not Robots

https://www.techdirt.com/2026/03/06/were-training-students-to-write-worse-to-prove-theyre-not-rob...
3•PretzelFisch•14m ago•0 comments

Blacksky: Open-source digital public infrastructure project

https://en.wikipedia.org/wiki/Blacksky
1•doener•14m ago•1 comments

Block Number Formats Are Direction Preservers

https://constantinides.net/2026/03/07/block-number-formats-are-direction-preservers/
1•matt_d•14m ago•0 comments

Warren's Abstract Machine: A Tutorial Reconstruction (1999)

https://web.archive.org/web/20220119110941/http://wambook.sourceforge.net/
2•Jtsummers•17m ago•0 comments

A New Version of Our Oracle Solaris Environment for Developers

https://blogs.oracle.com/solaris/announcing-a-new-version-of-our-oracle-solaris-environment-for-d...
2•naves•18m ago•0 comments

Agents of Chaos

https://arxiv.org/abs/2602.20021
1•pagade•18m ago•0 comments

Show HN: Dead Man's Switch – miss a check-in, alert your contacts

https://deadmansswitch.cloud
1•pajones•19m ago•0 comments

Shannon Got AI This Far. Kolmogorov Shows Where It Stops

https://medium.com/@vishalmisra/shannon-got-ai-this-far-kolmogorov-shows-where-it-stops-c81825f89ca0
1•tosh•21m ago•0 comments

Show HN: I made an App for learning Japanese, and it won in Vercel's OSS program

https://github.com/lingdojo/kana-dojo
1•thebababak•22m ago•0 comments

Apple Ads

https://ads.apple.com/app-store
2•_RPM•22m ago•0 comments

Linux hacked onto a PS5 to turn Sony's console into a Steam Machine

https://www.tomshardware.com/video-games/playstation/linux-hacked-onto-a-ps5-to-turn-sonys-consol...
4•LorenDB•22m ago•0 comments

Does Costco Sell Half of the Cashews?

https://www.tastingtable.com/1685159/costco-half-the-worlds-supply-cashew/
2•thunderbong•26m ago•0 comments

Show HN: NovusNet, a C++ networking library for beginners

https://github.com/Nullora/NovusNet
1•nullora•31m ago•0 comments

Show HN: NervOS – Sandbox for AI Agents Using Firecracker MicroVMs

https://github.com/ashishgituser/NervOS
1•ashishch111•35m ago•0 comments

Building Cursor for LibreOffice: A Week-Long Journey

https://keithcu.com/wordpress/?p=5060
3•keithcu2•37m ago•0 comments

Show HN: N8n-trace – Grafana-like observability for n8n workflows

https://github.com/Mohammedaljer/n8nTrace
2•mj95•38m ago•1 comments

Knuth Claude's Cycles note update: problem now fully solved by LLMs

https://www-cs-faculty.stanford.edu/~knuth/preprints.html
2•fs123•38m ago•2 comments

Tesla back on top as Norway's EV market surges to 98% share in February

https://www.teslarati.com/tesla-norway-98-percent-ev-sales/
2•andsoitis•38m ago•0 comments

Sam and Dario's not-so-excellent AI adventure

https://www.fastforward.blog/sam-and-darios-not-so-excellent-ai-adventure/
1•ohjeez•39m ago•0 comments