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

Banks can Prevent Bank Runs by operating more like Bond Funds

https://outlookzen.com/2015/05/03/a-financial-system-with-solid-foundations/
1•whack•1m ago•0 comments

Jsontap – Reactive access to incrementally parsed JSON for Python

https://github.com/fhalde/jsontap
1•dadbod•3m ago•1 comments

Show HN: Decision Guardian – Auto-surface architectural context on PRs and CLI

2•iamalizaidi•5m ago•0 comments

FCC approves Charter Communications' $34.5B deal to buy Cox

https://www.reuters.com/world/us-agency-approves-charter-communications-345-billion-deal-buy-cox-...
2•geox•9m ago•0 comments

Shift from passive documentation to active enforcement

4•iamalizaidi•10m ago•0 comments

Show HN: Accept.md now supports SvelteKit – return Markdown from any page

https://www.accept.md/
2•hval•12m ago•0 comments

I stopped using JSON for MQTT and use Zig to develop gRPC-like communication

https://gyokhan.com/stopped-using-json-for-mqtt-and-develop-zig-protobuf-mqtt/
2•gyokhan•19m ago•0 comments

Raided by the Police – Investigating Nintendo, Sega, & Devkit Arrests [video]

https://www.youtube.com/watch?v=NU040CTdJI0
2•wicket•21m ago•0 comments

Sam Altman Says OpenAI Is Working on Pentagon Deal

https://www.wsj.com/tech/ai/openais-sam-altman-calls-for-de-escalation-in-anthropic-showdown-with...
2•DGAP•22m ago•1 comments

Autokey Wayland – fork of AutoKey a desktop automation app with Wayland support

https://github.com/dlk3/autokey-wayland
1•Curiositry•23m ago•0 comments

Software development now costs less than than the wage of a minimum wage worker

https://ghuntley.com/real/
2•cebert•26m ago•1 comments

Pentagon approves OpenAI safety red lines after dumping Anthropic

https://www.axios.com/2026/02/27/pentagon-openai-safety-red-lines-anthropic
3•galleywest200•26m ago•0 comments

Show HN: I made a website to write online math as fast as paper

https://www.scratchpad-math.com/
3•maxtobiasen•29m ago•1 comments

Is AGI a Billion-Dollar Mirage? The AI Circular Trap

https://medium.com/@opsworld.g/ais-downhill-without-brakes-is-agi-a-billion-dollar-mirage-e5b9cb6...
4•om202•30m ago•0 comments

Money Is the First AI – and We Never Noticed

https://github.com/AionSystem/AION-BRAIN/blob/main/articles/MEDIUM/THE-THRESHOLD/Money-Is-The-Fir...
2•sheldonksalmon•32m ago•1 comments

LFortran Compiles Fpm

https://lfortran.org/blog/2026/02/lfortran-compiles-fpm/
1•wtlin•33m ago•0 comments

Show HN: I seriously think this is the most effective email leadgen tool

https://easyemailfinder.com/
1•faalbane•34m ago•0 comments

Devs who code like you (from public GitHub signals)

https://mates.symploke.dev?hn
1•thomasfromcdnjs•34m ago•0 comments

The Ballad of Dario and Pete

https://twitter.com/last_one_in_/status/2027536134214189435
2•cmogni1•36m ago•0 comments

A way to be a person

https://www.lrb.co.uk/the-paper/v48/n04/paul-taylor/a-way-to-be-a-person
1•hhs•36m ago•0 comments

Modernity: We launched two weeks ago, got 400 testers, zero customers. Fixes

https://modernity.live/
1•Fabric14•37m ago•1 comments

History of Software Design

https://historyofsoftware.org/
2•vinhnx•39m ago•0 comments

How strong is New York's "illegal gambling" case against Valve's loot boxes?

https://arstechnica.com/gaming/2026/02/how-strong-is-new-yorks-illegal-gambling-case-against-valv...
2•Bender•39m ago•0 comments

C inference for Qwen3-ASR 0.6B and 1.7B transcriptions models

https://github.com/antirez/qwen-asr
1•Curiositry•40m ago•0 comments

Show HN: OpenTimelineEngine – Shared local memory for Claude Code and codex

https://github.com/JOELJOSEPHCHALAKUDY/open-timeline-engine
5•joeljoseph_•45m ago•3 comments

Carabiner Hacking for Workout [video]

https://www.youtube.com/shorts/rhqroEZCrnI
1•demute•47m ago•0 comments

New AGI Framework Different

https://hal.science/hal-05528268
1•Sai-dewa•48m ago•4 comments

Claude's Constitution (2023)

https://www.anthropic.com/news/claudes-constitution
3•ponkylives•52m ago•0 comments

The Legal Rights of Extraterrestrials

https://www.rfreitas.com/Astro/LegalRightsOfETs.htm
1•TheAceOfHearts•52m ago•0 comments

'RentAHuman' platform includes Texans who can be rented by AI agents for tasks

https://dallasinnovates.com/rentahuman-platform-includes-north-texans-who-can-be-rented-by-ai-age...
1•hhs•54m ago•1 comments