@dzhechkov/harness-cli 0.3.73 → 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 +43 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -408,30 +408,57 @@ dz dashboard # Visual panel with all packages, adapters, skill packs
|
|
|
408
408
|
## Example: Thesis Defense Preparation (Academic Preset)
|
|
409
409
|
|
|
410
410
|
```bash
|
|
411
|
-
# Install
|
|
412
|
-
dz
|
|
411
|
+
# Install with AgentDB (remembers patterns across students):
|
|
412
|
+
dz setup --target claude-code --preset academic --memory agentdb
|
|
413
413
|
|
|
414
|
-
#
|
|
415
|
-
#
|
|
416
|
-
# "Generate 6 defense questions of varying difficulty"
|
|
417
|
-
# "Check document package completeness"
|
|
414
|
+
# Or lightweight:
|
|
415
|
+
# dz init --target claude-code --preset academic
|
|
418
416
|
```
|
|
419
417
|
|
|
420
|
-
|
|
418
|
+
**Prepare:** Create a folder per student with thesis.pdf + review.pdf + external-review.pdf + antiplagiat.pdf.
|
|
421
419
|
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
| `answer-assessor` | Evaluates Q&A answers — completeness, depth, alignment with reviewer remarks |
|
|
420
|
+
**Pre-defense** (open Claude Code in student folder):
|
|
421
|
+
```
|
|
422
|
+
"Check document package completeness" → document-checker
|
|
423
|
+
"Analyze this thesis" → dissertation-review (format, criteria, grade)
|
|
424
|
+
"Generate 6 defense questions" → question-generator (basic → critical, page refs)
|
|
425
|
+
```
|
|
429
426
|
|
|
430
|
-
**
|
|
427
|
+
**During defense** (feed live transcript via [Whisper](https://github.com/openai/whisper) + [VB-Cable](https://vb-audio.com/Cable/)):
|
|
428
|
+
```
|
|
429
|
+
"Analyze this defense transcript" → defense-evaluator (structure, coverage, delivery)
|
|
430
|
+
"Evaluate the student's answers" → answer-assessor (completeness, depth, reviewer alignment)
|
|
431
|
+
```
|
|
432
|
+
|
|
433
|
+
| When | Skill | What it does |
|
|
434
|
+
|------|-------|-------------|
|
|
435
|
+
| Before | `document-checker` | Package completeness: thesis, reviews, antiplagiat |
|
|
436
|
+
| Before | `dissertation-review` | ГЭК criteria, research/project format, grade 1-10, team project check |
|
|
437
|
+
| Before | `question-generator` | 4-6 questions with page refs and expected keywords |
|
|
438
|
+
| During | `defense-evaluator` | Live transcript → structure, coverage, delivery quality |
|
|
439
|
+
| During | `answer-assessor` | Q&A evaluation → completeness, depth, reviewer remarks |
|
|
440
|
+
|
|
441
|
+
**Key features:** TO BE vs data detection, LTV/CAC > 10 warning, reviewer score divergence alerts, team project evaluation. With AgentDB, patterns persist across students.
|
|
431
442
|
|
|
432
443
|
Skills contain **only evaluation criteria and methodology** — no student data.
|
|
433
444
|
|
|
434
|
-
|
|
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.
|
|
435
462
|
|
|
436
463
|
---
|
|
437
464
|
|
package/package.json
CHANGED