Живые скиллы для Claude Code, Gemini и Codex | Как настроить super skills для ИИ агентов
The video explains how to create 'living' or 'super' skills for AI agents like Claude Code, Gemini, and Codex that self-update based on user feedback. The presenter demonstrates how these skills collect feedback after each task, store it in log files, and periodically incorporate that feedback into the skill's core instructions. This approach reduces token consumption and ensures skills continuously improve over time.
Summary
The presenter introduces the concept of 'living skills' or 'super skills' — self-updating prompt files for AI agents that work across Claude Code, Gemini CLI, and Codex. The core problem identified is that traditional AI agent skills are static: they are created once as markdown files, placed in a folder, and never updated, meaning the agent repeats the same suboptimal behavior every time a task is run.
A secondary problem discussed is token consumption. When many skills are loaded into the main Claude.md prompt file, every agent launch consumes large amounts of tokens even for skills rarely used. The presenter's earlier solution was an 'MD register' — a separate file listing skills with brief triggers, so full instructions are only loaded when needed. Living skills extend this by also eliminating dead weight from skills that are outdated or unused.
The living skills system works as follows: after completing a task, the AI agent asks the user for feedback (e.g., which video ideas worked and which didn't). The agent logs this feedback into dedicated feedback.log files stored alongside the skill file. Then, on a scheduled basis (twice a week in the presenter's setup), the agent reads accumulated feedback and automatically rewrites the core skill instruction file to reflect learned preferences. This makes skills 'evergreen' — analogous to evergreen ads that remain effective for years.
The presenter demonstrates a live implementation with two agents: one on Claude Code and one on Codex. He sends both a 9-file documentation package about living skills and asks them to create a YouTube video idea skill. Both agents initially create only a basic skill file without the required feedback infrastructure (feedback.log, additional supporting files), demonstrating that AI agents sometimes need correction. After being prompted to fix this, both agents add the necessary feedback collection files and the system begins working as intended.
The presenter also discusses automating skill execution — scheduling agents to run tasks (like generating video ideas) at night during off-peak hours on Tuesday, Thursday, and Saturday, so reports are ready in the morning. He plans to run this across Claude Code, Codex, and Gemini simultaneously for redundancy and variety.
Key Insights
- The presenter argues that static skills loaded into Claude.md cause rapid token and limit exhaustion on every agent launch, because the agent must process all skill instructions regardless of whether those skills are used in that session.
- The presenter claims that AI systems like Claude Code, Codex, and Gemini CLI are periodically updated with new native capabilities, meaning some older skills become obsolete because the base model can now perform those tasks natively without a skill file.
- The presenter describes living skills as analogous to 'evergreen ads' from his targeting/advertising background — content that never burns out because it continuously adapts to current conditions rather than remaining fixed.
- During the live demo, both Claude Code and Codex initially failed to implement the full living skill system — they created only a basic skill file without the required feedback.log and supporting files, demonstrating that AI agents frequently need correction even when given detailed documentation.
- The presenter uses a cross-agent supervision strategy where, when working with Claude Code, he runs Codex in a background terminal as an overseer to verify whether tasks were completed correctly, and vice versa.
Topics
Transcript
[0:00] Hello, in this video we will learn how to create living skills, but either super skills as I call them for myself, it doesn’t matter where and how you have built AI Agents, it could be Gemini, it could be Claude Code, or it could be Codex. You can implement these living skills anywhere. Now I’ll tell you in more detail, but first of all, I would like to show you this picture. It seems to me that it clearly demonstrates everything that is happening now. The AI bee Codex and Claude are constantly introducing some new things, new [0:30] new opportunities, and Gemini is sitting on the edge, watching this whole battle and quietly eating, I don’t know…
Full transcript available for MurmurCast members
Sign Up to AccessMore from Игорь Зуевич
Сравнение Claude Code, Gemini и Codex — тесты на контент, анализ и изображения
The speaker is comparing AI coding assistants — Claude Code, Gemini, and Codex — by testing their ability to create image-generation agents. Each tool is being evaluated on how well it writes prompts and structures sub-agents for text-to-image and image-to-image tasks.
Экономия токенов и контекстного окна: настройка памяти нейросети – Compact сжатие контекстного окна
The transcript explains the 'Compact' command in AI agent sessions, which compresses the entire conversation history to reduce context window usage without switching sessions. It also covers related commands for full history clearing and automatic triggers for compact execution. The speaker recommends configuring automatic notifications or auto-execution when the context window reaches a certain threshold.
HR-агент на Claude Code: создаёт других сотрудников сам по запросу
The video demonstrates setting up a Telegram HR bot using Claude Code, walking through the process of creating a bot via BotFather, obtaining a Telegram user ID, and letting the code automatically generate the HR agent. The presenter shows how the system initializes itself by installing dependencies and launching the bot with minimal manual configuration.
Планировщик для ИИ агента: 50 идей и готовые файлы для Claude, Codex и Gemini
The speaker describes their use of a scheduling/routing tool called Routins, which they compare to N8N, to automate daily delivery of curated YouTube videos on topics like Gemini and Claude. The system runs autonomously, collecting videos and generating concise summaries of their content without manual intervention.
Экономия токенов и контекстного окна: настройка памяти нейросети Newchat без потери данных
The transcript explains the Newchat command, which opens a new session while pulling data from previous sessions. It works in conjunction with the checkpoint command, which can be configured to trigger automatically when Newchat is launched. The speaker recommends implementing these commands through skills rather than MD slots for a more professional workflow.