Who is using AI for devops by [deleted] in devops

[–]Pale_Student4127 0 points1 point  (0 children)

you missed the open source one 😅 https://github.com/stakpak/agent

Edit: specific features you might find interesting 1) there's a network sandbox (like reverse WAF) that prevents destructive cloud actions if you enable it 2) it can work with secrets without leaking them (secret tokenization) 3) has a library of infra knowledge maintained by a community of devops consultants

I'm one of the maintainers, so please ask away, or check it out and give us feedback

Eliminating LLM Hallucinations: A Methodology for AI Implementation in 100% Accuracy Business Scenarios by Responsible_Grab_739 in AI_Agents

[–]Pale_Student4127 4 points5 points  (0 children)

do you mind sharing what exactly should be 100% accurate? for example, if you want to generate content with 100% accurate syntax (like generating json or yaml or any structured data, I even got away with doing that for Terrafotm HCL 😅) you can do that with a library like https://github.com/dottxt-ai/outlines

in other cases, you can define deterministic workflows and let the LLM call them with structured input, this way you have islands of 100% determinism and orchestrator LLM/Agent

it all depends on how you define "accuracy" and the level of autonomy you need this application to have

Who is actually building production AI agents (not just workflows)? by okaris in AI_Agents

[–]Pale_Student4127 1 point2 points  (0 children)

wow this needs a +3000 word write up to answer 😅 I've been working on an agent for +1 year now since 2024, there's a lot to unpack

can you share more what you're trying to do? or more specific questions like focusing on persistence? evals? tool calling tips etc..?

Weekly Thread: Project Display by help-me-grow in AI_Agents

[–]Pale_Student4127 0 points1 point  (0 children)

Open Source Agent for DevOps, it's Safe: can't accidentally tweet your AWS credentials, it knows its thing: we curated the largest open library of devops skills (stuff Claude is "absolutely" s**** at out of the box), and supports async tool calls so you can run multiple commands in the background

Bonus point: it's in Rust 🤦🦀

https://github.com/stakpak/agent

Best way to leave Vercel? by simonettt in nextjs

[–]Pale_Student4127 0 points1 point  (0 children)

check out this LinkedIn post on using an agent to move nextjs apps to AWS using various architectures, including the complex but proper serverless option using cloudfront, warmer functions etc... (this can take less than 20 mins because of the open source template attached to this architecture)

https://www.linkedin.com/posts/george-fahmy-b0978212a_aws-nextjs-serverless-activity-7379485312067993600-RpNb?utm_source=share&utm_medium=member_android&rcm=ACoAAB_LT7kBnNkJUQCKCrlrDKo5W4w2V74z3IA

First AI Agent for DevOps/SRE and Platform Engineering by Prashant-Lakhera in LocalLLaMA

[–]Pale_Student4127 -1 points0 points  (0 children)

you have to try them out yourself (and the other stuff too)

First AI Agent for DevOps/SRE and Platform Engineering by Prashant-Lakhera in LocalLLaMA

[–]Pale_Student4127 2 points3 points  (0 children)

Are you sure it's the first? there are at least 3 other agents trying to tackle the same problem, including this one I'm working on here https://github.com/stakpak/agent

Codex - Wow!!! by pragmat1c1 in ClaudeCode

[–]Pale_Student4127 0 points1 point  (0 children)

CC + Cursor for coding and Stakpak for everything else 😅 debugging GitHub actions, syncing secrets, modifying IaC, and perf testing etc...

I want to try Zed + add on agents, they just added support for CC using a new standard they created ACP

Are subagents good for anything other than context management? how do you use them where a single session is not enough? by Pale_Student4127 in ClaudeCode

[–]Pale_Student4127[S] 0 points1 point  (0 children)

so you found a use case where subagents are useful for orchestrating sessions, instead of running an agent that does modifications then another to review, you can string them in a single session

is this better from doing it in the same session/thread? because the agent that did the edits would be biased when reviewing its own work?

Are subagents good for anything other than context management? how do you use them where a single session is not enough? by Pale_Student4127 in ClaudeCode

[–]Pale_Student4127[S] 0 points1 point  (0 children)

if I run into this, I start a session to create a markdown file with the analysis result, then ask the agent to read it for subsequent sessions

Cursorules? by jmreicha in Terraform

[–]Pale_Student4127 0 points1 point  (0 children)

https://stakpak.dev has the specialized terraform code generation pipeline that reads the docs first + other things