@dzhechkov/harness-cli 0.3.74 → 0.3.75
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 +18 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -442,6 +442,24 @@ dz setup --target claude-code --preset academic --memory agentdb
|
|
|
442
442
|
|
|
443
443
|
Skills contain **only evaluation criteria and methodology** — no student data.
|
|
444
444
|
|
|
445
|
+
### Batch mode: S3 archive → agent swarm
|
|
446
|
+
|
|
447
|
+
```bash
|
|
448
|
+
# Download and extract: each student = subfolder with .zip
|
|
449
|
+
curl -o students.zip "https://s3.example.com/bucket/students.zip"
|
|
450
|
+
mkdir students && cd students && 7z x ../students.zip
|
|
451
|
+
for f in *.zip; do mkdir -p "${f%.zip}" && cd "${f%.zip}" && 7z x "../$f" && cd ..; done
|
|
452
|
+
```
|
|
453
|
+
|
|
454
|
+
Then in Claude Code:
|
|
455
|
+
```
|
|
456
|
+
"For each student folder: run document-checker → dissertation-review → question-generator.
|
|
457
|
+
Save справка.md per student with clickable inline links to pages (стр. 45, разд. 2.3)
|
|
458
|
+
and external sources ([JTBD](https://hbr.org/...)). Run all students in parallel."
|
|
459
|
+
```
|
|
460
|
+
|
|
461
|
+
With AgentDB, patterns persist across students — grading calibration improves with each analysis.
|
|
462
|
+
|
|
445
463
|
---
|
|
446
464
|
|
|
447
465
|
## Example: Product Discovery with Design Thinking
|
package/package.json
CHANGED