File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 66 */
77
88import pkg from "../package.json"
9+ import { AGENT_NAMES } from "./paths.mjs"
910
1011/**
1112 * The plugin package name.
@@ -28,8 +29,10 @@ export const description = pkg.description
2829 * List of agent identifiers installed by this plugin.
2930 * These agents are copied to ~/.config/opencode/agents/ on install.
3031 *
32+ * Re-exported from paths.mjs which is the single source of truth.
33+ *
3134 * - `opencoder`: Main orchestrator running the Plan-Build-Commit loop
3235 * - `opencoder-planner`: Analyzes codebases and creates development plans
3336 * - `opencoder-builder`: Executes individual tasks with precision
3437 */
35- export const agents = [ "opencoder" , "opencoder-planner" , "opencoder-builder" ]
38+ export const agents = AGENT_NAMES
You can’t perform that action at this time.
0 commit comments