kodi-dev 0.1.0 → 0.1.1
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 +3 -7
- package/dist/index.js +9 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,11 +3,7 @@
|
|
|
3
3
|
**kodi.dev** — a Claude Code-native agent orchestrator. It installs a thin harness
|
|
4
4
|
into any project — a `SessionStart` bootstrap, phase skills, and a neutral team of
|
|
5
5
|
sub-agents — plus a deterministic CLI that proxies your ticket board and pull
|
|
6
|
-
requests. It runs **inside** a Claude Code session (host-driven)
|
|
7
|
-
separate engine and no `claude -p` process fleet.
|
|
8
|
-
|
|
9
|
-
> Status: harness complete (F1–F5). End-to-end validation on a consumer project
|
|
10
|
-
> (F6) and npm publish (F7) are pending.
|
|
6
|
+
requests. It runs **inside** a Claude Code session (host-driven).
|
|
11
7
|
|
|
12
8
|
## Install
|
|
13
9
|
|
|
@@ -77,8 +73,8 @@ to the board as items). `kodi init` discovers the board and columns for you.
|
|
|
77
73
|
**Prerequisites — do these once:**
|
|
78
74
|
|
|
79
75
|
```bash
|
|
80
|
-
gh auth login
|
|
81
|
-
gh auth refresh -s project --hostname github.com
|
|
76
|
+
gh auth login # authenticate the gh CLI
|
|
77
|
+
gh auth refresh -s project --hostname github.com # grant the Projects scope (NOT in default auth)
|
|
82
78
|
```
|
|
83
79
|
|
|
84
80
|
The board must be a **Projects v2** with a single-select **Status** field (every
|
package/dist/index.js
CHANGED
|
@@ -54,9 +54,9 @@ function copyTree(src, dest, force) {
|
|
|
54
54
|
if (existsSync(src)) walk(src, dest);
|
|
55
55
|
return written;
|
|
56
56
|
}
|
|
57
|
-
function mergeClaudeMd(existing,
|
|
58
|
-
const open = `<!-- kodi-pack:${
|
|
59
|
-
const close = `<!-- /kodi-pack:${
|
|
57
|
+
function mergeClaudeMd(existing, name2, fragment) {
|
|
58
|
+
const open = `<!-- kodi-pack:${name2} -->`;
|
|
59
|
+
const close = `<!-- /kodi-pack:${name2} -->`;
|
|
60
60
|
const block = `${open}
|
|
61
61
|
${fragment.trim()}
|
|
62
62
|
${close}`;
|
|
@@ -1639,9 +1639,14 @@ function buildPatch(o) {
|
|
|
1639
1639
|
return patch;
|
|
1640
1640
|
}
|
|
1641
1641
|
|
|
1642
|
+
// package.json
|
|
1643
|
+
var name = "kodi-dev";
|
|
1644
|
+
var version = "0.1.1";
|
|
1645
|
+
var description = "kodi.dev \u2014 Claude Code-native agent orchestrator CLI";
|
|
1646
|
+
|
|
1642
1647
|
// src/index.ts
|
|
1643
1648
|
var program = new Command();
|
|
1644
|
-
program.name(
|
|
1649
|
+
program.name(name).description(description).version(version, "-v, --version", "output the current version");
|
|
1645
1650
|
registerTicketsCommand(program);
|
|
1646
1651
|
registerPrCommand(program);
|
|
1647
1652
|
registerHookCommand(program);
|