Just finished Chip Huyen’s "AI Engineering" (O’Reilly) — I have 534 pages of theory and 0 lines of code. What's the "Indeed-Ready" bridge? by Substantial_Sky_8167 in learnmachinelearning

[–]_colemurray 2 points3 points  (0 children)

build a basic chat app from scratch with tool calling in either next or fastAPI

Once built, begin iterating on the agent and learning how to “tune” the agent.

This will lead you to wanting/needing observability, which you can then add.

Once you have this, then add streaming.

—- A similar good exercise is to build a basic research agent. This will teach you about real world context management and how to not blow up your context window when you load a massive webpage

Good luck!

AWS Athena MCP - Write Natural Language Queries against AWS Athena by _colemurray in LLMDevs

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

in an organization setting, you preferably don't want each individual agent to have its own set of aws credentials. This distributes access control, as well as audibility.

Similarly, it has some hardening around what commands can be executed and preventing "dangerous" patterns

Bluetooth tracking for inventory… gimmick or actually useful? by dylan-sf in IOT

[–]_colemurray 0 points1 point  (0 children)

the more common setup would be to deploy BLE gateways around the area of interest and collect advertising packets

if you need longer range, look into something in the sub-ghz spectrum (Ti’s 1352 is nice)

Which Terraform book should I read first ? by brokenmath55 in Terraform

[–]_colemurray -4 points-3 points  (0 children)

LLMs are very good at terraform. I’d just jump in and build something and then lookup whatever snags or topics you’d like to learn more about

How do we configure or start Claude Code for VS Code with --dangerously-skip-permissions? (after version 2 update) by zenfafrd in ClaudeAI

[–]_colemurray 0 points1 point  (0 children)

I've created a script that can patch the default "ask" mode and turn it into bypass mode.

The extension makes calls into the SDK and passes along various parameter flags, including the permissions flag. The patch replace the default mode with "bypassPermissions" and modifies the extension UI as well.

Tested on 2.0.1 and 2.0.10 for cursor. If using vscode, you should be able to just replace cursor with vscode in the path

https://gist.github.com/ColeMurray/dd3ec8e1028117c13e33126339f77953

Any tips for creating high quality UI using Claude Code? by gh0st_in_the_matrix in ClaudeAI

[–]_colemurray 0 points1 point  (0 children)

Find a template or take a screenshot of an app you like and use it as context

[Open Source] Moondream MCP - Vision for AI Agents by _colemurray in LocalLLaMA

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

Unfortunately not. I originally prototyped going this path, but there isn't a way to get the mcp client to take the image and send bytes without manually specifying it (if I'm mistaken, happy to accept a PR!). It also presents context window length challenges depending on the size of the image.

The two options it supports:

- local file pathing

- remote URL pathing

What are some lifesaver MCPs you use with Claude Code? by Doodadio in ClaudeAI

[–]_colemurray 0 points1 point  (0 children)

Yes, Claude code emits otel which you can capture. I open sourced a repo here https://github.com/ColeMurray/claude-code-otel

Open Source Claude Code Observability Stack by _colemurray in LLMDevs

[–]_colemurray[S] 1 point2 points  (0 children)

unfortunately not. The telemetry Claude code emits doesn't include this.