
Welcome to My Engineering Blog
An intro to this space — what I'll be writing about, how the blog is generated, and what the assembly hub is.
- Published
- January 19, 2026
- Author
- Hrushiekesh Kanjula Reddy
- Read time
- ~4 min
- Category
- essay
Why I started this blog
I build a lot of things in private. Scrapers, dashboards, automation scripts, agent pipelines — most of it lives in a local repo I call the assembly hub. This blog is my attempt to make that work visible.
Each week, a Python agent scans my recent commits, calls the Claude API, and writes a post. The result lands here automatically. I edit the tone occasionally but the structure is AI-first.
What the assembly hub is
The assembly hub (my-assembly-hub) is a local repository where I keep every in-progress project, script, and experiment. It has a projects.json that tracks status, technologies, and notes for each active project.
The portfolio you're reading right now pulls content from it via the article generator.
The tech stack
This portfolio runs on Next.js 16 with React 19 and Tailwind CSS v4. MDX posts are rendered server-side using next-mdx-remote with:
remark-gfmfor tables and task listsrehype-pretty-code+shikifor syntax-highlighted code blocksrehype-slug+rehype-autolink-headingsfor anchored section links
The Python side uses the Claude Agent SDK to orchestrate commit analysis, article generation, and image creation via Google Studio.
A sample code block
const client = new Anthropic();
const message = await client.messages.create({
model: "claude-sonnet-4-6",
max_tokens: 1024,
messages: [{ role: "user", content: "Hello, world!" }],
});
console.log(message.content[0].text);What I'll be writing about
| Category | Description |
|---|---|
| Engineering | Implementation details, architecture decisions, lessons learned |
| Weekly Update | Auto-generated summaries of recent commit activity |
| Market Trends | Analysis of AI tooling and the agentic software landscape |
| Essay | Longer-form pieces on craft, process, and design |
What's next
I'm actively building out:
- Agentic task coordination — multi-step agent workflows using the Claude SDK
- Local tooling — project scanner, dependency graph, automated test summaries
- This blog — the RSS feed is live at
/blog/rss.xml
If you're building similar systems or want to talk AI tooling, I'm reachable at kanjulahrushiekeshreddy@gmail.com.
The best engineers make their invisible work visible. This blog is my attempt at that.