@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.
Files changed (2) hide show
  1. package/README.md +43 -16
  2. 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 academic skills (5 skills for thesis defense committee)
412
- dz init --target claude-code --preset academic
411
+ # Install with AgentDB (remembers patterns across students):
412
+ dz setup --target claude-code --preset academic --memory agentdb
413
413
 
414
- # Open Claude Code in the folder with student materials and use:
415
- # "Analyze this thesis against project format criteria"
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
- Five skills auto-activate in Claude Code:
418
+ **Prepare:** Create a folder per student with thesis.pdf + review.pdf + external-review.pdf + antiplagiat.pdf.
421
419
 
422
- | Skill | What it does |
423
- |-------|-------------|
424
- | `document-checker` | Validates package completeness: thesis, supervisor review, external review, presentation |
425
- | `dissertation-review` | Evaluates thesis against ГЭК criteria (research/project format), generates summary |
426
- | `question-generator` | Generates 6 questions (basic → critical) with expected answer keywords |
427
- | `defense-evaluator` | Analyzes live defense transcript — structure, topic coverage, delivery quality |
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
- **Live defense support:** Feed real-time transcript from speech-to-text (e.g., Whisper + VB-Cable on Windows) → defense-evaluator and answer-assessor analyze as the defense progresses.
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
- Recommended workflow: `document-checker` `dissertation-review` `question-generator` → `defense-evaluator` → `answer-assessor`
445
+ ### Batch mode: S3 archiveagent 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-cli",
3
- "version": "0.3.73",
3
+ "version": "0.3.75",
4
4
  "description": "The dz CLI — install AI skills for Claude Code, Codex, OpenCode, Hermes. 11 commands, 7 presets, 4 platform adapters.",
5
5
  "type": "module",
6
6
  "license": "MIT",