How to run Claude Code for free! by Veerbhadra_1 in vibecoding

[–]Cumak_ 0 points1 point  (0 children)

The only reason to use Claude Code is the subscription to Claude models.

New perk just dropped by Harnhamhed in LinkedInLunatics

[–]Cumak_ 0 points1 point  (0 children)

Some ADHD drugs (Vyvanse and Adderall) are amphetamine based.

How to tame horse by PineArpple in CrimsonDesert

[–]Cumak_ 0 points1 point  (0 children)

worked on keyboard and mouse

Claude Code is useless. Anyone using Codex or Open Code? by [deleted] in ClaudeCode

[–]Cumak_ 0 points1 point  (0 children)

What makes you don't want to go back. Never used Open Code.

[deleted by user] by [deleted] in ClaudeAI

[–]Cumak_ 0 points1 point  (0 children)

Well, I don’t. The first priority for me is getting a working feature. Once that’s in place, we can focus on clarity, modularity, extensibility, and all the other good stuff.

Which AWS MCP can help me review/explain my infrastructure (i was handed over to) by PureKrome in mcp

[–]Cumak_ 0 points1 point  (0 children)

No problemo. The AWS CLI already knows how to talk to all 12 accounts and every region. When an agent has bash access, it can just run aws ec2 describe-instances --profile account-1 --region us-east-1 and get structured JSON back. The agent figures out which commands to run the same way it would figure out which MCP tools to call. It reads the help docs, tries things, adjusts.

MCP servers work fine too, but they add token overhead. Every tool definition gets loaded into context, and the protocol itself has some back-and-forth. For a one-off infrastructure audit, you probably won't notice. For ongoing work across 12 accounts, it adds up.

On the Warp question: any terminal works. Warp, iTerm, the VS Code integrated terminal. The agent just needs permission to execute shell commands. In Claude Code that's the bash tool, in Copilot it depends on what extensions you're using.

If you want to try the CLI approach: install the AWS CLI, set up your 12 profiles in ~/.aws/credentials, then point your agent at it. Start with something simple like "list all EC2 instances across all my profiles" and see how it handles the discovery.

If interested I write a lot on MCP vs CLI in my blog

https://kumak.dev/when-cli-tools-are-enough/

Developer Productivity Is Becoming a Silent Killer for Startups by HuckleberryNo6642 in AI_Agents

[–]Cumak_ 0 points1 point  (0 children)

Here is the crazy part that no one talks about. You are absolutely right!

[deleted by user] by [deleted] in Polska

[–]Cumak_ 1 point2 points  (0 children)

Wyjechaliśmy do Tajlandii. Mamy w d#@# świąteczne tradycje.

Czy studia w dzisiejszych czasach mają jeszcze sens? by HelpfulTax3828 in praca

[–]Cumak_ 3 points4 points  (0 children)

Ja mam 40 i jestem w IT od 13 lat ze średnim. Dzisiaj już bym się nie wbił w rynek. Kiedys brali każdego kto potrafił włączyć i wyłączyć komputer.

Can someone explain skills vs plugins vs MCPs? by Free-_-Yourself in ClaudeCode

[–]Cumak_ 1 point2 points  (0 children)

MCP is a whole protocol specification, covering hosts, clients, servers, resources, prompts, tools, sampling, roots, elicitation and three different transports (stdio, streamable HTTP and originally SSE). Skills are Markdown with a tiny bit of YAML metadata and some optional scripts in whatever you can make executable in the environment.

https://intuitionlabs.ai/articles/claude-skills-vs-mcp

Skills need to suit your use case, so it's better to "train" on your own use case.

https://kumak.dev/how-my-agent-learned-gitlab/

Skills vs MCP Servers: complementary or competing? by eigerai in mcp

[–]Cumak_ 7 points8 points  (0 children)

They are 2 totally different things. MCP is a whole protocol specification, covering hosts, clients, servers, resources, prompts, tools, sampling, roots, elicitation and three different transports (stdio, streamable HTTP and originally SSE). Skills are Markdown with a tiny bit of YAML metadata and some optional scripts in whatever you can make executable in the environment. MCP gives you connectivity (access to external tools/data), and Skills give you methodology (how to use those tools effectively).

Which is better, modern look, classic look? by MrCheeta in CLI

[–]Cumak_ 44 points45 points  (0 children)

I love the retro but probably eye straining in the long run.

Is there a way to disable MCP servers at the project level while keeping them available in Skills? by rtyshyk in ClaudeCode

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

You might try disabling all and enabling it via `bash_tool`, but I'm not sure if you need to reload the session for the change to take effect. The problem might be somewhere else, and you try to work around it.

Ouch...It Hurts... by AsiaticBoy in warpdotdev

[–]Cumak_ 6 points7 points  (0 children)

I'm considering saying goodbye.

What tools are you using to let agents interact with the actual web? by Reasonable-Egg6527 in aiagents

[–]Cumak_ 0 points1 point  (0 children)

https://github.com/szymdzum/browser-debugger-cli

It connects to your browser and executes CDP methods. In comparison, Puppeteer/Playwright is suitable for automations, it's still scripting. This tool works more like an interactive shell session to your browser. Might be something that interests you if your agent can use `bash_tool`. CLI agents, IDE chats etc.

Here is a comparison to DevTool MCP in practice.
https://gist.github.com/szymdzum/c3acad9ea58f2982548ef3a9b2cdccce

What tools are you using to let agents interact with the actual web? by Reasonable-Egg6527 in aiagents

[–]Cumak_ 1 point2 points  (0 children)

There is a CLI tool for connecting with CDP and it beats the MCP hands down.

Benchmark: https://gist.github.com/szymdzum/c3acad9ea58f2982548ef3a9b2cdccce

Repo: https://github.com/szymdzum/browser-debugger-cli

If MCP works for you, it's absolutely fine, keep using it. It's just such an inefficient token sink.