codeharness 0.13.2 → 0.16.0
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
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# codeharness
|
|
2
|
+
|
|
3
|
+
## Quick Start
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
# Install
|
|
7
|
+
npm install -g codeharness
|
|
8
|
+
|
|
9
|
+
# Initialize the project
|
|
10
|
+
codeharness init
|
|
11
|
+
|
|
12
|
+
# Check project status
|
|
13
|
+
codeharness status
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm install -g codeharness
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
After installation, initialize codeharness in your project directory:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
codeharness init
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
This sets up the harness with stack detection, observability, and documentation scaffolding.
|
|
31
|
+
|
|
32
|
+
## CLI Reference
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
Usage: codeharness [options] [command]
|
|
36
|
+
|
|
37
|
+
Makes autonomous coding agents produce software that actually works
|
|
38
|
+
|
|
39
|
+
Options:
|
|
40
|
+
-V, --version output the version number
|
|
41
|
+
--json Output in machine-readable JSON format
|
|
42
|
+
-h, --help display help for command
|
|
43
|
+
|
|
44
|
+
Commands:
|
|
45
|
+
init [options] Initialize the harness in a project
|
|
46
|
+
bridge [options] Bridge BMAD epics/stories into beads task store
|
|
47
|
+
run [options] Execute the autonomous coding loop
|
|
48
|
+
verify [options] Run verification pipeline on completed work
|
|
49
|
+
status [options] Show current harness status and health
|
|
50
|
+
onboard [options] Onboard an existing codebase into the harness
|
|
51
|
+
teardown [options] Remove harness from a project
|
|
52
|
+
state Manage harness state
|
|
53
|
+
sync [options] Synchronize beads issue statuses with story files and
|
|
54
|
+
sprint-status.yaml
|
|
55
|
+
coverage [options] Run tests with coverage and evaluate against targets
|
|
56
|
+
doc-health [options] Scan documentation for freshness and quality issues
|
|
57
|
+
stack Manage the shared observability stack
|
|
58
|
+
query Query observability data (logs, metrics, traces)
|
|
59
|
+
scoped to current project
|
|
60
|
+
retro-import [options] Import retrospective action items as beads issues
|
|
61
|
+
github-import [options] Import GitHub issues labeled for sprint planning into
|
|
62
|
+
beads
|
|
63
|
+
verify-env Manage verification environment (Docker image + clean
|
|
64
|
+
workspace)
|
|
65
|
+
help [command] display help for command
|
|
66
|
+
```
|