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

Freestiler – PMTiles vector tilesets from R and Python

https://walker-data.com/freestiler/
1•carnevalem•1m ago•0 comments

How not to test LLM models

https://theartificialq.github.io/2026/03/08/how-not-to-test-llm-models.html
1•HonzaT•3m ago•0 comments

Utilization metrics across accelerators (GPUs, TPUs, and so on)

https://github.com/gpusprint/gpusprint
1•heyjupiter•4m ago•0 comments

Behavioral Effects of High Peak Power Microwave Pulses (1992) [pdf]

https://apps.dtic.mil/sti/tr/pdf/ADA258136.pdf
2•anonu•5m ago•0 comments

Microsoft Outlook app now showing paid spam/phishing ad's

https://imgur.com/a/O9bjjQQ
1•xvxvx•6m ago•1 comments

Show HN: PDF to JPG converter that runs in the browser (no uploads)

https://privatepdftojpg.com/
1•touchsomegrass•7m ago•0 comments

Show HN: ClarifyDoc – explains contracts in plain English

https://clarifydoc.xyz/
1•tgdaimov•8m ago•0 comments

Small web publishing tools and frameworks

https://codeberg.org/thgie/awesome-small-web-publishing
2•smartmic•9m ago•0 comments

Self-hosted docs platform – 4 PHP files, no database, free GitBook alternative

https://github.com/webstudio-ltd/docs
3•webstudioltd•9m ago•4 comments

Ask HN: What should an international dev do today?

2•jzu•10m ago•1 comments

AI Agent Site Score Scanner

https://prodlint.com/score
1•AMARCOVECCHIO99•11m ago•0 comments

Can the mental health benefits of exercise be bottled?

https://medicalxpress.com/news/2026-02-mental-health-benefits-bottled.html
1•PaulHoule•11m ago•0 comments

Coasts: Localhost service isolation and orchestration for Git worktrees

https://github.com/coast-guard/coasts
1•handfuloflight•12m ago•0 comments

China's AI progress by the numbers: GLM-5 benchmarks, robotaxi, and Huawei chips

https://medium.com/ai-advances/china-winning-ai-race-deepseek-nvidia-ca7de8a727ec
1•Aedelon•13m ago•0 comments

Show HN: VectorLens – See why your RAG hallucinates, no config

1•gustav-proxi•13m ago•0 comments

Agentic Debt

https://neilkakkar.com/agentic-debt.html
2•neilkakkar•13m ago•0 comments

Show HN: Dashboard for monitoring multiple Claude Code sessions

https://github.com/Stargx/claude-code-dashboard
1•Stargx•15m ago•1 comments

Neuroscientists have pinpointed a potential biological signature for psychopathy

https://www.psypost.org/neuroscientists-have-pinpointed-a-potential-biological-signature-for-psyc...
2•amichail•17m ago•0 comments

60 Minutes Havana Syndrome report finds U.S. government tested energy weapon

https://www.cbsnews.com/news/60-minutes-havana-syndrome-report-finds-u-s-government-tested-energy...
6•jonas21•20m ago•1 comments

Flexible feline spines shed light on "falling cat" problem

https://arstechnica.com/science/2026/03/tuck-and-turn-or-bend-and-twist-how-falling-cats-land-on-...
2•Tomte•20m ago•0 comments

Iran Transformed

https://www.nybooks.com/online/2026/03/08/iran-transformed/
1•mitchbob•23m ago•1 comments

Agent Skill to Use a Debugger

https://github.com/AlmogBaku/debug-skill
1•talolard•24m ago•1 comments

EU publishers won a piece of a shrinking pie

https://mediaindustryshift.substack.com/p/eu-publishers-won-a-piece-of-a-shrinking
3•taubek•24m ago•0 comments

Fukushima at 15: Living with radioactive hot spots and stigma

https://thebulletin.org/2026/03/fukushima-at-15-living-with-radioactive-hot-spots-and-stigma/
1•CqtGLRGcukpy•26m ago•0 comments

Show HN: ChopChopGo – Sigma-based threat hunting for Linux forensic artifacts

https://github.com/M00NLIG7/ChopChopGo
1•M00NL1G7•26m ago•1 comments

Animator Pro (Autodesk Animator) Source Code

https://github.com/AnimatorPro/Animator-Pro-C
1•reconnecting•26m ago•1 comments

We strongly oppose the Unified Attestation initiative

https://xcancel.com/i/status/2031041385554386960
5•ledoge•27m ago•2 comments

Oscar Pool Ballot, 98th Academy Awards

http://fxrant.blogspot.com/2026/03/oscar-pool-ballot-98th-academy-awards.html
1•speckx•28m ago•0 comments

Advanced Pet Screen Drawing Techniques

https://retrogamecoders.com/advanced-pet-screen-drawing-techniques/
1•ibobev•28m ago•0 comments

The Reviewer Isn't the Bottleneck

https://rishi.baldawa.com/posts/review-isnt-the-bottleneck/
1•timbray•29m ago•0 comments