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

Show HN: The best way to manage your skills – Better-Skills

2•trapani•1m ago•0 comments

Dependency cooldowns would be a good idea for Go

https://utcc.utoronto.ca/~cks/space/blog/programming/GoDependencyCooldownsGood
1•ingve•2m ago•0 comments

Trump Adviser Warns of Possible Israel Nuclear Escalation in Iran Conflict

https://www.newsweek.com/david-sacks-trump-administration-israel-nuclear-escalation-iran-war-1167...
1•jacquesm•2m ago•0 comments

Invariant Risk Minimization (2020)

https://arxiv.org/abs/1907.02893
1•gone35•4m ago•0 comments

TikTok Investors Set to Pay $10B Fee to Trump Administration

https://www.nytimes.com/2026/03/13/business/trump-tiktok-10-billion-fee.html
1•chirau•4m ago•0 comments

Agent Format: A Declarative Standard for AI Agents (Agentformat.org)

https://agentformat.org/
1•everydaynews•6m ago•1 comments

Reframed

https://www.reframed.cc/
1•abadmos•8m ago•1 comments

Show HN: Musicli – A simple lofi music player in the terminal

https://github.com/btahir/musicli
1•bilater•10m ago•0 comments

Analyzing Nvidia GB10's GPU

https://chipsandcheese.com/p/analyzing-nvidia-gb10s-gpu
2•ingve•10m ago•0 comments

Rise of the AI Soldiers

https://time.com/article/2026/03/09/ai-robots-soldiers-war/
2•d_silin•10m ago•0 comments

Harvey Weinstein: The Rikers Interview

https://www.hollywoodreporter.com/movies/movie-features/harvey-weinstein-prison-interview-rikers-...
1•menwithoutwomen•13m ago•1 comments

Show HN: doXmind – for people who want docs, not all of Notion

https://doxmind.com
1•wangzhangwu•15m ago•2 comments

Experimental Counter-UAS Interception Platform

https://machinicdesire.com/
1•jokowueu•17m ago•0 comments

Five Ways I Improved My Coding Workflow (2002)

https://www.flipcode.com/archives/Five_Ways_I_Improved_My_Coding_Workflow.shtml
1•msk-lywenn•17m ago•0 comments

Your Framework Doesn't Matter

https://cemrehancavdar.com/2026/02/19/your-framework-may-not-matter/
1•zdw•17m ago•0 comments

Numbers, Decimals, Formatting, and Printing: Why I Want to Jump Off a Cliff

https://snee.la/ramblings/numbers-decimals-formatting-printing/
1•jruohonen•17m ago•0 comments

AI Exposure of the US Job Market

https://github.com/karpathy/jobs
1•arbayi•20m ago•0 comments

A tape is all an agent needs

https://turing-s-tape-911416006313.us-west1.run.app/
1•mkagenius•21m ago•0 comments

Ageless Linux. We are legally required to ask how old you are. We won't

https://agelesslinux.org/
1•nateb2022•21m ago•0 comments

Changes to OpenTTD Distribution on Steam

https://www.openttd.org/news/2026/03/14/steam-changes
21•canpan•27m ago•7 comments

Memorize song&audio files through splitting and repeating parts automatically

https://soundsplitter.vercel.app/
2•tahseenmahdi•28m ago•1 comments

Ask HN: Do you care if coding agents use your generated code for training?

3•general_reveal•28m ago•1 comments

Allow me to get to know you, mistakes and all

https://sebi.io/posts/2026-03-14-allow-me-to-get-to-know-you-mistakes-and-all/
3•sebi_io•28m ago•0 comments

Learning Creative Coding

https://stigmollerhansen.dk/resume/learning-creative-coding/
4•ammerfest•29m ago•0 comments

Deprecating the DHE cipher suite for TLS connections

https://vercel.com/changelog/deprecating-the-dhe-cipher-suite-for-tls-connections
1•y1n0•30m ago•0 comments

AI Elements 1.9 is now available

https://vercel.com/changelog/ai-elements-1-9
1•y1n0•31m ago•0 comments

Vigil v1.1 – Open-source security ops platform with embedded AI brain

https://github.com/vigil-agency/vigil
2•vigil-agency•33m ago•1 comments

Anti-Slop: A GitHub action that detects and automatically closes AI slop PRs

https://github.com/peakoss/anti-slop
3•flykespice•34m ago•0 comments

Show HN: Costly – Open-source SDK that audits your LLM API costs

https://www.getcostly.dev/
2•itsdannyt•34m ago•1 comments

Mystery Radio Signal from Day One of US-Iran War [video]

https://www.youtube.com/watch?v=NlcIEmYfTmc
2•hackerbeat•40m ago•0 comments