Вайб-кодинг
Авторский канал по ВАЙБ КОДИНГУ Ссылка для друзей: https://t.me/+ll3pbl442dNkZmYy Cотрудничество: @devmangx РКН: https://clck.ru/3RRVfk
Show more📈 Analytical overview of Telegram channel Вайб-кодинг
Channel Вайб-кодинг (@vibecoding_tg) in the Russian language segment is an active participant. Currently, the community unites 50 762 subscribers, ranking 2 583 in the Technologies & Applications category and 12 234 in the Russia region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 50 762 subscribers.
According to the latest data from 22 July, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 1 111 over the last 30 days and by 57 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 32.18%. Within the first 24 hours after publication, content typically collects 23.12% reactions from the total number of subscribers.
- Post reach: On average, each post receives 16 330 views. Within the first day, a publication typically gains 11 735 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 6.
- Thematic interests: Content is focused on key topics such as claude, codex, llm, api, github.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“Авторский канал по ВАЙБ КОДИНГУ
Ссылка для друзей: https://t.me/+ll3pbl442dNkZmYy
Cотрудничество: @devmangx
РКН: https://clck.ru/3RRVfk”
Thanks to the high frequency of updates (latest data received on 23 July, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.
AGENTS.md, когда он начинает путаться с командами в песочнице, чтобы заставить его спрашивать разрешение.
(Я устал разбираться, почему он не может добавить или закоммитить файлы 🚑)
---
Если команда в шелле падает с ошибкой failed in sandbox, используй инструмент запроса разрешения (with_escalated_permissions), чтобы сначала спросить у пользователя одобрения, а потом пробовать снова.
не читать блоги и не смотреть видео, а писать код и собирать всё с нуля.Проекты уже собрали свыше 18 тысяч звёзд на GitHub.
from google import genai
import wave
client = genai.Client()
response = client.models.generate_content(
model="gemini-2.5-flash-preview-tts",
contents="Say cheerfully: Good morning to all vibe coders!",
config={
"response_modalities": ["AUDIO"],
"speech_config": {
"voice_config": {
"prebuilt_voice_config": {
"voice_name": "Kore", # 30 voice options
}
}
}
}
)
data = response.candidates[0].content.parts[0].inline_data.data
with wave.open("output.wav", "wb") as wf:
wf.setnchannels(1)
wf.setsampwidth(2)
wf.setframerate(24000)
wf.writeframes(data)
доки по созданию речи: кликCLAUDE.md и AGENTS.md в одном проекте — не парься со скриптами и симлинками.
Раньше нужно было писать bash-скрипт, чтобы найти оба файла и связать их, но теперь в этом нет смысла.
Anthropic рекомендует просто подключать AGENTS.md прямо внутри CLAUDE.md. Чувак сделал инструмент, который делает это сам — без симлинков и с поддержкой отдельных правил для Claude. Легкотня.
https://github.com/iannuttall/source-agents