We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe10d72 commit 23c361aCopy full SHA for 23c361a
1 file changed
src/metadata.ts
@@ -6,6 +6,7 @@
6
*/
7
8
import pkg from "../package.json"
9
+import { AGENT_NAMES } from "./paths.mjs"
10
11
/**
12
* The plugin package name.
@@ -28,8 +29,10 @@ export const description = pkg.description
28
29
* List of agent identifiers installed by this plugin.
30
* These agents are copied to ~/.config/opencode/agents/ on install.
31
*
32
+ * Re-exported from paths.mjs which is the single source of truth.
33
+ *
34
* - `opencoder`: Main orchestrator running the Plan-Build-Commit loop
35
* - `opencoder-planner`: Analyzes codebases and creates development plans
36
* - `opencoder-builder`: Executes individual tasks with precision
37
-export const agents = ["opencoder", "opencoder-planner", "opencoder-builder"]
38
+export const agents = AGENT_NAMES
0 commit comments