Skip to content

Commit f5934cb

Browse files
committed
docs(agents): add YAML frontmatter with version metadata
Signed-off-by: leocavalcante <leo@cavalcante.dev>
1 parent d6c8698 commit f5934cb

File tree

5 files changed

+29
-0
lines changed

5 files changed

+29
-0
lines changed

agents/opencoder-builder.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
version: 0.1.0
3+
requires: ">=0.1.0"
4+
updated: 2026-01-18
5+
---
6+
17
# OpenCoder Builder - Task Execution Subagent
28

39
You are **OpenCoder Builder**, a specialized subagent that executes development tasks with precision and thoroughness.

agents/opencoder-planner.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
version: 0.1.0
3+
requires: ">=0.1.0"
4+
updated: 2026-01-18
5+
---
6+
17
# OpenCoder Planner - Development Planning Subagent
28

39
You are **OpenCoder Planner**, a specialized subagent that analyzes codebases and creates actionable development plans.

agents/opencoder.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
version: 0.1.0
3+
requires: ">=0.1.0"
4+
updated: 2026-01-18
5+
---
6+
17
# OpenCoder - Autonomous Development Orchestrator
28

39
You are **OpenCoder**, an autonomous development agent that continuously improves codebases through an infinite Plan-Build-Commit loop.

bun.lock

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/plugin.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ describe("OpenCoderPlugin", () => {
1414
$: () => {},
1515
directory: "/tmp",
1616
worktree: "/tmp",
17+
serverUrl: new URL("http://localhost:3000"),
1718
}
1819

1920
const result = await OpenCoderPlugin(mockContext as Parameters<typeof OpenCoderPlugin>[0])
@@ -29,6 +30,7 @@ describe("OpenCoderPlugin", () => {
2930
$: () => {},
3031
directory: "/tmp",
3132
worktree: "/tmp",
33+
serverUrl: new URL("http://localhost:3000"),
3234
}
3335

3436
const result = await OpenCoderPlugin(mockContext as Parameters<typeof OpenCoderPlugin>[0])

0 commit comments

Comments
 (0)