Loading...
Loading...
Expert guide for Nous Research's Hermes Agent framework with self-improving learning loops, three-layer memory, and automatic Skill creation
npx skill4agent add aradotso/ai-agent-skills hermes-agent-frameworkSkill by ara.so — AI Agent Skills collection.
# Clone the repository
git clone https://github.com/NousResearch/hermes-agent.git
cd hermes-agent
# Install dependencies
pip install -r requirements.txt
# Or use poetry
poetry install
# Set up environment variables
cp .env.example .env
# Edit .env with your API keys.env# Required: Your LLM provider API key
OPENAI_API_KEY=your_key_here
# Or for Anthropic
ANTHROPIC_API_KEY=your_key_here
# Optional: Model selection
HERMES_MODEL=gpt-4-turbo
# or
HERMES_MODEL=claude-3-5-sonnet-20241022
# Memory configuration
HERMES_MEMORY_PATH=~/.hermes/memory
HERMES_ENABLE_SEMANTIC_MEMORY=true
# Skill storage
HERMES_SKILL_PATH=~/.hermes/skillsfrom hermes_agent import HermesAgent, MemoryConfig
# Configure memory layers
memory_config = MemoryConfig(
episodic_enabled=True, # Conversation history
semantic_enabled=True, # Knowledge base
procedural_enabled=True, # Skills/procedures
memory_path="~/.hermes/memory"
)
agent = HermesAgent(
model="gpt-4-turbo",
memory_config=memory_config
)from hermes_agent import HermesAgent, LearningConfig
learning_config = LearningConfig(
enable_auto_learning=True,
reflection_interval=5, # Reflect every 5 interactions
skill_creation_threshold=3, # Create skill after 3 similar tasks
feedback_sensitivity=0.7
)
agent = HermesAgent(
model="gpt-4-turbo",
learning_config=learning_config
)
# The agent will automatically:
# 1. Detect patterns in user requests
# 2. Create Skills for repeated tasks
# 3. Improve existing Skills based on feedback
# 4. Store knowledge in semantic memoryfrom hermes_agent import HermesAgent
# Initialize agent
agent = HermesAgent(
model="gpt-4-turbo",
api_key=os.getenv("OPENAI_API_KEY")
)
# Single interaction
response = agent.chat("Help me analyze this Python code for bugs")
print(response)
# Conversational context is maintained
response = agent.chat("Now optimize it for performance")
print(response)# Start interactive mode
python -m hermes_agent
# Or use the CLI directly
hermes chat "What's the weather today?"
# Load specific Skill
hermes chat --skill code-reviewer "Review my Python script"
# Show agent's memory
hermes memory list
# Show available Skills
hermes skills list
# Export learned knowledge
hermes memory export --format json --output knowledge.jsonfrom hermes_agent import Skill, SkillParameter
# Define a custom Skill
code_review_skill = Skill(
name="code_reviewer",
description="Reviews code for bugs, style, and best practices",
parameters=[
SkillParameter(
name="code",
type="string",
description="The code to review",
required=True
),
SkillParameter(
name="language",
type="string",
description="Programming language",
required=False,
default="python"
)
],
instructions="""
1. Analyze the code for syntax errors
2. Check for common bugs and anti-patterns
3. Review style and formatting
4. Suggest performance improvements
5. Provide specific line-by-line feedback
""",
examples=[
{
"input": {"code": "def foo():\n x=1\n return x", "language": "python"},
"output": "Style: Use spaces around operators. Function name could be more descriptive."
}
]
)
# Register Skill with agent
agent.register_skill(code_review_skill)
# Use the Skill
result = agent.execute_skill("code_reviewer", {
"code": "def calculate(a,b):\n return a+b",
"language": "python"
})
print(result)# ~/.hermes/skills/code-reviewer.yaml
name: code_reviewer
description: Reviews code for bugs, style, and best practices
version: 1.0.0
parameters:
- name: code
type: string
required: true
description: The code to review
- name: language
type: string
required: false
default: python
description: Programming language
instructions: |
1. Analyze the code for syntax errors
2. Check for common bugs and anti-patterns
3. Review style and formatting
4. Suggest performance improvements
5. Provide specific line-by-line feedback
examples:
- input:
code: "def foo():\n x=1\n return x"
language: python
output: "Style: Use spaces around operators. Function name could be more descriptive."
metadata:
author: HuaShu
tags: [code, review, python]
auto_improve: trueagent.load_skill_from_file("~/.hermes/skills/code-reviewer.yaml")from hermes_agent import HermesAgent
from hermes_agent.tools import (
WebSearchTool,
CodeExecutorTool,
FileSystemTool,
APICallerTool
)
agent = HermesAgent(model="gpt-4-turbo")
# Enable built-in tools
agent.enable_tool(WebSearchTool())
agent.enable_tool(CodeExecutorTool(
allowed_languages=["python", "javascript"],
timeout=30
))
agent.enable_tool(FileSystemTool(
allowed_paths=["/home/user/projects"],
read_only=False
))
# Agent can now use these tools automatically
response = agent.chat("Search for Python best practices and create a summary file")from hermes_agent import Tool, ToolParameter
class DatabaseQueryTool(Tool):
name = "database_query"
description = "Executes SQL queries against the database"
parameters = [
ToolParameter(
name="query",
type="string",
description="SQL query to execute",
required=True
),
ToolParameter(
name="database",
type="string",
description="Database name",
required=False,
default="main"
)
]
def execute(self, query: str, database: str = "main"):
# Your database logic here
import sqlite3
conn = sqlite3.connect(f"{database}.db")
cursor = conn.execute(query)
results = cursor.fetchall()
conn.close()
return results
# Register custom tool
agent.enable_tool(DatabaseQueryTool())
# Agent can now use it
response = agent.chat("Query the users table for active users")from hermes_agent import HermesAgent
agent = HermesAgent(model="gpt-4-turbo")
# Episodic memory (conversation history)
conversation_history = agent.memory.episodic.get_recent(limit=10)
for entry in conversation_history:
print(f"User: {entry.user_message}")
print(f"Agent: {entry.agent_response}")
# Semantic memory (knowledge base)
knowledge = agent.memory.semantic.search("Python best practices")
for item in knowledge:
print(f"Topic: {item.topic}")
print(f"Content: {item.content}")
print(f"Source: {item.source}")
# Procedural memory (Skills)
skills = agent.memory.procedural.list_skills()
for skill in skills:
print(f"Skill: {skill.name} - {skill.description}")
print(f"Used {skill.usage_count} times")# Add to semantic memory manually
agent.memory.semantic.add(
topic="Python Type Hints",
content="Type hints improve code readability and enable static analysis...",
source="user_input",
tags=["python", "typing"]
)
# Clear episodic memory (conversation history)
agent.memory.episodic.clear()
# Export all memory
agent.memory.export_all(output_path="./memory_backup")
# Import memory from backup
agent.memory.import_all(input_path="./memory_backup")from hermes_agent import HermesAgent, AgentOrchestrator
# Create specialized agents
code_agent = HermesAgent(
name="CodeExpert",
model="gpt-4-turbo",
system_prompt="You are a code expert specializing in Python and JavaScript"
)
review_agent = HermesAgent(
name="CodeReviewer",
model="gpt-4-turbo",
system_prompt="You are a code reviewer focusing on quality and best practices"
)
doc_agent = HermesAgent(
name="DocWriter",
model="gpt-4-turbo",
system_prompt="You write clear, comprehensive documentation"
)
# Orchestrate agents
orchestrator = AgentOrchestrator(
agents=[code_agent, review_agent, doc_agent],
coordination_strategy="sequential" # or "parallel", "hierarchical"
)
# Execute workflow
result = orchestrator.execute_workflow(
task="Create a Python function to parse CSV files, review it, and write docs",
workflow=[
{"agent": "CodeExpert", "task": "Write the function"},
{"agent": "CodeReviewer", "task": "Review the code"},
{"agent": "CodeExpert", "task": "Apply review feedback"},
{"agent": "DocWriter", "task": "Write documentation"}
]
)
print(result.final_output)from hermes_agent import HermesAgent, Feedback
agent = HermesAgent(model="gpt-4-turbo")
# Execute task
response = agent.chat("Create a REST API client for GitHub")
# Provide feedback
feedback = Feedback(
interaction_id=response.interaction_id,
rating=4, # 1-5 scale
comments="Good structure but missing error handling",
corrections={
"missing": ["try-except blocks", "timeout configuration"],
"suggestions": ["Add retry logic", "Use requests session"]
}
)
agent.provide_feedback(feedback)
# Agent will learn and improve future responses
# Next similar task will incorporate this feedbackfrom hermes_agent import HermesAgent, LearningRule
# Define custom learning rule
class CodeQualityRule(LearningRule):
def should_trigger(self, interaction):
return "code" in interaction.user_message.lower()
def extract_knowledge(self, interaction, feedback):
if feedback.rating >= 4:
return {
"topic": "code_patterns",
"content": interaction.agent_response,
"tags": ["approved", "high_quality"]
}
return None
def should_create_skill(self, pattern_count):
# Create skill after 2 successful code tasks
return pattern_count >= 2
agent = HermesAgent(model="gpt-4-turbo")
agent.add_learning_rule(CodeQualityRule())from hermes_agent import (
HermesAgent,
MemoryConfig,
LearningConfig,
ModelConfig,
ToolConfig
)
# Model configuration
model_config = ModelConfig(
provider="openai",
model="gpt-4-turbo",
temperature=0.7,
max_tokens=4000,
api_key=os.getenv("OPENAI_API_KEY")
)
# Memory configuration
memory_config = MemoryConfig(
episodic_enabled=True,
episodic_max_size=1000,
semantic_enabled=True,
semantic_embedding_model="text-embedding-3-small",
procedural_enabled=True,
memory_path="~/.hermes/memory",
auto_save=True,
save_interval=60 # seconds
)
# Learning configuration
learning_config = LearningConfig(
enable_auto_learning=True,
reflection_interval=5,
skill_creation_threshold=3,
feedback_sensitivity=0.7,
auto_improve_skills=True,
learning_rate=0.1
)
# Tool configuration
tool_config = ToolConfig(
enabled_tools=["web_search", "code_executor", "file_system"],
tool_timeout=30,
allow_dangerous_tools=False
)
# Create agent with full configuration
agent = HermesAgent(
name="MyAssistant",
model_config=model_config,
memory_config=memory_config,
learning_config=learning_config,
tool_config=tool_config,
system_prompt="You are a helpful AI assistant that learns and improves over time."
)hermes_config.yamlagent:
name: MyAssistant
system_prompt: "You are a helpful AI assistant that learns and improves over time."
model:
provider: openai
model: gpt-4-turbo
temperature: 0.7
max_tokens: 4000
api_key_env: OPENAI_API_KEY
memory:
episodic:
enabled: true
max_size: 1000
semantic:
enabled: true
embedding_model: text-embedding-3-small
procedural:
enabled: true
path: ~/.hermes/memory
auto_save: true
save_interval: 60
learning:
auto_learning: true
reflection_interval: 5
skill_creation_threshold: 3
feedback_sensitivity: 0.7
auto_improve_skills: true
learning_rate: 0.1
tools:
enabled:
- web_search
- code_executor
- file_system
timeout: 30
allow_dangerous: falsefrom hermes_agent import HermesAgent
agent = HermesAgent.from_config_file("hermes_config.yaml")from hermes_agent import HermesAgent
from hermes_agent.tools import WebSearchTool, FileSystemTool
# Create knowledge assistant
assistant = HermesAgent(
name="KnowledgeAssistant",
model="gpt-4-turbo",
system_prompt="""You are a knowledge assistant that:
1. Researches topics using web search
2. Stores learned knowledge in semantic memory
3. Creates summaries and documentation
4. Answers questions based on accumulated knowledge
"""
)
assistant.enable_tool(WebSearchTool())
assistant.enable_tool(FileSystemTool(allowed_paths=["./knowledge"]))
# Research and learn
response = assistant.chat(
"Research Python async/await patterns and create a summary document"
)
# Later, retrieve knowledge
response = assistant.chat("What are the best practices for async Python?")
# Agent uses semantic memory to answer without re-searchingfrom hermes_agent import HermesAgent
from hermes_agent.tools import CodeExecutorTool, FileSystemTool, GitTool
dev_agent = HermesAgent(
name="DevAutomation",
model="gpt-4-turbo"
)
dev_agent.enable_tool(CodeExecutorTool(allowed_languages=["python"]))
dev_agent.enable_tool(FileSystemTool(allowed_paths=["./project"]))
dev_agent.enable_tool(GitTool())
# Automated development workflow
workflow_prompt = """
1. Create a Python FastAPI application with user authentication
2. Write unit tests with pytest
3. Run the tests
4. Fix any failures
5. Commit the working code
6. Generate API documentation
"""
result = dev_agent.chat(workflow_prompt)
# Agent will:
# - Create files
# - Write code
# - Execute tests
# - Iterate on failures
# - Use git for version control
# - Generate docsfrom hermes_agent import HermesAgent, AgentOrchestrator
# Research agent
researcher = HermesAgent(
name="Researcher",
model="gpt-4-turbo",
system_prompt="Research topics thoroughly and gather facts"
)
# Writer agent
writer = HermesAgent(
name="Writer",
model="gpt-4-turbo",
system_prompt="Write engaging, well-structured content"
)
# Editor agent
editor = HermesAgent(
name="Editor",
model="gpt-4-turbo",
system_prompt="Edit for clarity, grammar, and style"
)
orchestrator = AgentOrchestrator(
agents=[researcher, writer, editor],
coordination_strategy="sequential"
)
# Content pipeline
result = orchestrator.execute_workflow(
task="Create a blog post about AI Agents",
workflow=[
{"agent": "Researcher", "task": "Research AI Agents, find recent developments"},
{"agent": "Writer", "task": "Write 1000-word blog post using research"},
{"agent": "Editor", "task": "Edit for publication"},
{"agent": "Writer", "task": "Apply edits and finalize"}
]
)
print(result.final_output)# Check learning config
agent = HermesAgent(
model="gpt-4-turbo",
learning_config=LearningConfig(
enable_auto_learning=True, # Must be True
reflection_interval=5
)
)
# Verify memory is enabled
print(agent.memory.config.procedural_enabled) # Should be True
# Check logs
import logging
logging.basicConfig(level=logging.DEBUG)# Lower the threshold
agent.learning_config.skill_creation_threshold = 2
# Manually trigger skill creation
agent.create_skill_from_pattern(
pattern_name="code_review",
interactions=[id1, id2, id3]
)# Ensure auto_save is enabled
agent.memory.config.auto_save = True
agent.memory.config.save_interval = 60
# Or manually save
agent.memory.save_all()
# Check memory path exists
import os
print(os.path.exists(agent.memory.config.memory_path))# Add retry logic
from hermes_agent import RetryConfig
agent = HermesAgent(
model="gpt-4-turbo",
retry_config=RetryConfig(
max_retries=3,
backoff_factor=2,
respect_rate_limits=True
)
)# Increase timeout
from hermes_agent.tools import CodeExecutorTool
agent.enable_tool(CodeExecutorTool(
timeout=60, # seconds
max_output_length=10000
))from hermes_agent import HermesAgent
agent = HermesAgent(
model="gpt-4-turbo",
debug=True # Enables verbose logging
)
# Access internal state
print(agent.debug_info())
print(agent.memory.stats())
print(agent.learning.stats())import logging
# Configure Hermes logging
logging.getLogger("hermes_agent").setLevel(logging.DEBUG)
# Log to file
file_handler = logging.FileHandler("hermes.log")
file_handler.setLevel(logging.DEBUG)
logging.getLogger("hermes_agent").addHandler(file_handler)