
YanXbt
@IBuzovskyi • 2,126 subscribers
Content creator | AI Systems builder | Zero-headcount believer
Videos

HERMES AGENT RUNS MONITORING, RESEARCH, LEAD DETECTION, AND COMPETITIVE ANALYSIS ON AUTOPILOT. AND KNOWS WHEN NOT TO SPEND YOUR TOKENS. the biggest unlock most people skip: Hermes cron jobs can decide ON THEIR OWN whether the LLM should wake up. WAKE AGENT — THE $0 GATE every cron job can run a Python script first. the script checks: did anything actually change? nothing changed: → script outputs {"wakeAgent": false} → LLM stays asleep → zero tokens spent something changed: → script outputs {"wakeAgent": true} → agent wakes up and handles it three gate patterns from official docs: → file-change: compare file mtime to last run. no change? sleep. → external-flag: another process drops a ready file. no flag? sleep. → HTTP-check: ping a URL, diff the response. same as last time? sleep. real example: monitor AWS costs every hour. script pulls current spend from AWS API. no spike? agent sleeps. zero cost. costs jump 40%? agent wakes, reports to Slack, takes action through Stripe MCP. you run 20 monitoring jobs a day. 18 of them find nothing. you pay for 2. NO AGENT — PURE SCRIPT, ZERO LLM some jobs don't need reasoning at all. TLS checks. uptime pings. disk alerts. heartbeats. hermes cron edit --no-agent --script check_health.py script runs. stdout goes straight to Telegram, Discord, or Slack. no LLM involved. flip any job between modes: hermes cron edit --agent # add LLM hermes cron edit --no-agent # remove LLM free monitoring that lives inside the same ecosystem as your agent. 4 MORE USE CASES THIS UNLOCKS: COMPETITIVE ANALYSIS weekly cron with script that diffs competitor pages. agent only analyzes actual changes. updates your tracking file and PRD skill automatically. PRD AS A SKILL save product requirements as a skill, not a document. skills load on demand into fresh context. documents drift. skills stay sharp. CONTENT REPURPOSING hand a video script to the agent. it drafts X and LinkedIn posts in your voice. writes to a review folder. you approve via Telegram. LEAD DETECTION webhook monitors inbox. agent spots potential leads. drafts responses using your business context. schedules meetings from your calendar. the pattern across all of these: scripts handle the mechanical work for free. the agent only spends tokens on reasoning that requires judgment. comment CRON and I'll send you 5 ready-to-paste cron configs with wakeAgent and no_agent patterns. full Hermes SOUL.MD guide 👇
YanXbt92,207 次观看 • 3 天前

HERMES AGENT JUST GOT A RESEARCH BRAIN. connect it to NotebookLM and it becomes a 247 research system that builds knowledge over time. it resources. connects ideas across sources. uses that context in every real task. setup in 4 steps: 1. install Hermes with MCP enabled 2. download NotebookLM skill from GitHub 3. add endpoint to MCP servers in config 4. restart Hermes what your agent can now do: → query your notebooks instead of the open web → connect ideas across multiple sources → build knowledge session after session → use your curated context in every /goal → zero hallucinations from your own verified sources ask it anything — it answers from what YOU already know. full setup guide — MCP, models, use cases — in the article 👇
YanXbt182,885 次观看 • 20 天前

HERMES AGENT WITHOUT TOOLS IS A CHATBOT. WITH THEM IT BUILDS 3D TOWERS IN BLENDER, CHECKS STOCK PRICES, AND DRIVES VS CODE. tonbi JUST DROPPED THE FULL GUIDE. module 6 of his 10-part Hermes masterclass. best breakdown of the tool layer anyone has published. what you need to know: TOOLS vs SKILLS vs MCP skills = instructions (markdown, loaded into context) tools = callable functions (Python, agent emits call, Hermes executes) MCP = adapters to external systems (Blender, Stripe, Linear, Notion) every tool has three parts: → the function (does the real work) → the schema (what the model sees to decide when to call it) → the registry (makes the tool exist in the agent) the model never runs the function directly. it emits a structured request (tool name + JSON args). Hermes executes and returns the result. if the tool fails, the error goes back as JSON. the agent recovers instead of crashing. TOOL SETS CONTROL THE SURFACE hermes chat --tool-sets web # only web tools loaded. no files, no terminal. hermes chat --tool-sets safe # read-only: web search, vision, image gen. # no file writes. no terminal. no code execution. mid-session: /tools enable video /tools disable terminal or toggle in the dashboard: hermes dashboard → Skills → Tool Sets MCP SERVERS two transport types: STDIO (local subprocess) or HTTP (remote endpoint). add a server: hermes mcp # or ask: "add the MCP server for Blender" filter tools with include/exclude per server. keep only what you trust. security: → OAuth 2.1 PKCE (no long-lived tokens in config) → package scanning via api.osv. dev before launch → all MCP calls go through approval gates HERMES AS MCP SERVER hermes mcp serve exposes 10 tools via FastMCP. connect VS Code Copilot or Cursor to your running Hermes instance. BUILD YOUR OWN TOOL He built a stock price tool live: → Python function calling Finnhub API → schema with name, description, parameters → registered in tool_sets.py → agent calls it automatically when relevant any repeating API call in your workflow can become a native tool. full Hermes architecture deep-dive in the article 👇
YanXbt32,353 次观看 • 4 天前

HERMES AGENT NOW HAS AUTOMATION TEMPLATES. COPY-PASTE RECIPES FOR CRON JOBS AND WEBHOOKS. ANY MODEL. ANY DELIVERY PLATFORM. three trigger types: SCHEDULE → runs on a cadence (hourly, nightly, weekly) GITHUB EVENT → fires on PR opens, pushes, issues, CI results API CALL → any external service POSTs JSON to your endpoint all three deliver to Telegram, Discord, Slack, SMS, email, GitHub comments, or local files.Nous Research what templates ship right now: DEVELOPMENT: → nightly backlog triage (label + prioritize new issues) → automatic PR code review (posts review on every PR) → docs drift detection (finds code changes without doc updates) → dependency security audit (daily CVE scan, CVSS >= 7.0) DEVOPS: → deploy verification (smoke tests after every deploy) → alert triage (correlates alerts with recent changes) → uptime monitor (check endpoints every 30 min, notify only when something is down) RESEARCH: → competitive repo scout (monitor competitor PRs daily) → weekly AI news digest (headlines, papers, repos, industry) → daily arXiv scan (saves summaries to your notes) the webhook system is the part most people miss: hermes webhook subscribe github-pr-review \ --events "pull_request" \ --prompt "Review this PR for security, performance, and code quality." \ --skills "github-code-review" \ --deliver github_comment one command. every future PR gets reviewed automatically. the review posts as a comment directly on the PR. two cost-saving details from the docs: 1. use [SILENT] in prompts. "if nothing changed, respond with [SILENT]" prevents notification noise on monitoring jobs. 2. use script-only cron jobs for data collection. a Python script handles HTTP requests and file reads. the agent only sees stdout and applies reasoning. cheaper and more reliable than having the agent fetch. every template is copy-paste ready. every template works with any model. docs: full Hermes agent SOUL MD guide in the article 👇
YanXbt36,951 次观看 • 5 天前

HERMES AGENT + QWEN 3.6 IS CURRENTLY THE STRONGEST LOCAL SETUP MOST PEOPLE CAN RUN. Even if frontier models stopped improving tomorrow, this stack would still cover the majority of real work. Qwen 3.6 (72B and 235B) is officially supported in Hermes and brings: → Strong coding and complex refactoring → Reliable tool calling and multi-step execution → Excellent long context (128k–1M tokens) → Good structured reasoning with /goal workflows → Solid memory and session continuity Paired with Hermes memory, skills, Kanban, cron and tools — you get a fully private, self-improving agent that codes, automates and runs 24/7 without sending data anywhere. You don’t need the latest closed model to build something powerful. This is one of the strongest fully local stacks available right now — and it runs on real hardware.
YanXbt53,033 次观看 • 11 天前

HERMES AGENT NOW RUNS A FULL BUSINESS FOR $8/MONTH. CONTENT. CODE. INBOX. ALL AGENTS. EVERYTHING WHILE YOU SLEEP. one user built this in one session. zero terminal commands. browser only. the team: → content agent: finds video topics, writes first drafts, helps with animations → code builder: writes website and SaaS code → ops agent: organizes and answers email total setup cost: $1. monthly runtime: $8 VPS + cheap model API. the trick is matching model to task. frontier models (Opus 4.8, GPT-5.5) for complex /goals only. $5/million tokens. mid-tier (Claude Sonnet, Haiku, Kimiko 2.6) for daily content and research work. budget (DeepSeek V4 Flash, MiniMax 2.7, Gemma 4, Qwen 3) for cron jobs and routine. run the initial setup on Opus. switch to DeepSeek for everything after. your bill drops 90% with zero quality loss on routine work. the agent team picks up tasks from kanban. each completed task creates a skill. week 3 the same workflows run faster than week 1. full breakdown on Hermes Os in the article 👇
YanXbt30,100 次观看 • 8 天前

NVIDIA JUST FEATURED HERMES AGENT AT COMPUTEX 2026. Hermes is integrating with NVIDIA OpenShell and Microsoft security primitives for secure on-device agents on Windows. Dillon Rolnick, CEO of Nous Research: "RTX Spark and NVIDIA OpenShell give Hermes users a powerful and secure environment for agents to run and work alongside you. You realize you're buying a full-fledged assistant, not a typical laptop." RTX Spark specs: → 1 petaflop AI performance → 20-core Grace CPU (built with MediaTek) → Blackwell GPU, 6,144 CUDA cores → 5th gen Tensor Cores with FP4 precision → up to 128GB LPDDR5X unified memory, 300 GB/s → NVLink C2C chip-to-chip interconnect → runs 120B parameter LLMs locally → up to 1M token context window on device → 2x inference speed via multi-token prediction RTX Spark devices ship Fall 2026 from ASUS, Dell, HP, Lenovo, Microsoft Surface, MSI. full NVIDIA press release in the comments. full Hermes setup guide in the article 👇
YanXbt45,550 次观看 • 16 天前

HERMES AGENT CAN MAKE YOU MONEY. HERE ARE 3 SETUPS YOU CAN START TODAY. 1. automated lead generation one Hermes profile scans for gigs and contracts in your niche every morning. drafts personalized applications. sends to Telegram for your approval before sending. → SOUL. md defines your niche, skills, rate → cron job runs every morning at 8am → xurl + web search find the opportunities → you review and send from your phone 2. content at scale Hermes remembers your niche, your style, your keywords. it researches and drafts articles on a cron schedule. traffic turns into ad revenue, affiliate income, or leads. → SOUL. md defines your topics and tone → cron job drafts 1-2 articles per day → each draft gets sharper because Hermes saves what performed and what didn't as skills 3. selling AI ops to local businesses restaurants, clinics, agencies want automation. they can't build it. you can. → one Hermes profile per client, fully isolated → each client gets their own SOUL. md, memory, cron → charge $497/month per client to manage their workflows → 5 clients = $2,485/month recurring → Hermes runs the work. you keep the margin. all three share the same foundation: → separate Hermes profile per operation → SOUL. md defines the job → cron jobs run the work on schedule → Telegram approval before anything goes live → skills compound after every run full setup guide for Hermes Agent from installation to advanced use cases in the article 👇 comment OPS and I'll send you the full SOUL. md template for whichever setup fits your situation.
YanXbt29,348 次观看 • 17 天前

HERMES AGENT JUST LAUNCHED A NATIVE DESKTOP APP. macOS. WINDOWS. LINUX. DOWNLOAD, OPEN, START. Hermes Desktop is now in public preview. first demoed at Jensen's GTC keynote. native app with: → side-by-side preview pane → built-in file browser → integrated voice and TTS → image generation built in → multi-model reasoning → same data directory as CLI → switch between Desktop and CLI anytime what your agent can do from the app: → persistent memory across sessions → natural-language cron jobs → isolated subagents with zero-context-cost → browser automation and web search → 27+ messaging platforms from one gateway → 5 sandbox backends with container hardening (local, Docker, SSH, Singularity, Modal) open source. MIT license. v0.15.2. download link in the comments. full Hermes setup guide in the article 👇
YanXbt24,826 次观看 • 14 天前
没有更多内容可加载