
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
droidflow is a lightweight multi-agent orchestration library designed to coordinate reasoning, planning, and tool-using agents. It is built for financial and data-driven applications, but is flexible enough for general AI agent workflows.
State
& History
management for contextual workflowspip install droidflow
## Quick Example
```python
from droidflow.planer import PlannerAgent
from droidflow.router import RouterAgent
from droidflow.domain import DomainAgent, ToolFunction
from droidflow.model import State
# Example tool function
def get_stock_price(symbol: str) -> str:
return f"Price of {symbol} is 100"
# Register tool
tool_fn = ToolFunction("get_stock_price", get_stock_price, state_enabled=False)
# Dummy LLM (replace with Google Generative AI, OpenAI, etc.)
class DummyLLM:
def generate_content(self, prompt):
print(f"[LLM called] {prompt}")
class Response: text = "SINGLE_CALL"
return Response()
llm = DummyLLM()
# Create agents
stock_agent = DomainAgent(llm, [tool_fn], name="stock_agent", mode=True)
planner = PlannerAgent(llm, "You are a planner for stock tasks.")
router = RouterAgent(llm, agents=[stock_agent])
# Run
plans = planner.plan("Get the price of AAPL stock")
print("Plans:", plans)
result = router.route(plans)
print("Final result:", result)
FAQs
A multi agent orchestrator library
We found that droidflow demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.