@cardor/agent-harness-kit 1.1.2 → 1.1.4

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 +39 -27
  2. package/package.json +11 -11
package/README.md CHANGED
@@ -6,6 +6,10 @@ Instead of letting AI agents roam freely through your project with no memory, no
6
6
 
7
7
  You stay in control. The agents stay on track.
8
8
 
9
+ Visit the [website](https://stack.cardor.dev/ahk) to view a full explanation, examples, and other tools!
10
+
11
+ <a href='https://ko-fi.com/S6S31ZBGQK' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi6.png?v=6' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
12
+
9
13
  ```bash
10
14
  npx ahk init
11
15
  ```
@@ -14,33 +18,41 @@ npx ahk init
14
18
 
15
19
  ## Table of Contents
16
20
 
17
- - [Why this exists](#why-this-exists)
18
- - [How it works](#how-it-works)
19
- - [Features](#features)
20
- - [Requirements](#requirements)
21
- - [Installation](#installation)
22
- - [Commands](#commands)
23
- - [ahk init](#ahk-init)
24
- - [ahk build](#ahk-build)
25
- - [ahk dashboard](#ahk-dashboard)
26
- - [ahk status](#ahk-status)
27
- - [ahk health](#ahk-health)
28
- - [ahk sync](#ahk-sync)
29
- - [ahk serve](#ahk-serve)
30
- - [ahk task add](#ahk-task-add)
31
- - [ahk task list](#ahk-task-list)
32
- - [ahk task done](#ahk-task-done-idslug)
33
- - [ahk reset](#ahk-reset)
34
- - [ahk migrate](#ahk-migrate)
35
- - [ahk export](#ahk-export)
36
- - [Files created by ahk init](#files-created-by-ahk-init)
37
- - [What you can customize](#what-you-can-customize)
38
- - [MCP tools (for agents)](#mcp-tools-for-agents)
39
- - [Agent roles](#agent-roles)
40
- - [What to commit](#what-to-commit)
41
- - [Runtime compatibility](#runtime-compatibility)
42
- - [Contributing & local development](#contributing--local-development)
43
- - [Roadmap](#roadmap)
21
+ - [@cardor/agent-harness-kit](#cardoragent-harness-kit)
22
+ - [Table of Contents](#table-of-contents)
23
+ - [Why this exists](#why-this-exists)
24
+ - [How it works](#how-it-works)
25
+ - [Features](#features)
26
+ - [Requirements](#requirements)
27
+ - [Installation](#installation)
28
+ - [Commands](#commands)
29
+ - [`ahk init`](#ahk-init)
30
+ - [`ahk build`](#ahk-build)
31
+ - [`ahk dashboard`](#ahk-dashboard)
32
+ - [`ahk status`](#ahk-status)
33
+ - [`ahk health`](#ahk-health)
34
+ - [`ahk sync`](#ahk-sync)
35
+ - [`ahk serve`](#ahk-serve)
36
+ - [`ahk task add`](#ahk-task-add)
37
+ - [`ahk task list`](#ahk-task-list)
38
+ - [`ahk task done <id|slug>`](#ahk-task-done-idslug)
39
+ - [`ahk reset`](#ahk-reset)
40
+ - [`ahk migrate`](#ahk-migrate)
41
+ - [`ahk export`](#ahk-export)
42
+ - [Files created by `ahk init`](#files-created-by-ahk-init)
43
+ - [What each file does](#what-each-file-does)
44
+ - [What you can customize](#what-you-can-customize)
45
+ - [`agent-harness-kit.config.ts`](#agent-harness-kitconfigts)
46
+ - [`health.sh`](#healthsh)
47
+ - [Agent definition files (`.claude/agents/*.md` or `.opencode/agents/*.md`)](#agent-definition-files-claudeagentsmd-or-opencodeagentsmd)
48
+ - [`.harness/feature_list.json`](#harnessfeature_listjson)
49
+ - [MCP tools (for agents)](#mcp-tools-for-agents)
50
+ - [Agent roles](#agent-roles)
51
+ - [What to commit](#what-to-commit)
52
+ - [Runtime compatibility](#runtime-compatibility)
53
+ - [Contributing \& local development](#contributing--local-development)
54
+ - [Testing the local build in another project](#testing-the-local-build-in-another-project)
55
+ - [Roadmap](#roadmap)
44
56
 
45
57
  ---
46
58
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cardor/agent-harness-kit",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "CLI scaffolding for multi-agent harness systems",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -14,16 +14,6 @@
14
14
  "bin": {
15
15
  "ahk": "./bin/ahk.js"
16
16
  },
17
- "scripts": {
18
- "build": "npm run build:ui && tsup && npm run copy-assets",
19
- "build:ui": "cd dashboard && npm install --prefer-offline && npm run build",
20
- "copy-assets": "node scripts/copy-assets.mjs",
21
- "dev": "tsup --watch",
22
- "test": "node --test --import tsx/esm src/tests/*.test.ts",
23
- "lint": "eslint . --fix",
24
- "prepublishOnly": "npm run build && npm test",
25
- "prepare": "husky"
26
- },
27
17
  "files": [
28
18
  "bin",
29
19
  "dist"
@@ -71,5 +61,15 @@
71
61
  },
72
62
  "engines": {
73
63
  "node": ">=22.5.0"
64
+ },
65
+ "scripts": {
66
+ "build": "pnpm run build:ui && tsup && pnpm run copy-assets",
67
+ "build:ui": "cd dashboard && pnpm install --prefer-offline && pnpm run build",
68
+ "copy-assets": "node scripts/copy-assets.mjs",
69
+ "dev": "tsup --watch",
70
+ "test": "node --test --import tsx/esm src/tests/*.test.ts",
71
+ "lint": "eslint . --fix",
72
+ "release": "bash scripts/publish.sh",
73
+ "release:dry": "bash scripts/publish.sh --dry-run"
74
74
  }
75
75
  }