We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3aba62 commit 9c58eebCopy full SHA for 9c58eeb
1 file changed
tests/test_agents.py
@@ -15,6 +15,14 @@ class GhostBrain:
15
def __init__(self):
16
self.config = Config()
17
self.agent_loader = AgentLoader()
18
+ # Mock agent for testing in environments without local config (like CI)
19
+ self.agent_loader.agents["agency-application-security-engineer"] = {
20
+ "name": "agency-application-security-engineer",
21
+ "description": "Expert application security engineer",
22
+ "system_prompt": "threat modeling and vulnerability audits",
23
+ "folder_name": "agency-application-security-engineer",
24
+ "path": "/mock/path"
25
+ }
26
self.last_prompt = ""
27
self.last_system = ""
28
0 commit comments