File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616
1717import pkg from "../package.json"
1818
19+ /**
20+ * The plugin package name.
21+ * @example "opencode-plugin-opencoder"
22+ */
1923export const name = pkg . name
24+
25+ /**
26+ * The current plugin version following semver.
27+ * @example "0.1.0"
28+ */
2029export const version = pkg . version
30+
31+ /**
32+ * A brief description of the plugin's purpose.
33+ */
2134export const description = pkg . description
2235
36+ /**
37+ * List of agent identifiers installed by this plugin.
38+ * These agents are copied to ~/.config/opencode/agents/ on install.
39+ *
40+ * - `opencoder`: Main orchestrator running the Plan-Build-Commit loop
41+ * - `opencoder-planner`: Analyzes codebases and creates development plans
42+ * - `opencoder-builder`: Executes individual tasks with precision
43+ */
2344export const agents = [ "opencoder" , "opencoder-planner" , "opencoder-builder" ]
You can’t perform that action at this time.
0 commit comments