v2.7.3
July 14, 2026
Manage Redmine issues, comments, and time logs from your agents
New RedmineTools lets an agent work directly in Redmine, the open source project tracker. It can find and read issues, create and update them, leave comments, and log time against them.
from agno.knowledge.knowledge import Knowledge
from agno.vectordb.valkey import ValkeyDB
from agno.vectordb.search import SearchType
vector_db = ValkeyDB(
index_name="agno_docs",
host="localhost",
port=6379,
search_type=SearchType.vector, # or SearchType.keyword
)
knowledge = Knowledge(vector_db=vector_db)
If your team lives in Redmine, a lot of tracker upkeep is the kind of small, repetitive work nobody wants to context-switch for. An agent can file the issue, update the status, add the comment, and log the hours while you stay in the thing you were actually doing.
See the cookbook for a working example.
