You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: update README and AGENTS.md for new plugin structure
- Document the proper OpenCode plugin API structure
- Add Plugin API section explaining exports
- Update project structure to reflect new files
- Add plugin function and metadata module descriptions
Signed-off-by: leocavalcante <leo@cavalcante.dev>
Copy file name to clipboardExpand all lines: AGENTS.md
+50-3Lines changed: 50 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,11 @@ This file provides instructions for AI coding agents working in this repository.
4
4
5
5
## Project Overview
6
6
7
-
This is an **OpenCode plugin** that provides autonomous development agents. The plugin installs three agents that work together to create an infinite Plan-Build-Commit loop.
7
+
This is an **OpenCode plugin** that provides autonomous development agents. The plugin follows the [OpenCode plugin API](https://opencode.ai/docs/plugins/) and installs three agents that work together to create an infinite Plan-Build-Commit loop.
8
8
9
9
-**Type**: OpenCode Plugin
10
10
-**Runtime**: Bun
11
-
-**Language**: TypeScript (minimal)
11
+
-**Language**: TypeScript
12
12
13
13
## Project Structure
14
14
@@ -19,19 +19,66 @@ opencode-plugin-opencoder/
19
19
│ ├── opencoder-planner.md # Planning subagent
20
20
│ └── opencoder-builder.md # Building subagent
21
21
├── src/
22
-
│ └── index.ts # Plugin entry point (exports metadata)
Copy file name to clipboardExpand all lines: README.md
+28-1Lines changed: 28 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ OpenCode plugin providing autonomous development agents for continuous codebase
4
4
5
5
## Overview
6
6
7
-
This plugin installs three agents that work together to create an infinite autonomous development loop:
7
+
This plugin follows the [OpenCode plugin API](https://opencode.ai/docs/plugins/) and installs three agents that work together to create an infinite autonomous development loop:
8
8
9
9
| Agent | Purpose |
10
10
|-------|---------|
@@ -14,6 +14,17 @@ This plugin installs three agents that work together to create an infinite auton
The plugin currently provides a minimal hooks structure that can be extended in the future. Agent registration is handled via the postinstall script since the OpenCode plugin API does not yet support dynamic agent registration.
0 commit comments