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

Show HN: GoPortfolio – Portfolio Tracking and Retirement Planning Platform

https://goportfolio.cloud/
1•enklopper•5m ago•0 comments

Show HN: Lowfat – pluggable CLI filter that saved 91.8% of my LLM tokens

https://github.com/zdk/lowfat
1•zdkaster•7m ago•0 comments

Some billionaires pay too little tax

https://economist.com/finance-and-economics/2026/06/04/some-billionaires-pay-too-little-tax
2•andsoitis•9m ago•1 comments

Unicode Cyrillic Letter Multiocular O

https://en.wikipedia.org/wiki/Cyrillic_O_variants
4•s3tz•10m ago•1 comments

Bit Rot Doesn't Always Increase Entropy

https://bughunters.google.com/blog/bit-rot-doesnt-always-increase-entropy
1•ddos•12m ago•0 comments

Robert Crumb: from American counterculture to the French countryside

https://www.artbasel.com/news/robert-crumb-cartoonist-provence
1•Michelangelo11•13m ago•0 comments

Samsung to Refund 20% of All Purchases in South Korea in Onuri Gift Certificates

https://en.sedaily.com/finance/2026/06/05/samsung-to-refund-20-percent-of-purchases-in-onnuri-gift
1•Markoff•16m ago•1 comments

We Shipped a Feature in 2 Days That Was Scoped for a Week (Week 4 Friday Rou

https://theaileverageweekly.com/posts/how-we-shipped-a-feature-in-2-days-that-was-scoped-for-a-we...
1•talvardi7•17m ago•0 comments

Supply chain attack alert: .github/setup.js

2•antihero•18m ago•0 comments

A faster bump allocator for rust

https://owen.cafe/posts/stumpalo/
2•414owen•21m ago•0 comments

Show HN: Concord – Discord in Terminal

https://github.com/chojs23/concord
2•n3ozz•21m ago•0 comments

Pulling a New Proof from Knuth's Fixed-Point Printer

https://research.swtch.com/fp-knuth
1•KnuthIsGod•22m ago•0 comments

TSMC working hard to meet chip demand, would 'like' to hike prices

https://www.reuters.com/world/china/tsmc-boss-upbeat-outlook-ai-boom-shows-no-sign-easing-2026-06...
3•giuliomagnifico•23m ago•0 comments

Memory Still Matters in the Age of ChatGPT

https://www.dcaulfield.com/memorisation-chatgpt
1•cauliflower99•26m ago•0 comments

Japan proposes rebuilding ageing nuclear plants to meet power demand

https://www.reuters.com/business/energy/japan-plans-rebuild-ageing-nuclear-plants-boost-power-sup...
4•leonidasrup•29m ago•0 comments

Nikon D3200 IR Conversion

https://mitxela.com/projects/d3200_ir_conversion
1•Lunar5227•30m ago•0 comments

Chat is infinite scroll for work

https://www.dtlarson.com/thousand-prompts
2•derek-larson•30m ago•0 comments

Trump directs hundreds of millions of dollars to support coal

https://www.reuters.com/legal/litigation/trump-unveil-700-million-coal-support-plan-using-emergen...
5•leonidasrup•34m ago•1 comments

Show HN: Run Llama.cpp In-Process from Java with Project Panama FFM

https://deemwar-products.github.io/mochallama/
4•deemwar•35m ago•0 comments

Debris with telemetry: cybersecurity and Kessler syndrome

https://www.thespacereview.com/article/5234/1
1•fanf2•36m ago•0 comments

Anthropic Urges Global Pause in AI Development, Flags 'Self-Improvement' Risk

https://www.wsj.com/tech/ai/anthropic-urges-global-pause-in-ai-development-flags-self-improvement...
6•andsoitis•37m ago•3 comments

Show HN: CLI for scoring OpenAPI for LLM legibility

https://github.com/jentic/jentic-api-scorecard
3•seanblanchfield•42m ago•0 comments

Clodo (Not Claudo)

https://en.wikipedia.org/wiki/CLODO
1•largolagrande•43m ago•1 comments

XML and JSON in 2026

https://www.tbray.org/ongoing/When/202x/2026/06/01/XML-and-JSON-in-2026
1•protomolecool•43m ago•0 comments

Show HN: LLM memory without context bleed; 100% precision vs. <10% vector search

https://tenureai.dev/
2•decorner•44m ago•1 comments

Entanglement Builds Space-Time. Now "Magic" Gives It Gravity

https://www.quantamagazine.org/entanglement-builds-space-time-now-magic-gives-it-gravity-20260603/
7•rbanffy•44m ago•1 comments

Magnetometers Power GPS-Free Indoor Positioning

https://spectrum.ieee.org/magnetometers-hidonix-astranav-gps-alternative
1•rbanffy•45m ago•0 comments

Tracing a powerful GNSS interference source over Europe

https://arxiv.org/abs/2606.03673
3•mimorigasaka•46m ago•0 comments

Chip Capacity Constraints Put a Governor on AI Spending Growth

https://www.nextplatform.com/ai/2026/06/05/chip-capacity-constraints-put-a-governor-on-ai-spendin...
1•rbanffy•48m ago•0 comments

ChatBrief – A Chrome extension that summarises selected text locally

https://chromewebstore.google.com/detail/chatbrief/jogecipooebeilnfjknpcggojlcfpmig
1•banke1•48m ago•0 comments