agent-bober 0.6.0 → 0.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # agent-bober
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/agent-bober.svg)](https://www.npmjs.com/package/agent-bober)
4
+ [![license](https://img.shields.io/npm/l/agent-bober.svg)](https://github.com/BOBER3r/agent-bober/blob/main/LICENSE)
5
+
3
6
  **Generator-Evaluator multi-agent harness for building applications autonomously with Claude.**
4
7
 
5
8
  Inspired by Anthropic's engineering publication [**"Harness design for long-running application development"**](https://www.anthropic.com/engineering/harness-design-long-running-apps), agent-bober implements the Generator-Evaluator multi-agent pattern as a reusable, installable workflow. It orchestrates multiple Claude agents in a structured loop: a **Planner** decomposes your idea into sprint contracts, a **Generator** writes the code, and an **Evaluator** independently verifies each sprint against its contract before moving on. The result is autonomous, high-quality software development with built-in guardrails, context resets, and brutally honest evaluation.
@@ -6,6 +6,16 @@ tools:
6
6
  - Bash
7
7
  - Grep
8
8
  - Glob
9
+ - mcp__plugin_playwright_playwright__browser_navigate
10
+ - mcp__plugin_playwright_playwright__browser_snapshot
11
+ - mcp__plugin_playwright_playwright__browser_take_screenshot
12
+ - mcp__plugin_playwright_playwright__browser_click
13
+ - mcp__plugin_playwright_playwright__browser_fill_form
14
+ - mcp__plugin_playwright_playwright__browser_evaluate
15
+ - mcp__plugin_playwright_playwright__browser_console_messages
16
+ - mcp__plugin_playwright_playwright__browser_network_requests
17
+ - mcp__plugin_playwright_playwright__browser_tabs
18
+ - mcp__plugin_playwright_playwright__browser_close
9
19
  model: sonnet
10
20
  ---
11
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-bober",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "Generator-Evaluator multi-agent harness for building applications autonomously with Claude. Implements planner, sprint, and evaluator patterns.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -28,9 +28,13 @@
28
28
  ],
29
29
  "author": "BOBER3r",
30
30
  "license": "MIT",
31
+ "homepage": "https://github.com/BOBER3r/agent-bober#readme",
31
32
  "repository": {
32
33
  "type": "git",
33
- "url": "https://github.com/BOBER3r/agent-bober"
34
+ "url": "git+https://github.com/BOBER3r/agent-bober.git"
35
+ },
36
+ "bugs": {
37
+ "url": "https://github.com/BOBER3r/agent-bober/issues"
34
38
  },
35
39
  "engines": {
36
40
  "node": ">=18.0.0"