frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Open in hackernews

Show HN: SDK for AI Coding with Long Running Tasks

https://cloudcoding.ai/
2•sean_•1y 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

The Field Is Optional. The Death Threats Were Not

https://canartuc.medium.com/the-field-is-optional-the-death-threats-were-not-1e2f1f0ce772
1•andsoitis•2m ago•0 comments

Optimizing GEMM and Activation on CDNA4 with TLX

https://www.amd.com/en/developer/resources/technical-articles/2026/optimizing-gemm-with-tlx.html
1•matt_d•2m ago•0 comments

Basht – A bash shell that handles multitasking better

https://github.com/samiam95124/basht
1•samiam95124•3m ago•1 comments

Show HN: The Annotated DiffusionGemma

https://mlberkeley.substack.com/p/the-annotated-diffusiongemma
1•timothygao•3m ago•0 comments

VectorGrid Core – Bare-metal C++ grid orchestration for AI data centers

https://github.com/MaximiH-86/GridPulse_Production_Server
1•Masama3•5m ago•0 comments

Simple 2D Grass Rendering with WebGPU

https://jarl-game.com/blog/2d-gpu-grass-rendering/
1•vladimirzaytsev•6m ago•0 comments

Show HN: Opencodex, a free open-source coding agent for VSCode

https://github.com/matonhp5108/Opencodex
1•thephantomhider•7m ago•0 comments

Human Approval Is a Privilege Escalation Path

https://corebasehq.com/blog/human-approval-is-a-privilege-escalation-path
1•y11t0•10m ago•0 comments

Nixpkgs-multiverse: every version that ever existed

https://fzakaria.com/2026/08/09/nixpkgs-multiverse-every-version-that-ever-existed
1•birdculture•12m ago•0 comments

YouTube Just Raised the Monetization Bar (Again)

https://pleasehustleresponsibly.substack.com/p/youtube-just-raised-the-monetization
1•angelahollowell•13m ago•0 comments

How safe is your sandbox when executing untrusted code?

https://twitter.com/nebusecurity/status/2086939881335607608
1•Finbarr•13m ago•0 comments

Rent and Pensions Eat Half of Your Disposable Income

https://julienreszka.com/blog/rent-and-pensions-eat-half-of-your-disposable-income/
2•julienreszka•15m ago•0 comments

Optimizing the Point Away

https://www.workbyjacob.com/thoughts/optimizing-the-point-away
1•slackpad•16m ago•0 comments

Show HN: Scroll through all 43252003274489856000 Rubik's Cube states

https://everycube.alen.is/
2•Alen123•19m ago•0 comments

Text AI watermarks will always be trivial to remove

https://www.seangoedecke.com/text-ai-watermarks/
2•gfysfm•23m ago•0 comments

Wanno – AI builder, cloud agent and infra for your apps

https://wanno.dev/
1•federiconbo•23m ago•0 comments

Show HN: News Aggregator for Science and Technology

https://paperrun.news/popular
1•fingerz17•25m ago•0 comments

Xbox PC and Game Pass titles coming to Linux through 'Xodus' open-source project

https://www.tomshardware.com/software/linux/xbox-pc-and-game-pass-titles-are-coming-to-linux-thro...
1•sbulaev•28m ago•1 comments

Yen sinks as effect of US-Japan intervention fades

https://www.ft.com/content/47d2ab3c-0423-49ed-89ca-68683761ed98
3•petethomas•30m ago•0 comments

My Homelab Got Hacked – A Postmortem

https://phunky.cafe/my-homelab-got-hacked/
5•cdrnsf•31m ago•0 comments

Show HN: AI-powered App Store replies that sound like you

https://www.replyargus.com
1•wowinter15•32m ago•0 comments

Trump signs order calling for spacing out childhood vaccines

https://apnews.com/article/vaccine-research-autism-trump-kennedy-rfk-d10f81f221c4ae9f5b2f83dd0ee9...
4•choult•38m ago•3 comments

Separating sex and gender is statistical malpractice

https://blog.djnavarro.net/posts/2026-08-06_separating-sex-and-gender-is-statistical-malpractice/
5•panic•38m ago•0 comments

Learning Sed or Using Claude?

https://playtechnique.io/blog/learning-sed-or-using-claude.html
2•gwynforthewyn•43m ago•2 comments

A Watermark for Large Language Models

https://arxiv.org/abs/2301.10226
3•m-chrzan•47m ago•0 comments

Simulation of the light pollution effects of Reflect Orbital's mirror satellites

https://starryprinceton.org/scattering_calculations_renderings?
2•atomicthumbs•49m ago•1 comments

Why Reykjavik, Iceland Banned Dogs (2023)

https://allthingsiceland.com/reykjavik-banned-dogs-cats-rule/
2•thomassmith65•50m ago•1 comments

Olix raises $312M from Netflix's Reed Hastings, Arm, to build Nvidia rival

https://techfundingnews.com/olix-raises-312m-3-3b-valuation-nvidia-rival/
2•andsoitis•53m ago•0 comments

World Train Map – 1247 train routes around the world

https://worldtrainmap.com/
4•Flightmussy•53m ago•0 comments

Dark mode toggles: two states are enough

https://lea.verou.me/blog/2026/dark-mode-toggles/
2•nikolay•53m ago•0 comments