@dzhechkov/harness-cli 0.3.37 → 0.3.39
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 +31 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -147,7 +147,7 @@ dz publish # publish all changed packages
|
|
|
147
147
|
| `devops` | 27 | DevOps skills (terraform, kubernetes, c4-architecture, risk-assessment, ...) |
|
|
148
148
|
| `web3` | 12 | Web3/DeFi (quicknode, zerion, symbiosis, bankr, veil, neynar, ...) |
|
|
149
149
|
| `mcp` | 16 | MCP servers (agentdb, brave-search, gmail, gitlab, comfyui, notion, ...) |
|
|
150
|
-
| `academic` |
|
|
150
|
+
| `academic` | 5 | Thesis defense (review, questions, doc-check, live defense + answer eval) |
|
|
151
151
|
|
|
152
152
|
### Standalone Packages (install via npx, no dz CLI needed)
|
|
153
153
|
|
|
@@ -367,6 +367,36 @@ dz dashboard # Visual panel with all packages, adapters, skill packs
|
|
|
367
367
|
|
|
368
368
|
---
|
|
369
369
|
|
|
370
|
+
## Example: Thesis Defense Preparation (Academic Preset)
|
|
371
|
+
|
|
372
|
+
```bash
|
|
373
|
+
# Install academic skills (3 skills for thesis defense committee)
|
|
374
|
+
dz init --target claude-code --preset academic
|
|
375
|
+
|
|
376
|
+
# Open Claude Code in the folder with student materials and use:
|
|
377
|
+
# "Analyze this thesis against project format criteria"
|
|
378
|
+
# "Generate 6 defense questions of varying difficulty"
|
|
379
|
+
# "Check document package completeness"
|
|
380
|
+
```
|
|
381
|
+
|
|
382
|
+
Three skills auto-activate in Claude Code:
|
|
383
|
+
|
|
384
|
+
| Skill | What it does |
|
|
385
|
+
|-------|-------------|
|
|
386
|
+
| `document-checker` | Validates package completeness: thesis, supervisor review, external review, presentation |
|
|
387
|
+
| `dissertation-review` | Evaluates thesis against ГЭК criteria (research/project format), generates summary |
|
|
388
|
+
| `question-generator` | Generates 6 questions (basic → critical) with expected answer keywords |
|
|
389
|
+
| `defense-evaluator` | Analyzes live defense transcript — structure, topic coverage, delivery quality |
|
|
390
|
+
| `answer-assessor` | Evaluates Q&A answers — completeness, depth, alignment with reviewer remarks |
|
|
391
|
+
|
|
392
|
+
**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.
|
|
393
|
+
|
|
394
|
+
Skills contain **only evaluation criteria and methodology** — no student data.
|
|
395
|
+
|
|
396
|
+
Recommended workflow: `document-checker` → `dissertation-review` → `question-generator` → `defense-evaluator` → `answer-assessor`
|
|
397
|
+
|
|
398
|
+
---
|
|
399
|
+
|
|
370
400
|
## Self-Learning: JSONL vs AgentDB
|
|
371
401
|
|
|
372
402
|
DZ Harness supports two memory backends for self-learning:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dzhechkov/harness-cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.39",
|
|
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",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"README.md"
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
|
+
"@dzhechkov/scout": "0.7.2",
|
|
41
42
|
"@dzhechkov/harness-core": "0.3.13",
|
|
42
|
-
"@dzhechkov/harness-presets": "0.2.10"
|
|
43
|
-
"@dzhechkov/scout": "0.7.2"
|
|
43
|
+
"@dzhechkov/harness-presets": "0.2.10"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/node": "^25.6.0",
|