@dzhechkov/harness-cli 0.3.36 → 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.
Files changed (2) hide show
  1. package/README.md +28 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -133,7 +133,7 @@ dz publish # publish all changed packages
133
133
  | **--select** | Want specific skills by name | `dz init --target claude-code --select explore,feature-adr` |
134
134
  | **Standalone npx** | Want a full toolkit with its own CLI | `npx @dzhechkov/keysarium init` |
135
135
 
136
- ### Available Presets (10)
136
+ ### Available Presets (11)
137
137
 
138
138
  | Preset | Skills | Description |
139
139
  |--------|--------|-------------|
@@ -147,6 +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` | 3 | Thesis defense (dissertation-review, question-generator, document-checker) |
150
151
 
151
152
  ### Standalone Packages (install via npx, no dz CLI needed)
152
153
 
@@ -366,6 +367,32 @@ dz dashboard # Visual panel with all packages, adapters, skill packs
366
367
 
367
368
  ---
368
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
+
369
396
  ## Self-Learning: JSONL vs AgentDB
370
397
 
371
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.36",
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/harness-presets": "0.2.10",
43
- "@dzhechkov/scout": "0.7.2"
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",