agent-bober 0.6.1 → 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.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +6 -2
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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-bober",
3
- "version": "0.6.1",
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"