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

Engineers do get promoted for writing simple code

https://www.seangoedecke.com/simple-work-gets-rewarded/
1•rbanffy•2m ago•0 comments

Two GitHub accounts, one machine

https://dineshpandiyan.com/blog/two-github-accounts-one-machine/
1•flexdinesh•11m ago•0 comments

AI bug reports went from junk to legit overnight, says Linux kernel czar

https://www.theregister.com/2026/03/26/greg_kroahhartman_ai_kernel/
2•RandomPenguin•12m ago•0 comments

'Worse-case' CAP shortages threaten the Tucson aquifer's delicate balance (2022)

https://tucson.com/news/local/article_58d33da6-aaad-11eb-99a1-57252344b119.html
1•mooreds•13m ago•0 comments

Media Bias Chart Gallery – Public – Ad Fontes Media

https://adfontesmedia.com/gallery/
1•rbanffy•13m ago•0 comments

Elevated error rates on Opus 4.6

https://status.claude.com/incidents/b9802k1zb5l2
1•nstj•16m ago•0 comments

Embeddable Common Lisp 26.3.27 release

https://ecl.common-lisp.dev/posts/ECL-26327-release.html
2•jackdaniel•18m ago•0 comments

NASA races to have the first moon base and nuclear-propulsion spacecraft

https://www.sciencenews.org/article/nasa-moon-base-nuclear-propulsion-spacecraft
2•majkinetor•19m ago•0 comments

Show HN: Pyconject – Ditch messy YAML loading in Python with config injection

https://github.com/neolaw84/pyconject
1•neolaw•23m ago•1 comments

TDD Makes a Lot of Sense with Agentic Development

1•shellerik•24m ago•0 comments

Show HN: Clipboard-MCP – System clipboard access for AI assistants

https://github.com/mnardit/clipboard-mcp
1•MaxNardit•24m ago•0 comments

Universal package repository SaaS Repsy announces the open source version

1•repsy•24m ago•0 comments

We're Building God with Technology

https://davidbramante.substack.com/p/were-building-god-with-technology
1•davidbramante•26m ago•0 comments

A Car Powered Using 500 Disposable Vape Batteries [video]

https://www.youtube.com/watch?v=HwoZg3BCigU
1•DropDead•29m ago•0 comments

Show HN: FlöFuel – cycling nutrition app that plans around your actual products

https://apps.apple.com/us/app/fl%C3%B6fuel/id6759410434
1•kikibobo69•32m ago•1 comments

Zipf's Law

https://en.wikipedia.org/wiki/Zipf%27s_law
1•_tk_•32m ago•0 comments

GitHub hits CTRL-Z, decides it will train its AI with user data after all

https://www.theregister.com/2026/03/26/github_ai_training_policy_changes/
1•cmsefton•34m ago•1 comments

The most inaccessible site possible with a perfect Lighthouse score (2019)

https://www.matuzo.at/blog/building-the-most-inaccessible-site-possible-with-a-perfect-lighthouse...
1•mooreds•35m ago•0 comments

Ask HN: Have you broke you OpenStreetMap Foundation tiles by blocking referer?

1•matkoniecz•35m ago•0 comments

I built a new composite qualitative metric

https://www.elenaverna.com/p/how-i-built-a-new-composite-qualitative
1•mooreds•35m ago•0 comments

How Well Does My AI Agent Know Me?

https://hexaco-agent.vercel.app/
1•hunglee2•37m ago•0 comments

Why New F-35 Lightning II Stealth Fighters Are Arriving Without Radars

https://www.19fortyfive.com/2026/03/flying-blind-why-new-f-35-lightening-ii-stealth-fighters-are-...
1•RustyBucket•38m ago•0 comments

"Ironies of Automation (1983)"

https://fermatslibrary.com/p/028c7a80
1•dstrbad•40m ago•1 comments

Nixbook OS: A set-and-forget modern operating system designed for simplicity

https://nixbookos.org/
1•severine•42m ago•0 comments

Roundtables: The Next Era of Space Exploration

https://www.technologyreview.com/2026/03/25/1134664/roundtables-the-next-era-of-space-exploration/
1•joozio•45m ago•0 comments

One CLI, Two Audiences: How We Built for Agents and Humans

https://www.checklyhq.com/blog/agentic-cli/
1•tnolet•48m ago•0 comments

Platform Factors

https://docs.google.com/document/d/1V1ESrJ0AZagEtlknZBuhiLjJEau-8jLo5UmsdAmG9NA/edit?tab=t.0#head...
1•mooreds•51m ago•0 comments

Show HN: Replay – A private, on-device Google Timeline replacement for iOS

https://replayapp.jaxtam.dev
1•EnhancedJax•52m ago•0 comments

SQL Interviews in the Age of LLMs: Patterns over Queries

https://www.datobra.com/sql-interviews-in-the-age-of-llms-patterns-over-queries/
2•olgazju•53m ago•0 comments

Anthropic left details of an unreleased model sitting in an unsecured data trove

https://fortune.com/2026/03/26/anthropic-leaked-unreleased-model-exclusive-event-security-issues-...
2•guessmyname•54m ago•0 comments