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

'Terrifying': Federal immigration agents found patrolling LA in horror masks

https://www.sfgate.com/la/article/la-federal-immigration-agents-halloween-masks-21131816.php
1•Marshferm•7m ago•0 comments

DPRK Adopts EtherHiding: Nation-State Malware Hiding on Blockchains

https://cloud.google.com/blog/topics/threat-intelligence/dprk-adopts-etherhiding
1•hentrep•9m ago•0 comments

Show HN: Local Push-to-Transcribe

https://github.com/spacefarers/Transcrybe
1•spacefarers•10m ago•0 comments

Biotech Hunter – Crunchbase for Life Sciences

https://biotechhunter.com/
2•johnys•14m ago•0 comments

WASM-Adventure

https://github.com/euhmeuh/wasm-adventure
1•todsacerdoti•15m ago•0 comments

Can you get a star in Super Mario 64 using only one button? [video]

https://www.youtube.com/watch?v=-7VhlsqeeqI
1•unleaded•18m ago•0 comments

The Department of Defense Wants Less Proof Its Software Works

https://www.eff.org/deeplinks/2025/10/department-defense-wants-less-proof-its-software-works
1•hn_acker•21m ago•0 comments

The Situation: How Much Less Free Are We?

https://www.lawfaremedia.org/article/the-situation--how-much-less-free-are-we
1•hn_acker•22m ago•0 comments

Will Paramount Cancel Jon Stewart?

https://www.newyorker.com/culture/the-new-yorker-interview/will-paramount-cancel-jon-stewart
1•mitchbob•24m ago•1 comments

Interesting Research Programs from the 2010s (2020)

https://bcmullins.github.io/interesting-research-2010s/
1•vinhnx•24m ago•0 comments

TeraAgent: Simulating Half a Trillion Agents

https://arxiv.org/abs/2509.24063
1•jonbaer•24m ago•0 comments

Show HN: I've built a web based pdf/docx/pptx editor, the format .ldf

https://learny.academy/about
1•yeargun•29m ago•1 comments

Interactively explore FastAPI endpoints with FastAPI-Voyager

https://www.newsyeah.fun/voyager/
1•tank-34•34m ago•0 comments

Site and Formation Selection for CO2 Geological Sequestration

https://www.mdpi.com/2076-3417/15/21/11402
1•PaulHoule•35m ago•0 comments

Defeating the Training-Inference Mismatch via FP16

https://arxiv.org/abs/2510.26788
2•matt_d•37m ago•0 comments

The Psychology of Curiosity: A Review and Reinterpretation (1994) [pdf]

https://www.cmu.edu/dietrich/sds/docs/loewenstein/PsychofCuriosity.pdf
1•wslh•39m ago•0 comments

OpenAI updates terms to forbid usage for medical and legal advice

https://openai.com/policies/usage-policies/
4•piskov•39m ago•2 comments

Show HN: Strange Attractors

https://blog.shashanktomar.com/posts/strange-attractors
56•shashanktomar•41m ago•5 comments

Fix Your FODs

https://garnix.io/blog/fix-your-fods
1•birdculture•44m ago•0 comments

Introduction to Parallelism in PyTorch

https://ggrigorev.me/posts/introduction-to-parallelism/
2•vinhnx•46m ago•0 comments

Web of Science company involved in dubious awards in Iraq

https://retractionwatch.com/2025/10/31/exclusive-clarivate-web-of-science-involved-dubious-awards...
2•leephillips•48m ago•0 comments

Why tequila depends on Mexico's bats

https://www.bbc.com/future/article/20251028-mexicos-tequila-future-depends-on-bats
3•1659447091•50m ago•0 comments

Big Tech's market dominance is becoming ever more extreme

https://www.ft.com/content/ae4d7961-cf59-4369-8e64-8a9c9da956d1
4•zerosizedweasle•51m ago•0 comments

Fed 'Chorus' Comes Out Against Latest Cut, Citing Inflation

https://www.bloomberg.com/news/articles/2025-10-31/fed-s-logan-says-didn-t-want-rate-cut-with-inf...
5•zerosizedweasle•52m ago•0 comments

Show HN: Durbat – Write Rust Code Using Black Speech

https://github.com/itsfoxstudio/durbat
1•rpunkfu•52m ago•0 comments

Al Qaeda Is on the Brink of Taking over a Country

https://www.wsj.com/world/africa/al-qaeda-is-on-the-brink-of-taking-over-a-country-ffd35ea4
4•wslh•53m ago•1 comments

Show HN: Modern PHP development with Vite, it's ecosystem and PHP components

https://github.com/nititech/modern-php-vite-starter
2•donnikitos•56m ago•0 comments

The Geometry of Schemes [pdf]

https://webhomes.maths.ed.ac.uk/~v1ranick/papers/eisenbudharris.pdf
2•measurablefunc•59m ago•0 comments

Photographing the rare brown hyena stalking a diamond mining ghost town

https://www.bbc.com/future/article/20251014-the-rare-hyena-stalking-a-diamond-mining-ghost-town
6•1659447091•1h ago•0 comments

S.a.r.c.a.s.m: Slightly Annoying Rubik's Cube Automatic Solving Machine

https://github.com/vindar/SARCASM
3•chris_overseas•1h ago•0 comments