Dev Swarm banner
kyegomez kyegomez

Dev Swarm

Testing community

Description

A swarm of LLM agents that will help you test, document, and productionize your code!

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

[![Multi-Modality](agorabanner.png)](https://discord.gg/qUtxnK2NMf)

Dev Swarm

Install

$ pip install dev-swarm

Usage

from dev_swarm import DevSwarm

# Example usage
items = []
module = "docs/swarms/structs"
docs_folder_path = "docs/swarms/structs"
tests_folder_path = "tests/memory"
flow = "FunctionGenerator -> DocumentorAgent -> H -> TesterAgent -> H"

dev_swarm = DevSwarm(
  items=items,
  documentor_agent_name="DocumentorAgent",
  tester_agent_name="TesterAgent",
  function_generator_agent_name="FunctionGenerator",
  max_loops=1,
  module=module,
  docs_folder_path=docs_folder_path,
  tests_folder_path=tests_folder_path,
  flow=flow,
)

output = dev_swarm.run(task="Start your tasks")
print(output)
```