Skip to content

Commit f443b33

Browse files
committed
fix: Add group and type to defcustom
* mevedel-agents.el (mevedel-codebase-analyst-tools) (mevedel-researcher-tools, mevedel-planner-tools): Add group and type.
1 parent 804ef26 commit f443b33

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

mevedel-agents.el

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
(append mevedel-tools--read-tools mevedel-tools--code-tools
99
'(("mevedel" "TodoWrite") ("mevedel" "TodoRead") ("mevedel" "Ask")
1010
("mevedel" "RequestAccess") ("mevedel" "Bash")))
11-
"Tools for the `codebase-analyst' agent.")
11+
"Tools for the `codebase-analyst' agent."
12+
:group 'mevedel
13+
:type '(alist :key-type string :value-type string))
1214

1315
(defvar mevedel-agents--codebase-analyst-base-prompt
1416
(concat "You are a specialized codebase analysis agent designed for deep architectural understanding.\n\n"
@@ -79,7 +81,9 @@
7981
("gptel-agent" "YouTube") ("mevedel" "TodoWrite")
8082
("mevedel" "TodoRead") ("mevedel" "Ask")
8183
("mevedel" "RequestAccess")))
82-
"Tools for the `researcher' agent.")
84+
"Tools for the `researcher' agent."
85+
:group 'mevedel
86+
:type '(alist :key-type string :value-type string))
8387

8488
(defvar mevedel-agents--researcher-base-prompt
8589
(concat "You are a specialized research agent for finding information online and cross-referencing with local code.\n\n"
@@ -151,7 +155,9 @@
151155
'(("mevedel" "TodoWrite") ("mevedel" "TodoRead")
152156
("mevedel" "Ask") ("mevedel" "RequestAccess")
153157
("mevedel" "PresentPlan")))
154-
"Tools for the `planner' agent.")
158+
"Tools for the `planner' agent."
159+
:group 'mevedel
160+
:type '(alist :key-type string :value-type string))
155161

156162
(defvar mevedel-agents--planner-base-prompt
157163
(concat "You are a specialized planning agent for creating interactive implementation plans.\n\n"

0 commit comments

Comments
 (0)