@dzhechkov/harness-cli 0.3.74 → 0.3.76

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 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -442,6 +442,24 @@ dz setup --target claude-code --preset academic --memory agentdb
442
442
 
443
443
  Skills contain **only evaluation criteria and methodology** — no student data.
444
444
 
445
+ ### Batch mode: S3 archive → agent 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.
462
+
445
463
  ---
446
464
 
447
465
  ## Example: Product Discovery with Design Thinking
@@ -561,10 +579,16 @@ dz init --target codex --preset meta --enrich
561
579
  dz pretrain # detects stack, recommends presets
562
580
  dz recommend "work on this Node.js API" # suggests skills + toolkits
563
581
 
564
- # 2. Install skills with AgentDB (recommended semantic search + self-learning)
565
- dz setup --target claude-code --preset meta --memory agentdb # 8 skills + AgentDB (.rvf + 41 MCP tools)
566
- dz setup --target claude-code --preset qe-engineer # 20 QE skills (AgentDB already configured)
567
- # Without AgentDB: dz setup --preset meta (lightweight JSONL backend)
582
+ # 2. Install skills (choose your level)
583
+ dz setup --target claude-code --preset meta --memory agentdb # 8 skills (includes feature-adr)
584
+ dz setup --target claude-code --preset qe-engineer # + 20 QE skills
585
+
586
+ # Want the full feature-adr toolkit with /feature-adr command + governance?
587
+ npx @dzhechkov/skills-feature-adr init # adds slash command + rules + shards
588
+ # See: https://www.npmjs.com/package/@dzhechkov/skills-feature-adr
589
+
590
+ # preset = SKILL.md only (auto-activates on matching tasks)
591
+ # npx = full toolkit (slash command + governance + rules)
568
592
  ```
569
593
 
570
594
  Install [Understand-Anything](https://github.com/Lum1104/Understand-Anything) plugin, then in Claude Code:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-cli",
3
- "version": "0.3.74",
3
+ "version": "0.3.76",
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",