@dzhechkov/harness-cli 0.3.37 → 0.3.38
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 +26 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -367,6 +367,32 @@ 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
|
+
| `dissertation-review` | Evaluates thesis against ГЭК criteria (research/project format), generates summary with strengths, weaknesses, and preliminary grade |
|
|
387
|
+
| `question-generator` | Generates 6 questions (basic → methodological → practical → critical) with expected answer keywords and difficulty levels |
|
|
388
|
+
| `document-checker` | Validates package completeness: thesis, supervisor review, external review, presentation, antiplagiat report |
|
|
389
|
+
|
|
390
|
+
Skills contain **only evaluation criteria and methodology** from public guidelines — no student data. Student materials are processed only at runtime when applying skills to specific files.
|
|
391
|
+
|
|
392
|
+
Recommended workflow: `document-checker` → `dissertation-review` → `question-generator`
|
|
393
|
+
|
|
394
|
+
---
|
|
395
|
+
|
|
370
396
|
## Self-Learning: JSONL vs AgentDB
|
|
371
397
|
|
|
372
398
|
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.38",
|
|
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",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@dzhechkov/harness-core": "0.3.13",
|
|
42
|
-
"@dzhechkov/
|
|
43
|
-
"@dzhechkov/
|
|
42
|
+
"@dzhechkov/scout": "0.7.2",
|
|
43
|
+
"@dzhechkov/harness-presets": "0.2.10"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/node": "^25.6.0",
|