@dzhechkov/harness-cli 0.3.72 → 0.3.74

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 -22
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -408,30 +408,39 @@ 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
+ ```
431
432
 
432
- Skills contain **only evaluation criteria and methodology** no student data.
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 |
433
440
 
434
- Recommended workflow: `document-checker` `dissertation-review` `question-generator` `defense-evaluator` `answer-assessor`
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.
442
+
443
+ Skills contain **only evaluation criteria and methodology** — no student data.
435
444
 
436
445
  ---
437
446
 
@@ -846,7 +855,7 @@ npx @dzhechkov/p-replicator init
846
855
 
847
856
  ## Status
848
857
 
849
- `v0.3.68` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
858
+ `v0.3.72` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
850
859
 
851
860
  ## Claude Plugin
852
861
 
@@ -861,13 +870,25 @@ claude plugin install dz-harness-hub@dz-harness-hub
861
870
  claude --plugin-dir /path/to/dz-harness-hub
862
871
 
863
872
  # Generate plugin manifest from current inventory:
864
- dz plugin --version 0.3.61
873
+ dz plugin --version 0.3.72
865
874
  ```
866
875
 
867
876
  The `.claude-plugin/` directory contains `plugin.json` + `marketplace.json` compatible with [pi-claude-marketplace](https://npm.im/pi-claude-marketplace) and [skill-hub](https://npm.im/@jasonwen/skill-hub).
868
877
 
869
878
  ## Related Projects
870
879
 
871
- - [AgentDB](https://github.com/ruvnet/agentdb) — Self-learning vector memory for AI agents (optional `--memory agentdb` backend)
872
- - [OpenClaude](https://github.com/gitlawb/openclaude) — Open-source coding-agent CLI for multiple LLM providers (5th target platform)
873
- - [agentskills.io](https://agentskills.io) — Open standard for agent skill definitions (SKILL.md format)
880
+ ### Skill sources
881
+
882
+ - [agentic-qe](https://github.com/proffesor-for-testing/agentic-qe) — 20 QE skills + 55 agents (test generation, coverage, chaos, QCSD swarms)
883
+ - [ECC](https://github.com/affaan-m/ECC) — 20 curated skills (agent patterns, autonomous loops, docker, git workflows)
884
+ - [AgentShield](https://github.com/affaan-m/agentshield) — Security scanning (170 rules for .claude/ configs)
885
+ - [Understand-Anything](https://github.com/Lum1104/Understand-Anything) — Codebase knowledge graph → architecture context
886
+
887
+ ### Platform & infrastructure
888
+
889
+ - [AgentDB](https://github.com/ruvnet/agentdb) — Self-learning vector memory (`--memory agentdb`, 41 MCP tools)
890
+ - [agentskills.io](https://agentskills.io) — Open standard for SKILL.md format (adopted by all 5 platforms)
891
+ - [OpenAI Codex](https://github.com/openai/codex) — 2nd target platform
892
+ - [OpenCode](https://github.com/sst/opencode) — 3rd target platform (160K+ stars)
893
+ - [Hermes Agent](https://github.com/NousResearch/hermes-agent) — 4th target platform
894
+ - [OpenClaude](https://github.com/gitlawb/openclaude) — 5th target platform (28K+ stars)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-cli",
3
- "version": "0.3.72",
3
+ "version": "0.3.74",
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",