Technical depth, for the human devs
Pyclaudir under the hood:
• Python harness, runs claude code as a subprocess via local MCP, so it pipes your request to CC (next step: rewrite project for open source models, don't rely on CC)
• Agents have self-reasoning loop before responding to message
• Local MCP has many tools like sending messages, scheduling tasks, taking notes, etc
• Persistent memory: sqlite + plain markdown files
• One process per bot, run a fleet with separate pyclaudir processes
• plugins.json — you can connect external MCP servers, or turn off local MCP tools and skills
• skills/ — add agent skills
• You can turn on shell access, and your assistant will be able to write code, run it, test it — basically do everything autonomously, depending on your workflow setup
• access.json — for controlling assistant access to groups and DMs
• Runs anywhere, docker image is there already
So, the project is easily extendable, that was the goal, you can take what is done for nanoclaw, openclaw, and setup for pyclaudir.
The coolest feature: add your assistant to group for collaboration with team. The assistant remembers things, learns from you, and you manage everything from Telegram.
Pyclaudir under the hood:
• Python harness, runs claude code as a subprocess via local MCP, so it pipes your request to CC (next step: rewrite project for open source models, don't rely on CC)
• Agents have self-reasoning loop before responding to message
• Local MCP has many tools like sending messages, scheduling tasks, taking notes, etc
• Persistent memory: sqlite + plain markdown files
• One process per bot, run a fleet with separate pyclaudir processes
• plugins.json — you can connect external MCP servers, or turn off local MCP tools and skills
• skills/ — add agent skills
• You can turn on shell access, and your assistant will be able to write code, run it, test it — basically do everything autonomously, depending on your workflow setup
• access.json — for controlling assistant access to groups and DMs
• Runs anywhere, docker image is there already
So, the project is easily extendable, that was the goal, you can take what is done for nanoclaw, openclaw, and setup for pyclaudir.
The coolest feature: add your assistant to group for collaboration with team. The assistant remembers things, learns from you, and you manage everything from Telegram.
🔥7 5
Yandex launches Summer Programming School for students from Uzbekistan 🇺🇿
It's a real chance to level up your skills, work on actual tasks, and doing internship at big tech.
For whom:
• Backend devs
• Mobile devs
Format: Offline — July & August, in Moscow ✈️
Selected participants get flights and accommodation fully covered. After the summer school, you go straight to a fast-tracked internship selection at Yandex Uzbekistan.
DEADLINE for registration: May 3, 2026
Learn more, and apply here↗️
It's a real chance to level up your skills, work on actual tasks, and doing internship at big tech.
For whom:
• Backend devs
• Mobile devs
Format: Offline — July & August, in Moscow ✈️
Selected participants get flights and accommodation fully covered. After the summer school, you go straight to a fast-tracked internship selection at Yandex Uzbekistan.
DEADLINE for registration: May 3, 2026
Learn more, and apply here
Please open Telegram to view this post
VIEW IN TELEGRAM
👍19🔥2🤨2
Prompt engineering, context engineering, harness engineering — what's the difference?
Prompt engineering — the words you write to the model. "Do this, not that. Here's an example. Answer in JSON."
Context engineering — everything the model sees on a given turn. System prompt, past messages, files, tool descriptions, memory. You decide what goes in and what stays out, too much info is bad, too little is also bad.
Harness engineering — the system around the model. The loop, the tools it can call, permissions, sandboxing, what happens when something fails, how sub-agents talk to each other.
A year ago everyone obsessed over prompts. Now the real work has moved outward — building good loops, tools, and memory.
Prompt = the words
Context = what the model sees
Harness = the system it runs inside
Prompt engineering — the words you write to the model. "Do this, not that. Here's an example. Answer in JSON."
Context engineering — everything the model sees on a given turn. System prompt, past messages, files, tool descriptions, memory. You decide what goes in and what stays out, too much info is bad, too little is also bad.
Harness engineering — the system around the model. The loop, the tools it can call, permissions, sandboxing, what happens when something fails, how sub-agents talk to each other.
A year ago everyone obsessed over prompts. Now the real work has moved outward — building good loops, tools, and memory.
Prompt = the words
Context = what the model sees
Harness = the system it runs inside
👍19 8🏆6
@Rustam-Z⚡️
I'm open-sourcing pyclaudir project, AI agent harness 🔗 Check it, run it: github.com/Rustam-Z/pyclaudir Run self-evolving AI assistant. It lives in your Telegram. Remembers every conversation. Schedules its own work. Messages you first when something matters:…
And "pyclaudir" is an example of a harness
Amazon plans to hire 11000 interns in 2026
https://www.businessinsider.com/aws-ceo-amazon-ai-coding-jobs-interns-hiring-2026-5
https://www.businessinsider.com/aws-ceo-amazon-ai-coding-jobs-interns-hiring-2026-5
So, what are the Agent Skills
🔗 https://www.youtube.com/watch?v=2c29z436VUM
My TL;DR about agent skills:
First of all, agent skills != agent tools, they are different things.
Instead of 1 huge system prompt with instructions on how to do some task, now we can split it into small agent skills. Why? Agents keep making mistakes and forgetting rules when instructions get long.
So, we can build specialized workflows and instructions with agent skills. The skill can execute the code scripts if needed. It can memorize things, the skill can use agent tools.
So, agents must do things more accurately and efficiently.
How it works? When a task arrives, the model decides which skill to load, and the runtime appends that specific information to the context.
How to build own SKILLS?
READ: https://resources.anthropic.com/hubfs/The-Complete-Guide-to-Building-Skill-for-Claude.pdf?hsLang=en
More to read:
• Documentation https://agentskills.io/home
• https://platform.claude.com/docs/en/agents-and-tools/agent-skills/overview
• https://geminicli.com/docs/cli/skills
@rustamzokirov
🔗 https://www.youtube.com/watch?v=2c29z436VUM
My TL;DR about agent skills:
First of all, agent skills != agent tools, they are different things.
Instead of 1 huge system prompt with instructions on how to do some task, now we can split it into small agent skills. Why? Agents keep making mistakes and forgetting rules when instructions get long.
So, we can build specialized workflows and instructions with agent skills. The skill can execute the code scripts if needed. It can memorize things, the skill can use agent tools.
So, agents must do things more accurately and efficiently.
How it works? When a task arrives, the model decides which skill to load, and the runtime appends that specific information to the context.
How to build own SKILLS?
READ: https://resources.anthropic.com/hubfs/The-Complete-Guide-to-Building-Skill-for-Claude.pdf?hsLang=en
More to read:
• Documentation https://agentskills.io/home
• https://platform.claude.com/docs/en/agents-and-tools/agent-skills/overview
• https://geminicli.com/docs/cli/skills
@rustamzokirov
YouTube
What Are Agent Skills Really About?
Enrollment for the AI Engineering Cohort is Now Open. Check it out here: https://go.bytebytego.com/yt-ai-desc
👍12🔥1
About "Harness Engineering"
https://github.com/walkinglabs/learn-harness-engineering
Folks, learn these things to build your own agents. Spend some time over the weekend, learn, build, launch.
https://github.com/walkinglabs/learn-harness-engineering
Folks, learn these things to build your own agents. Spend some time over the weekend, learn, build, launch.
GitHub
GitHub - walkinglabs/learn-harness-engineering: Harness engineering official style beginner tutorial, from 0 to 1
Harness engineering official style beginner tutorial, from 0 to 1 - walkinglabs/learn-harness-engineering
1 19👍14
Forwarded from BuildCored
In the last webinar, over 60 people joined asking 45 questions, and here are some takeaways we decided to share.
Rustam Zokirov — Software Engineer at Google with 5 years of experience. He also worked on the face recognition field of national id security system of Uzbekistan.
• Don’t spend time preparing for the interview with companies. As soon as you are invited, you’re expected to be interviewed.
• Coding is a small part of Software Engineering.
• Software Engineers won’t disappear because of AI. It might simply transform their work or future.
• Create an opportunity for yourself. Learn how to sell yourself.
• Socializing is important. It will be even more in demand over time because of AI.
• You don’t need to study engineering to work in global engineering companies.
• Don’t have a single resume for all companies.
• Don’t include trivial projects in your resume. Projects should solve a real problem.
• Learn AI. How to give right questions to AI.
• Years of experience don’t matter as much as problem-solving skills.
• Use reverse prompting for better use of AI.
• Focus on one thing. Don’t try to accomplish multiple things at once.
@buildcored
Rustam Zokirov — Software Engineer at Google with 5 years of experience. He also worked on the face recognition field of national id security system of Uzbekistan.
• Don’t spend time preparing for the interview with companies. As soon as you are invited, you’re expected to be interviewed.
• Coding is a small part of Software Engineering.
• Software Engineers won’t disappear because of AI. It might simply transform their work or future.
• Create an opportunity for yourself. Learn how to sell yourself.
• Socializing is important. It will be even more in demand over time because of AI.
• You don’t need to study engineering to work in global engineering companies.
• Don’t have a single resume for all companies.
• Don’t include trivial projects in your resume. Projects should solve a real problem.
• Learn AI. How to give right questions to AI.
• Years of experience don’t matter as much as problem-solving skills.
• Use reverse prompting for better use of AI.
• Focus on one thing. Don’t try to accomplish multiple things at once.
@buildcored
👍27 8😁3
I would not use products that are developed by people who don't understand how to build things the right way.
Especially if it is a fintech product.
I was not sure if the post was not fake, so I checked it. And yes that is true. How come they can be so incompetent, or they just agreed to take risks earlier.
I don't think big companies that have something to lose - clients, money - would act such. Or it will have a long term negative side effect.
Especially if it is a fintech product.
I was not sure if the post was not fake, so I checked it. And yes that is true. How come they can be so incompetent, or they just agreed to take risks earlier.
I don't think big companies that have something to lose - clients, money - would act such. Or it will have a long term negative side effect.
1 27👍4🔥2😁1
My original question was: Do we really need juniors, who are/will be the middles, and who are/will be the seniors?
And how will old companies transform? How will new teams start?
With AI tools, the roles in engineering are changing one ladder up. Just redefining now.
Juniors used to write code. Now AI does that. But nobody knows yet how juniors develop judgment without doing the work themselves. What juniors are doing right now, I think, evaluating code.
Middles used to bridge execution. AI does that now too. I think, we will need them if they become technical product owners: directing AI, telling context to AI, tradeoffs, debugging what AI gets wrong. I mean they bridge business logic with execution.
But seniors become more valuable. Knowing when AI is wrong, what not to build, which decision matters long-term — that's experience. You can't generate it.
Old companies will be slow to change. New companies won't hire the traditional way. They'll launch lean — a few experts, AI doing the execution, no pyramid.
The unsolved question: if juniors never do the work, how do they become seniors? How the growth will look like?
I don't know. But recently Amazon said they will hire 11K interns. Companies need young people to adapt the business. Young people have fresh ideas, companies need them.
And how will old companies transform? How will new teams start?
With AI tools, the roles in engineering are changing one ladder up. Just redefining now.
Juniors used to write code. Now AI does that. But nobody knows yet how juniors develop judgment without doing the work themselves. What juniors are doing right now, I think, evaluating code.
Middles used to bridge execution. AI does that now too. I think, we will need them if they become technical product owners: directing AI, telling context to AI, tradeoffs, debugging what AI gets wrong. I mean they bridge business logic with execution.
But seniors become more valuable. Knowing when AI is wrong, what not to build, which decision matters long-term — that's experience. You can't generate it.
Old companies will be slow to change. New companies won't hire the traditional way. They'll launch lean — a few experts, AI doing the execution, no pyramid.
The unsolved question: if juniors never do the work, how do they become seniors? How the growth will look like?
I don't know. But recently Amazon said they will hire 11K interns. Companies need young people to adapt the business. Young people have fresh ideas, companies need them.
🔥35 9👍1
But at the same time...
Instead of arguing when AI will replace humans and take over our jobs.
Let's go, use AI and build things to solve problems we have right now.
Instead of arguing when AI will replace humans and take over our jobs.
Let's go, use AI and build things to solve problems we have right now.
1👍39 19🔥13
My team is also making a demo of new features on Android for cars
https://www.youtube.com/live/dXCCleAddEA?si=UJbk1WvF8E1eotJM
https://www.youtube.com/live/dXCCleAddEA?si=UJbk1WvF8E1eotJM
YouTube
🎬 Watch The Android Show | I/O Edition 2026
The future of Android starts now! Join the team for a first look at the exciting updates redefining Android's biggest year yet #TheAndroidShow
Learn more → https://www.android.com/io-2026
And dont forget to check out the Developers Cut for all of the latest…
Learn more → https://www.android.com/io-2026
And dont forget to check out the Developers Cut for all of the latest…
Google introduced a new Android-based laptop — googlebook.google
Android was available for phones, watches, TVs, and cars. More recently, Android became available for smart glasses 🕶️
Now Android is available for laptops.
Demo: https://youtu.be/VUthq-JuxxE?si=BiNAx7K9X0H2_oo-
Many cool things will be announced next week in Google I/O.
Android was available for phones, watches, TVs, and cars. More recently, Android became available for smart glasses 🕶️
Now Android is available for laptops.
Demo: https://youtu.be/VUthq-JuxxE?si=BiNAx7K9X0H2_oo-
Many cool things will be announced next week in Google I/O.
YouTube
Introducing Googlebook
Introducing Googlebook, the first laptop designed for Gemini Intelligence. Learn more at https://goo.gle/49HjmDD
Discover more about Android by following us on:
Instagram: https://www.instagram.com/android/
X: https://twitter.com/Android
Facebook: https…
Discover more about Android by following us on:
Instagram: https://www.instagram.com/android/
X: https://twitter.com/Android
Facebook: https…
Forwarded from The Tech
😍Как устроиться на работу в Google?
Как устроен процесс найма в Google, что действительно важно на интервью и как попасть в Big Tech — личный опыт Software Engineer, который прошел путь от стажировок до работы в Android Automotive OS в Германии. Читайте больше в нашем интервью.👇
https://the-tech.kz/kak-ustroitsya-na-rabotu-v-google-opyt-rustama-zokirova/
Больше на @thetechkz
Как устроен процесс найма в Google, что действительно важно на интервью и как попасть в Big Tech — личный опыт Software Engineer, который прошел путь от стажировок до работы в Android Automotive OS в Германии. Читайте больше в нашем интервью.👇
https://the-tech.kz/kak-ustroitsya-na-rabotu-v-google-opyt-rustama-zokirova/
Больше на @thetechkz
THE TECH
Как устроиться на работу в Google: опыт Рустама Зокирова - THE TECH
Как устроен процесс найма в Google, что действительно важно на интервью и как попасть в Big Tech — личный опыт Software Engineer, который прошел путь от
New Announcements at Google I/0
I will share what updates we have for engineers.
• Antigravity 2.0 = coding IDE (antigravity.google)
• Antigravity CLI = same as claude code cli (gemini CLI will be deprecated)
• Antigravity SDK = for building custom agents
• new Gemini 3.5 model, comparable to Opus 4.7
• Google AI Ultra plan now 100$ (previously 200$ mo), besides 20x AI usage, you get 20TB of storage, etc
What I can say is this: I have been using an internal version of Antigravity 2.0, and it is working very well. It is fast and reliable, and the agent produces working solutions similar to Claude Code. For the tasks I have been working on, it has been performing perfectly. I have written 0 lines of code on my own in the last month, instead, I have been reviewing plans and verifying that things work.
And Google is unifying all coding tools onto Antigravity. There will be only Antigravity from now on. Antigravity IDE, CLI, SDK
I will share what updates we have for engineers.
• Antigravity 2.0 = coding IDE (antigravity.google)
• Antigravity CLI = same as claude code cli (gemini CLI will be deprecated)
• Antigravity SDK = for building custom agents
• new Gemini 3.5 model, comparable to Opus 4.7
• Google AI Ultra plan now 100$ (previously 200$ mo), besides 20x AI usage, you get 20TB of storage, etc
What I can say is this: I have been using an internal version of Antigravity 2.0, and it is working very well. It is fast and reliable, and the agent produces working solutions similar to Claude Code. For the tasks I have been working on, it has been performing perfectly. I have written 0 lines of code on my own in the last month, instead, I have been reviewing plans and verifying that things work.
And Google is unifying all coding tools onto Antigravity. There will be only Antigravity from now on. Antigravity IDE, CLI, SDK