k-harness 0.8.1 → 0.8.2

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 (3) hide show
  1. package/README.md +16 -12
  2. package/package.json +1 -1
  3. package/src/init.js +2 -2
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # K-Harness
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/k-harness.svg)](https://www.npmjs.com/package/k-harness)
4
+ [![npm downloads](https://img.shields.io/npm/dm/k-harness.svg)](https://www.npmjs.com/package/k-harness)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
+
3
7
  Project Direction Management Framework for LLM-Driven Development.
4
8
 
5
9
  ## What It Does
@@ -118,18 +122,18 @@ When goals, technology, or scope changes, run the `pivot` skill:
118
122
 
119
123
  See [docs/reference.md](docs/reference.md) for detailed descriptions of every skill, agent, rule, and state file.
120
124
 
121
- ## Why Not BMAD or gstack?
122
-
123
- | | BMAD v6.2.2 | gstack v0.15.1 | K-Harness |
124
- |---|---|---|---|
125
- | Focus | Enterprise SDLC methodology | 1-person software factory | Project direction management |
126
- | Files | 200+ | ~40 | ~20 |
127
- | Dependencies | Node 20+ | Bun + Node + Playwright | Zero |
128
- | IDE support | 20+ (installer) | 5 (setup --host) | 7 (native format) |
129
- | Direction management | ❌ | ❌ | ✅ (Direction Guard + pivot + Decision Log) |
130
- | Cold start | ❌ | ❌ | ✅ (bootstrap) |
131
- | State file audit | ❌ | ❌ | ✅ (reviewer Step 8) |
132
- | Context per task | 4-6 files | 1 file | 2-3 files |
125
+ ## Why K-Harness?
126
+
127
+ | | BMAD v6.2.2 | gstack v0.15.1 | GSD v1.33.0 | K-Harness |
128
+ |---|---|---|---|---|
129
+ | Focus | Enterprise SDLC methodology | 1-person software factory | Full lifecycle automation | Project direction management |
130
+ | Files | 200+ | ~40 | Hundreds | ~20 |
131
+ | Dependencies | Node 20+ | Bun + Node + Playwright | Node 18+ | Zero |
132
+ | IDE support | 20+ (installer) | 5 (setup --host) | 13 (runtime select) | 7 (native format) |
133
+ | Direction management | ❌ | ❌ | ❌ | ✅ (Direction Guard + pivot + Decision Log) |
134
+ | Iron Laws (code quality rules) | ❌ | ❌ | ❌ | ✅ (6 laws embedded in skills) |
135
+ | Cold start | ❌ | ❌ | `/gsd-new-project` | ✅ (`bootstrap` skill) |
136
+ | Context per task | 4-6 files | 1 file | Fresh 200k per plan | 2-3 files (22-line dispatcher) |
133
137
 
134
138
  ## License
135
139
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "k-harness",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "LLM Development Harness — IDE-agnostic rules, skills, and agents that prevent common AI coding failures",
5
5
  "keywords": [
6
6
  "llm",
package/src/init.js CHANGED
@@ -159,7 +159,7 @@ function generateCursor(targetDir, overwrite) {
159
159
  for (const skill of SKILLS) {
160
160
  const content = readTemplate(`skills/${skill.id}.md`);
161
161
  const mdc =
162
- `---\ndescription: Skill — ${skill.id}\nalwaysApply: false\n---\n\n` +
162
+ `---\ndescription: ${skill.desc}\nalwaysApply: false\n---\n\n` +
163
163
  content;
164
164
  writeFile(targetDir, `.cursor/rules/${skill.id}.mdc`, mdc, overwrite);
165
165
  }
@@ -168,7 +168,7 @@ function generateCursor(targetDir, overwrite) {
168
168
  for (const agent of AGENTS) {
169
169
  const content = readTemplate(agent.file);
170
170
  const mdc =
171
- `---\ndescription: Agent — ${agent.id}\nalwaysApply: false\n---\n\n` +
171
+ `---\ndescription: ${agent.desc}\nalwaysApply: false\n---\n\n` +
172
172
  content;
173
173
  writeFile(targetDir, `.cursor/rules/${agent.id}.mdc`, mdc, overwrite);
174
174
  }