标签:#ha
找到 15430 篇相关文章
To see to it that the forces of Napoleon are driven out of Spain (1809)
https://cns.gatech.edu/CNS/GTaccountProcs.pdf
But It Happened [video]
EU-Backed Appeals Center Accidentally Confirms DSA Censorship Regime Is Broken
Ask HN: If I cancel Codex today whats the next best local inference agent?
better place to ask over /r/LocalLLaMA
Trial by Fire
New Study Reveals the Manipulative 'Dark Patterns' of AI Chatbots
Reconciling Kubernetes cost estimates with CUR / FOCUS billing data
Bill C-22 Is a Mess of the Government's Own Making
Microsoft under fire for threatening security researcher with criminal investigation
A public spat between Microsoft and an independent security researcher reopens a long-running debate over who is responsible for securing software.
Reviving Teletext for Ham Radio
Show HN: TV Explorer. Adding advanced UI to free online TV
Notes from the Mistral AI Now Summit in Paris
Liquid AI reveals 8B-A1B MoE trained on 38T
Ask HN: Any advice on how to learn good software architecture practices?
As someone who picked up coding around the time AI and agents started becoming more mainstream, I realize I don’t have much knowledge about the best way to architect applications, and I often end up going with whatever the agent recommends. I wanted to check with the community: do you have any recommendations on what I should be doing to get better at overall architecture planning? I do ask AI a lot of questions, but it would be good to have a non-AI frame of reference that I can rely on. I find
Show HN: Promptloop – create, run, and improve prompt evals from the terminal
a CLI agent for prompt evaluation loopsw
CAPTCHAs can still detect AI agents
You can just say it
Meet 'Devto-Blogger': The Hermes Agent Skill That Automatically Writes Your Technical Blog Posts
If you are an open-source maintainer, developer advocate, or builder, you know the cycle: you build an amazing tool, but writing the launch blog post, documentation, or tutorial takes hours. For the Hermes Agent Challenge , I wanted to build something that solves this exact problem. I built devto-blogger , a custom, prompt-driven skill for the brand new Hermes Agent by Nous Research. It autonomously scans any workspace or codebase, analyzes the architecture, and drafts a fully-structured, rich Markdown technical article ready for publication on DEV. 🚀 What is Hermes Agent? Hermes Agent is an open-source agentic system built by Nous Research (the lab behind the famous Hermes LLM models). Unlike basic coding copilots or simple chatbot wrappers, Hermes is: Environment-Aware : It runs sandboxed in Docker, Modal, Daytona, SSH, or locally. Connected : It interfaces with Telegram, Discord, Slack, WhatsApp, and more. Closed Learning Loop : It has persistent memory and creates custom skills on the fly from its own experience. 🔧 The Entry: The devto-blogger Skill In Hermes Agent, a "skill" is defined by a simple, declarative Markdown file ( SKILL.md ) located in the ~/.hermes/skills/ directory. By utilizing a prompt-driven skill structure, we can guide the agent's behavior globally without writing complex Python orchestration scripts. Here is the custom skill I designed and installed for this challenge: --- name : devto-blogger description : " Scan the codebase and generate a comprehensive Dev.to technical blog post draft." version : 1.0.0 author : Hermes Agent Developer license : MIT platforms : [ linux , macos , windows ] metadata : hermes : tags : [ devto , blogging , documentation , markdown , technical-writing ] related_skills : [ plan , design-md ] --- # Dev.to Technical Blogger Skill Use this skill when you need to write an in-depth technical post, review, or tutorial about the active workspace or codebase. ## Core Behavior 1. **Codebase Inspection** : Scan repository