@ps-neko/nekowork 0.1.0-alpha.3 → 0.1.0-alpha.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.
- package/CLAUDE.md +1 -1
- package/README.md +20 -10
- package/agent.yaml +1 -1
- package/docs/ARCHITECTURE.md +1 -1
- package/docs/AUDIT.md +11 -11
- package/docs/CATALOG-PACKS.md +1 -1
- package/docs/CHANGELOG.md +13 -0
- package/docs/CODEMAPS/tests.md +2 -0
- package/docs/DEMO.md +4 -4
- package/docs/FAILURE-MODES.md +1 -1
- package/docs/FEEDBACK-TRIAGE.md +7 -7
- package/docs/PORTING.md +11 -1
- package/docs/PUBLISH-ALPHA.md +18 -11
- package/docs/QUICKSTART.md +3 -2
- package/docs/RELEASE-READINESS.md +20 -18
- package/docs/ROADMAP.md +18 -5
- package/docs/RUNBOOK.md +9 -2
- package/docs/SETUP.md +1 -1
- package/docs/assets/demo-terminal.svg +2 -2
- package/docs/workflows-stash/harness-validate.yml +4 -4
- package/package.json +1 -1
package/CLAUDE.md
CHANGED
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ NEKOWORK is intentionally not a 100-agent pack. Every agent, skill, hook, profil
|
|
|
30
30
|
3. produce auditable evidence,
|
|
31
31
|
4. respect Human Gate.
|
|
32
32
|
|
|
33
|
-
**Public alpha evidence:** 7 packs / 9 profiles / 36 components / 5 harness targets / 7 case-study flows /
|
|
33
|
+
**Public alpha evidence:** 7 packs / 9 profiles / 36 components / 5 harness targets / 7 case-study flows / 252 tests / 0 moderate+ npm audit issues / fresh `npx @alpha` smoke
|
|
34
34
|
|
|
35
35
|
NEKOWORK does not automatically commit, push, publish, deploy, or apply diffs. `apply` is explicit and requires verified ship-ready evidence.
|
|
36
36
|
|
|
@@ -57,10 +57,11 @@ node scripts/cli.js gate status --session first-run
|
|
|
57
57
|
|
|
58
58
|
The simple path maps to the full evidence loop: `check = doctor --quick`, and `run = work -> verify -> ship`.
|
|
59
59
|
|
|
60
|
-
To add generated harness surfaces to another local repository
|
|
60
|
+
To add generated harness surfaces to another local repository:
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
|
-
|
|
63
|
+
cd /path/to/my-project
|
|
64
|
+
npx -y @ps-neko/nekowork@alpha init --profile developer --project-root .
|
|
64
65
|
```
|
|
65
66
|
|
|
66
67
|
## Example Report
|
|
@@ -139,9 +140,9 @@ NEKOWORK is for teams that want AI-assisted development without making the agent
|
|
|
139
140
|
|
|
140
141
|
## Status
|
|
141
142
|
|
|
142
|
-
- Current repository version: `0.1.0-alpha.
|
|
143
|
+
- Current repository version: `0.1.0-alpha.4`
|
|
143
144
|
- Current package name: `@ps-neko/nekowork`
|
|
144
|
-
- Current npm alpha: `@ps-neko/nekowork@0.1.0-alpha.
|
|
145
|
+
- Current npm alpha: `@ps-neko/nekowork@0.1.0-alpha.4`
|
|
145
146
|
- Supported install path today: npm alpha, clone, submodule, or local repository integration
|
|
146
147
|
- Dist-tag note: use `@alpha` until a stable release; `latest` still points at the first alpha line
|
|
147
148
|
- Default mode: mock providers, no API keys, no provider CLI calls
|
|
@@ -149,7 +150,7 @@ NEKOWORK is for teams that want AI-assisted development without making the agent
|
|
|
149
150
|
Current local verification:
|
|
150
151
|
|
|
151
152
|
- `npm run lint`: pass
|
|
152
|
-
- `npm test`:
|
|
153
|
+
- `npm test`: 252 tests pass
|
|
153
154
|
- `npm audit --audit-level=moderate`: 0 vulnerabilities
|
|
154
155
|
- `npm pack --dry-run --json`: pass
|
|
155
156
|
- `npx -y @ps-neko/nekowork@alpha check`: pass with warnings only
|
|
@@ -217,10 +218,11 @@ node scripts/cli.js gate status --session first-run
|
|
|
217
218
|
|
|
218
219
|
`run` executes `work -> verify -> ship`. `report` turns the session evidence into a readable `REPORT.md`. It does not apply by default. `apply` is always explicit and requires a verified `SHIP_READY` live-work diff.
|
|
219
220
|
|
|
220
|
-
To initialize another local repository
|
|
221
|
+
To initialize another local repository with the published alpha:
|
|
221
222
|
|
|
222
223
|
```bash
|
|
223
|
-
|
|
224
|
+
cd /path/to/my-project
|
|
225
|
+
npx -y @ps-neko/nekowork@alpha init --profile developer --project-root .
|
|
224
226
|
```
|
|
225
227
|
|
|
226
228
|
Advanced path:
|
|
@@ -268,7 +270,15 @@ Outputs are written under:
|
|
|
268
270
|
|
|
269
271
|
## Use It In Another Project
|
|
270
272
|
|
|
271
|
-
|
|
273
|
+
Shortest npm alpha install shape:
|
|
274
|
+
|
|
275
|
+
```bash
|
|
276
|
+
cd <target-project>
|
|
277
|
+
npx -y @ps-neko/nekowork@alpha init --profile developer --project-root .
|
|
278
|
+
npx -y @ps-neko/nekowork@alpha check --project-root .
|
|
279
|
+
```
|
|
280
|
+
|
|
281
|
+
Repository-pinned install shape:
|
|
272
282
|
|
|
273
283
|
```bash
|
|
274
284
|
cd <target-project>
|
|
@@ -411,7 +421,7 @@ npm run security:hardening
|
|
|
411
421
|
npm pack --dry-run --json
|
|
412
422
|
```
|
|
413
423
|
|
|
414
|
-
`npm pack --dry-run --json` currently produces a package named like `ps-neko-nekowork-0.1.0-alpha.
|
|
424
|
+
`npm pack --dry-run --json` currently produces a package named like `ps-neko-nekowork-0.1.0-alpha.4.tgz`. It does not publish.
|
|
415
425
|
|
|
416
426
|
## Documentation
|
|
417
427
|
|
package/agent.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
spec_version: gitagent/0.1.0
|
|
2
2
|
name: nekowork
|
|
3
3
|
runtime_name: harness
|
|
4
|
-
version: 0.1.0-alpha.
|
|
4
|
+
version: 0.1.0-alpha.4
|
|
5
5
|
description: "NEKOWORK HARNESS - Local-first multi-AI development verification runtime"
|
|
6
6
|
license: MIT
|
|
7
7
|
homepage: https://github.com/Ps-Neko/NEKOWORK
|
package/docs/ARCHITECTURE.md
CHANGED
|
@@ -202,7 +202,7 @@ Builders project the catalog into tool-specific files:
|
|
|
202
202
|
|
|
203
203
|
## Release State
|
|
204
204
|
|
|
205
|
-
The current release line is `0.1.0-alpha.
|
|
205
|
+
The current release line is `0.1.0-alpha.4`:
|
|
206
206
|
|
|
207
207
|
- Repository and GitHub tarball release are available.
|
|
208
208
|
- Public npm alpha is published as `@ps-neko/nekowork@alpha`.
|
package/docs/AUDIT.md
CHANGED
|
@@ -2,23 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
Status date: 2026-05-08
|
|
4
4
|
|
|
5
|
-
This audit summarizes the current NEKOWORK state after publishing the `0.1.0-alpha.
|
|
5
|
+
This audit summarizes the current NEKOWORK state after publishing the `0.1.0-alpha.4` public alpha. It replaces the older week-by-week scratch audit, which contained stale planning notes and encoding damage.
|
|
6
6
|
|
|
7
7
|
## Current Status
|
|
8
8
|
|
|
9
9
|
| Area | Status | Notes |
|
|
10
10
|
|---|---|---|
|
|
11
|
-
| Package metadata | OK | `@ps-neko/nekowork@0.1.0-alpha.
|
|
12
|
-
| npm publish | OK | `@ps-neko/nekowork@alpha` points at `0.1.0-alpha.
|
|
11
|
+
| Package metadata | OK | `@ps-neko/nekowork@0.1.0-alpha.4`, `agent.yaml` uses `name: nekowork`, `runtime_name: harness`, and matching version |
|
|
12
|
+
| npm publish | OK | `@ps-neko/nekowork@alpha` points at `0.1.0-alpha.4` |
|
|
13
13
|
| Source install | OK | Clone, local checkout, and submodule workflows are documented |
|
|
14
|
-
| Public npm alpha | OK | `docs/PUBLISH-ALPHA.md` records the first alpha publish and the `0.1.0-alpha.
|
|
14
|
+
| Public npm alpha | OK | `docs/PUBLISH-ALPHA.md` records the first alpha publish and the `0.1.0-alpha.4` alpha update |
|
|
15
15
|
| CLI doctor/check | OK | `check`, `doctor`, `doctor --quick`, and `doctor --gemini-smoke` are available |
|
|
16
16
|
| Provider auth | OK | Local delegated CLI auth is the default path |
|
|
17
17
|
| Internal provider adapter | OK | `HARNESS_PROVIDER_OVERRIDE=internal` can call an explicit JSON command adapter without weakening gates |
|
|
18
18
|
| Catalog | OK | 7 official packs, 11 agents, 10 skills, 5 hooks, 7 modules, 36 components, 9 profiles |
|
|
19
19
|
| Multi-harness output | OK | Claude, Codex, Cursor, Gemini, and OpenCode builders are present |
|
|
20
20
|
| Quick demo | OK | `npm run demo:quick` verifies the shortest no-API `doctor -> run -> report -> gate status` path |
|
|
21
|
-
| Fresh npm alpha smoke | OK | CI runs `npx -y @ps-neko/nekowork@alpha
|
|
21
|
+
| Fresh npm alpha smoke | OK | CI runs `npx -y @ps-neko/nekowork@alpha check --json` from a disposable directory |
|
|
22
22
|
| Report UX | OK | `report` writes inspect-only `REPORT.md` and `report-summary.json` from session evidence |
|
|
23
23
|
| External demo | OK | `npm run demo:external` verifies a disposable target project flow |
|
|
24
24
|
| Third-party case studies | OK | `docs/case-studies/` records real public repository runs for npm package, auth boundary, Python protocol, and environment configuration targets |
|
|
@@ -30,7 +30,7 @@ This audit summarizes the current NEKOWORK state after publishing the `0.1.0-alp
|
|
|
30
30
|
| Persistent wakeup | OK | `wait` resumes supported active sessions and blocks on `HUMAN_GATE` |
|
|
31
31
|
| Generated docs | OK | CODEMAP output is stable ASCII and reproducible |
|
|
32
32
|
| Tests | OK | Unit, integration, and e2e suites pass locally and in CI |
|
|
33
|
-
| Release | OK | `v0.1.0-alpha.
|
|
33
|
+
| Release | OK | `v0.1.0-alpha.4` is tagged and published as a GitHub prerelease |
|
|
34
34
|
|
|
35
35
|
## Verification Gates
|
|
36
36
|
|
|
@@ -55,7 +55,7 @@ Current local result for this working tree:
|
|
|
55
55
|
- `npm run test:unit`: covered by full `npm test`
|
|
56
56
|
- `npm run validate:all`: pass
|
|
57
57
|
- `npm run lint`: pass
|
|
58
|
-
- `npm test`:
|
|
58
|
+
- `npm test`: 252 tests pass
|
|
59
59
|
- quick run demo: pass through `npm run demo:quick -- --cleanup`
|
|
60
60
|
- external project e2e smoke: pass through `npm test`
|
|
61
61
|
- `node scripts/sync-claude-md.js --check`: pass
|
|
@@ -63,9 +63,9 @@ Current local result for this working tree:
|
|
|
63
63
|
- `npm audit --audit-level=moderate`: 0 vulnerabilities
|
|
64
64
|
- `npm pack --dry-run --json`: pass
|
|
65
65
|
- `npm publish --dry-run --access public --tag alpha`: pass
|
|
66
|
-
- `npm publish --access public --tag alpha`: `0.1.0-alpha.
|
|
67
|
-
- `npm view @ps-neko/nekowork dist-tags version versions --json`: `alpha` points at `0.1.0-alpha.
|
|
68
|
-
- `npx -y @ps-neko/nekowork@alpha check`: passed for `0.1.0-alpha.
|
|
66
|
+
- `npm publish --access public --tag alpha`: `0.1.0-alpha.4` published
|
|
67
|
+
- `npm view @ps-neko/nekowork dist-tags version versions --json`: `alpha` points at `0.1.0-alpha.4`; `latest` remains `0.1.0-alpha.0`
|
|
68
|
+
- `npx -y @ps-neko/nekowork@alpha check`: passed for `0.1.0-alpha.4` with WARN summary from non-git project root and Gemini auth not checked
|
|
69
69
|
|
|
70
70
|
## Completed Work
|
|
71
71
|
|
|
@@ -93,7 +93,7 @@ Current local result for this working tree:
|
|
|
93
93
|
- Official packs expose curated install shapes without creating a second safety model.
|
|
94
94
|
- Checked-in example fixtures now cover financial UI, CI hardening, and quality lifecycle evidence flows.
|
|
95
95
|
- Third-party case studies record NEKOWORK runs against `sindresorhus/is-plain-obj`, `jshttp/basic-auth`, `python-hyper/h11`, and `motdotla/dotenv`.
|
|
96
|
-
- Public npm alpha `0.1.0-alpha.
|
|
96
|
+
- Public npm alpha `0.1.0-alpha.4` is published under the `alpha` dist-tag.
|
|
97
97
|
|
|
98
98
|
## Remaining Optional Work
|
|
99
99
|
|
package/docs/CATALOG-PACKS.md
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@
|
|
|
7
7
|
### Added
|
|
8
8
|
- No entries yet.
|
|
9
9
|
|
|
10
|
+
### Changed
|
|
11
|
+
- No entries yet.
|
|
12
|
+
|
|
13
|
+
## [0.1.0-alpha.4] - 2026-05-08
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- Add release-surface version consistency coverage, bringing the suite to 252 tests.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Align published alpha smoke, feedback templates, and demo docs around the beginner `check` command.
|
|
20
|
+
- Align `agent.yaml`, setup, porting, demo, and runbook release references with the package version.
|
|
21
|
+
- Document `npx @alpha init --project-root .` as the shortest target-project install path.
|
|
22
|
+
|
|
10
23
|
## [0.1.0-alpha.3] - 2026-05-08
|
|
11
24
|
|
|
12
25
|
### Added
|
package/docs/CODEMAPS/tests.md
CHANGED
|
@@ -51,6 +51,7 @@ tests/
|
|
|
51
51
|
|-- team.test.js
|
|
52
52
|
|-- token-vault.test.js
|
|
53
53
|
|-- verify.test.js
|
|
54
|
+
|-- version-consistency.test.js
|
|
54
55
|
|-- wait.test.js
|
|
55
56
|
`-- work.test.js
|
|
56
57
|
```
|
|
@@ -99,6 +100,7 @@ tests/
|
|
|
99
100
|
| `unit/team.test.js` | _(none)_ | |
|
|
100
101
|
| `unit/token-vault.test.js` | _(none)_ | |
|
|
101
102
|
| `unit/verify.test.js` | _(none)_ | |
|
|
103
|
+
| `unit/version-consistency.test.js` | _(none)_ | |
|
|
102
104
|
| `unit/wait.test.js` | _(none)_ | |
|
|
103
105
|
| `unit/work.test.js` | _(none)_ | |
|
|
104
106
|
|
package/docs/DEMO.md
CHANGED
|
@@ -8,7 +8,7 @@ This demo uses mock providers. It does not call Claude, Codex, Gemini, or paid A
|
|
|
8
8
|
npm run demo:quick -- --cleanup
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
This is the shortest demo path. It creates a disposable target project, runs `
|
|
11
|
+
This is the shortest demo path. It creates a disposable target project, runs `check`, runs `run = work -> verify -> ship`, generates `REPORT.md`, checks `gate status`, and removes the target when `--cleanup` is set.
|
|
12
12
|
|
|
13
13
|
Expected shape:
|
|
14
14
|
|
|
@@ -28,7 +28,7 @@ This transcript is the README-friendly demo path. It uses mock providers, so it
|
|
|
28
28
|

|
|
29
29
|
|
|
30
30
|
```text
|
|
31
|
-
$ npx -y @ps-neko/nekowork@alpha
|
|
31
|
+
$ npx -y @ps-neko/nekowork@alpha check
|
|
32
32
|
NEKOWORK doctor
|
|
33
33
|
STATUS CHECK MESSAGE
|
|
34
34
|
PASS node Node 22+
|
|
@@ -67,7 +67,7 @@ The quick demo writes:
|
|
|
67
67
|
npm run demo:external
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
-
This creates a tiny disposable target project, applies the `developer` profile, runs `
|
|
70
|
+
This creates a tiny disposable target project, applies the `developer` profile, runs `check`, and writes a planning session into the target project's `.harness/` directory. See [EXAMPLE-PROJECT.md](EXAMPLE-PROJECT.md) for details.
|
|
71
71
|
|
|
72
72
|
## Command
|
|
73
73
|
|
|
@@ -143,7 +143,7 @@ project root : C:\path\to\harness
|
|
|
143
143
|
|
|
144
144
|
STATUS CHECK MESSAGE
|
|
145
145
|
PASS node Node 24.x
|
|
146
|
-
PASS package metadata @ps-neko/nekowork@0.1.0-alpha.
|
|
146
|
+
PASS package metadata @ps-neko/nekowork@0.1.0-alpha.4; public alpha package
|
|
147
147
|
PASS git worktree project root is inside a git worktree
|
|
148
148
|
WARN gemini cli installed, auth status is not checked non-interactively
|
|
149
149
|
|
package/docs/FAILURE-MODES.md
CHANGED
|
@@ -84,7 +84,7 @@ Live mode can fail if local CLI auth is missing or expired. In that case, log in
|
|
|
84
84
|
|
|
85
85
|
## npm / npx Problems
|
|
86
86
|
|
|
87
|
-
If `npx -y @ps-neko/nekowork@alpha
|
|
87
|
+
If `npx -y @ps-neko/nekowork@alpha check` fails, capture:
|
|
88
88
|
|
|
89
89
|
- OS and shell
|
|
90
90
|
- Node and npm versions
|
package/docs/FEEDBACK-TRIAGE.md
CHANGED
|
@@ -8,7 +8,7 @@ Use it for GitHub issues filed through:
|
|
|
8
8
|
|
|
9
9
|
- Alpha feedback
|
|
10
10
|
- Bug report
|
|
11
|
-
- Direct maintainer notes that include `
|
|
11
|
+
- Direct maintainer notes that include `check --json`, `REPORT.md`, or install output
|
|
12
12
|
|
|
13
13
|
## Triage Principles
|
|
14
14
|
|
|
@@ -22,7 +22,7 @@ Use it for GitHub issues filed through:
|
|
|
22
22
|
|
|
23
23
|
| Class | Signals | First response |
|
|
24
24
|
|---|---|---|
|
|
25
|
-
| Install failure | `npx`, npm, Node version, package metadata, binary resolution | Ask for OS/shell, Node/npm, exact command, and `
|
|
25
|
+
| Install failure | `npx`, npm, Node version, package metadata, binary resolution | Ask for OS/shell, Node/npm, exact command, and `check --json` |
|
|
26
26
|
| Auth confusion | Claude/Codex/Gemini login status, API key warning, provider CLI path | Clarify delegated CLI auth and ask whether env API keys were set intentionally |
|
|
27
27
|
| Evidence confusion | Missing `REPORT.md`, unclear verdict, no `NO_SHIP`, acceptance coverage confusion | Ask for session path and report summary; link report contract |
|
|
28
28
|
| Safety concern | apply, commit, push, publish, deploy, secrets, destructive changes | Confirm no automatic mutation occurred; request redacted logs and gate/ship summaries |
|
|
@@ -38,7 +38,7 @@ An issue is actionable when it includes at least three of:
|
|
|
38
38
|
- OS and shell
|
|
39
39
|
- Node and npm versions
|
|
40
40
|
- exact command
|
|
41
|
-
- redacted `
|
|
41
|
+
- redacted `check --json`
|
|
42
42
|
- redacted `REPORT.md` summary
|
|
43
43
|
- session evidence file names, such as `verify-summary.json` or `ship-summary.json`
|
|
44
44
|
- expected behavior and actual behavior
|
|
@@ -55,7 +55,7 @@ If the issue is about ship/apply safety, require:
|
|
|
55
55
|
| Severity | Meaning | Examples |
|
|
56
56
|
|---|---|---|
|
|
57
57
|
| Critical | Safety invariant appears bypassed | automatic apply, publish, deploy, push, PR, or secret exposure |
|
|
58
|
-
| High | First-run or release path is blocked for a supported setup | `npx @alpha
|
|
58
|
+
| High | First-run or release path is blocked for a supported setup | `npx @alpha check` fails on supported Node/npm |
|
|
59
59
|
| Medium | Important docs or workflow confusion with a workaround | unclear report output, install docs missing platform note |
|
|
60
60
|
| Low | Enhancement or polish | copy edit, new example request, extra case-study suggestion |
|
|
61
61
|
|
|
@@ -66,7 +66,7 @@ Critical and high issues should keep `ship_ready=false` until reproduced or expl
|
|
|
66
66
|
Start with the smallest command that matches the report:
|
|
67
67
|
|
|
68
68
|
```bash
|
|
69
|
-
npx -y @ps-neko/nekowork@alpha
|
|
69
|
+
npx -y @ps-neko/nekowork@alpha check --json
|
|
70
70
|
```
|
|
71
71
|
|
|
72
72
|
For source checkout reports:
|
|
@@ -136,9 +136,9 @@ Next step:
|
|
|
136
136
|
|
|
137
137
|
## Alpha.3 Gate
|
|
138
138
|
|
|
139
|
-
Do not publish
|
|
139
|
+
Do not publish a new alpha for feedback-only changes until:
|
|
140
140
|
|
|
141
141
|
- `@alpha` smoke remains green
|
|
142
142
|
- new feedback docs or templates are covered by tests
|
|
143
143
|
- any release-blocker feedback is closed or documented as unresolved
|
|
144
|
-
- changelog entries match the intended alpha
|
|
144
|
+
- changelog entries match the intended alpha contents
|
package/docs/PORTING.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Porting NEKOWORK Into Another Project
|
|
2
2
|
|
|
3
|
-
NEKOWORK `0.1.0-alpha.
|
|
3
|
+
NEKOWORK `0.1.0-alpha.4` is the current repository version and the published `@ps-neko/nekowork@alpha` package. Use npm alpha for the shortest install path, or use a submodule/local checkout for repository-pinned workflows and examples.
|
|
4
4
|
|
|
5
5
|
## Local Demo First
|
|
6
6
|
|
|
@@ -27,6 +27,16 @@ target-project/
|
|
|
27
27
|
|
|
28
28
|
The tool root stays in `.harness-tool/`. Generated harness files, session state, and git-aware execution target the project root.
|
|
29
29
|
|
|
30
|
+
## npm Alpha Install
|
|
31
|
+
|
|
32
|
+
Use this when you want the shortest target-project install path:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
cd <target-project>
|
|
36
|
+
npx -y @ps-neko/nekowork@alpha init --profile developer --project-root .
|
|
37
|
+
npx -y @ps-neko/nekowork@alpha check --project-root .
|
|
38
|
+
```
|
|
39
|
+
|
|
30
40
|
## Submodule Install
|
|
31
41
|
|
|
32
42
|
```bash
|
package/docs/PUBLISH-ALPHA.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# Public Alpha Publish Record
|
|
2
2
|
|
|
3
|
-
NEKOWORK `0.0.3` stays a private/local alpha. The first npm release is the public alpha `0.1.0-alpha.0`; the current public alpha is `0.1.0-alpha.
|
|
3
|
+
NEKOWORK `0.0.3` stays a private/local alpha. The first npm release is the public alpha `0.1.0-alpha.0`; the current public alpha is `0.1.0-alpha.4`.
|
|
4
4
|
|
|
5
5
|
Do not publish from the `0.0.3` line.
|
|
6
6
|
|
|
7
|
-
The repository metadata has been advanced to `0.1.0-alpha.
|
|
7
|
+
The repository metadata has been advanced to `0.1.0-alpha.4` with `private: false`. The `0.1.0-alpha.0` publish succeeded on 2026-05-07. The `0.1.0-alpha.1` publish also succeeded on 2026-05-07. The `0.1.0-alpha.2`, `0.1.0-alpha.3`, and `0.1.0-alpha.4` publishes succeeded on 2026-05-08 and moved the `alpha` dist-tag forward.
|
|
8
8
|
|
|
9
|
-
The matching Git tag and GitHub prerelease are published as `v0.1.0-alpha.
|
|
9
|
+
The matching Git tag and GitHub prerelease are published as `v0.1.0-alpha.4`:
|
|
10
10
|
|
|
11
11
|
```text
|
|
12
|
-
https://github.com/Ps-Neko/NEKOWORK/releases/tag/v0.1.0-alpha.
|
|
12
|
+
https://github.com/Ps-Neko/NEKOWORK/releases/tag/v0.1.0-alpha.4
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Registry State
|
|
@@ -27,14 +27,14 @@ The current alpha install path points at the release line:
|
|
|
27
27
|
|
|
28
28
|
```text
|
|
29
29
|
npm view @ps-neko/nekowork@alpha version --json
|
|
30
|
-
-> 0.1.0-alpha.
|
|
30
|
+
-> 0.1.0-alpha.4
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
Dist-tags:
|
|
34
34
|
|
|
35
35
|
```text
|
|
36
36
|
npm view @ps-neko/nekowork dist-tags --json
|
|
37
|
-
-> { "alpha": "0.1.0-alpha.
|
|
37
|
+
-> { "alpha": "0.1.0-alpha.4", "latest": "0.1.0-alpha.0" }
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
The publish package shape has been checked:
|
|
@@ -72,11 +72,18 @@ npm publish --access public --tag alpha
|
|
|
72
72
|
-> published 0.1.0-alpha.3
|
|
73
73
|
```
|
|
74
74
|
|
|
75
|
+
The fourth alpha update was also published with the same `alpha` dist-tag:
|
|
76
|
+
|
|
77
|
+
```text
|
|
78
|
+
npm publish --access public --tag alpha
|
|
79
|
+
-> published 0.1.0-alpha.4
|
|
80
|
+
```
|
|
81
|
+
|
|
75
82
|
After publish:
|
|
76
83
|
|
|
77
84
|
```text
|
|
78
|
-
npm view @ps-neko/nekowork@0.1.0-alpha.
|
|
79
|
-
-> 0.1.0-alpha.
|
|
85
|
+
npm view @ps-neko/nekowork@0.1.0-alpha.4 version --json
|
|
86
|
+
-> 0.1.0-alpha.4
|
|
80
87
|
```
|
|
81
88
|
|
|
82
89
|
`npx` smoke passed:
|
|
@@ -101,7 +108,7 @@ Published public alpha package:
|
|
|
101
108
|
|
|
102
109
|
```text
|
|
103
110
|
name: @ps-neko/nekowork
|
|
104
|
-
version: 0.1.0-alpha.
|
|
111
|
+
version: 0.1.0-alpha.4
|
|
105
112
|
dist-tag: alpha
|
|
106
113
|
bin: harness
|
|
107
114
|
```
|
|
@@ -116,13 +123,13 @@ Before publishing, explicitly confirm:
|
|
|
116
123
|
- npm 2FA readiness
|
|
117
124
|
- package name `@ps-neko/nekowork`
|
|
118
125
|
- binary name `harness`
|
|
119
|
-
- public alpha version `0.1.0-alpha.
|
|
126
|
+
- public alpha version `0.1.0-alpha.4`
|
|
120
127
|
- `private` removed or set to `false`
|
|
121
128
|
- publish tag is `alpha`, not `latest`
|
|
122
129
|
|
|
123
130
|
## Next Alpha Publish Checklist
|
|
124
131
|
|
|
125
|
-
Use this checklist for `0.1.0-alpha.
|
|
132
|
+
Use this checklist for `0.1.0-alpha.5` or any later alpha. Do not run it until the owner explicitly approves the publish.
|
|
126
133
|
|
|
127
134
|
1. Confirm the candidate scope in [RELEASE-READINESS.md](RELEASE-READINESS.md).
|
|
128
135
|
2. Move the intended changelog entries from `Unreleased` to the new version heading.
|
package/docs/QUICKSTART.md
CHANGED
|
@@ -28,10 +28,11 @@ node scripts/cli.js check
|
|
|
28
28
|
|
|
29
29
|
`check` is the beginner alias for `doctor --quick`. It checks Node.js, package metadata, git state, API key overrides, and provider CLI presence without running the slower freshness checks.
|
|
30
30
|
|
|
31
|
-
Initialize another local repository
|
|
31
|
+
Initialize another local repository with the published alpha:
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
|
|
34
|
+
cd /path/to/my-project
|
|
35
|
+
npx -y @ps-neko/nekowork@alpha init --profile developer --project-root .
|
|
35
36
|
```
|
|
36
37
|
|
|
37
38
|
`init` is the beginner alias for `install --apply`. It writes generated harness surfaces and install state to the target project. It does not commit, push, publish, or deploy.
|
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
Status date: 2026-05-08
|
|
4
4
|
|
|
5
|
-
NEKOWORK / HARNESS is release-ready for local use, repository-based installation, and public npm alpha installation. The repository and npm alpha are both at `0.1.0-alpha.
|
|
5
|
+
NEKOWORK / HARNESS is release-ready for local use, repository-based installation, and public npm alpha installation. The repository and npm alpha are both at `0.1.0-alpha.4`.
|
|
6
6
|
|
|
7
7
|
## Decision
|
|
8
8
|
|
|
9
9
|
- Decision: do not publish 0.0.3 to npm.
|
|
10
|
-
- Public alpha: `0.1.0-alpha.
|
|
10
|
+
- Public alpha: `0.1.0-alpha.4`, published with `--tag alpha`.
|
|
11
11
|
- `package.json` is set to `private: false` for the public alpha.
|
|
12
12
|
- The canonical repo is `Ps-Neko/NEKOWORK`.
|
|
13
|
-
- Current release track is `0.1.0-alpha.
|
|
14
|
-
- GitHub prerelease: `v0.1.0-alpha.
|
|
13
|
+
- Current release track is `0.1.0-alpha.4`; npm `@alpha` points at this version.
|
|
14
|
+
- GitHub prerelease: `v0.1.0-alpha.4`.
|
|
15
15
|
- Required local provider auth is delegated CLI auth, not long-lived API keys.
|
|
16
16
|
- Core workflow invariant is Claude work -> Codex verification -> Human Gate.
|
|
17
17
|
- Risk classifier, acceptance criteria artifacts, and profile safety validation are part of the release gate.
|
|
@@ -22,16 +22,16 @@ NEKOWORK / HARNESS is release-ready for local use, repository-based installation
|
|
|
22
22
|
|
|
23
23
|
GitHub Release:
|
|
24
24
|
|
|
25
|
-
- https://github.com/Ps-Neko/NEKOWORK/releases/tag/v0.1.0-alpha.
|
|
25
|
+
- https://github.com/Ps-Neko/NEKOWORK/releases/tag/v0.1.0-alpha.4
|
|
26
26
|
|
|
27
|
-
## 0.1.0-alpha.
|
|
27
|
+
## 0.1.0-alpha.4 Release Scope
|
|
28
28
|
|
|
29
|
-
The `0.1.0-alpha.
|
|
29
|
+
The `0.1.0-alpha.4` release scope is first-run install trust and release-surface version consistency:
|
|
30
30
|
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
31
|
+
- `agent.yaml` version matches `package.json`
|
|
32
|
+
- version consistency is covered by unit tests
|
|
33
|
+
- npm `init` guidance is documented as the shortest target-project install path
|
|
34
|
+
- `published-alpha-smoke` uses the beginner `check` command
|
|
35
35
|
- no catalog expansion unless a new surface directly strengthens verification evidence
|
|
36
36
|
|
|
37
37
|
Release exit criteria:
|
|
@@ -39,7 +39,7 @@ Release exit criteria:
|
|
|
39
39
|
- required gates below pass locally
|
|
40
40
|
- `published-alpha-smoke` passes in GitHub Actions
|
|
41
41
|
- `npm pack --dry-run --json` contains only intended files
|
|
42
|
-
- changelog `0.1.0-alpha.
|
|
42
|
+
- changelog `0.1.0-alpha.4` entries match the release contents
|
|
43
43
|
- `latest` remains documented as non-stable; install examples continue to use `@alpha`
|
|
44
44
|
|
|
45
45
|
## Required Gates
|
|
@@ -69,14 +69,14 @@ Current local verification after the decomposed workflow expansion:
|
|
|
69
69
|
- `npm run lint`: pass
|
|
70
70
|
- `node scripts/sync-claude-md.js --check`: pass
|
|
71
71
|
- `node scripts/build-codemaps.js --check`: pass
|
|
72
|
-
- `npm test`:
|
|
72
|
+
- `npm test`: 252 tests pass
|
|
73
73
|
- `npm run demo:quick -- --cleanup`: pass
|
|
74
74
|
- `npm audit --audit-level=moderate`: 0 vulnerabilities
|
|
75
75
|
- `npm pack --dry-run --json`: pass
|
|
76
76
|
- `npm publish --dry-run --access public --tag alpha`: pass
|
|
77
|
-
- `npm publish --access public --tag alpha`: `0.1.0-alpha.
|
|
78
|
-
- `npm view @ps-neko/nekowork dist-tags version versions --json`: `alpha` points at `0.1.0-alpha.
|
|
79
|
-
- `npx -y @ps-neko/nekowork@alpha check`: passed for `0.1.0-alpha.
|
|
77
|
+
- `npm publish --access public --tag alpha`: `0.1.0-alpha.4` published
|
|
78
|
+
- `npm view @ps-neko/nekowork dist-tags version versions --json`: `alpha` points at `0.1.0-alpha.4`; `latest` remains `0.1.0-alpha.0`
|
|
79
|
+
- `npx -y @ps-neko/nekowork@alpha check`: passed for `0.1.0-alpha.4` with WARN summary from non-git project root and Gemini auth not checked
|
|
80
80
|
- GitHub Actions `published-alpha-smoke`: validates the fresh `npx @alpha` path against the published package
|
|
81
81
|
|
|
82
82
|
## Install Smoke
|
|
@@ -84,11 +84,13 @@ Current local verification after the decomposed workflow expansion:
|
|
|
84
84
|
For the default developer profile:
|
|
85
85
|
|
|
86
86
|
```bash
|
|
87
|
+
npx -y @ps-neko/nekowork@alpha init --profile developer --project-root <target>
|
|
88
|
+
npx -y @ps-neko/nekowork@alpha check --project-root <target>
|
|
87
89
|
node scripts/install-plan.js --list --json
|
|
88
90
|
node scripts/install-plan.js --pack quality --json
|
|
89
91
|
node scripts/install-plan.js --profile developer --json
|
|
90
92
|
node scripts/portability/simulate-port.js <target> --profile developer --json
|
|
91
|
-
node scripts/
|
|
93
|
+
node scripts/cli.js init --profile developer --project-root <target>
|
|
92
94
|
node scripts/cli.js plan "release readiness smoke" --project-root <target>
|
|
93
95
|
node scripts/cli.js run "release readiness decomposed smoke" --project-root <target> --session release-run-smoke
|
|
94
96
|
```
|
|
@@ -156,7 +158,7 @@ Expected target outputs:
|
|
|
156
158
|
|
|
157
159
|
## Public npm Checklist
|
|
158
160
|
|
|
159
|
-
Already completed for `0.1.0-alpha.
|
|
161
|
+
Already completed for `0.1.0-alpha.4`. Repeat this checklist for the next public alpha:
|
|
160
162
|
|
|
161
163
|
1. Confirm the npm package name is still `@ps-neko/nekowork`.
|
|
162
164
|
2. Confirm the `harness` binary is still intentional.
|
package/docs/ROADMAP.md
CHANGED
|
@@ -4,21 +4,34 @@ Status date: 2026-05-08
|
|
|
4
4
|
|
|
5
5
|
This roadmap is intentionally small. NEKOWORK should improve the evidence surface before expanding the agent catalog.
|
|
6
6
|
|
|
7
|
-
## 0.1.0-alpha.
|
|
7
|
+
## 0.1.0-alpha.3
|
|
8
8
|
|
|
9
9
|
Status: released.
|
|
10
10
|
|
|
11
11
|
Goal: make the published package and first-run story easier to trust from the outside.
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Released scope:
|
|
14
14
|
|
|
15
|
-
- Keep fresh `npx @ps-neko/nekowork@alpha
|
|
15
|
+
- Keep fresh `npx @ps-neko/nekowork@alpha check` smoke coverage in CI.
|
|
16
16
|
- Keep the generated terminal SVG for the one-minute demo path.
|
|
17
17
|
- Keep README focused on evidence, report output, Human Gate, and explicit apply.
|
|
18
|
-
- Keep the external feedback path for alpha users to paste `
|
|
18
|
+
- Keep the external feedback path for alpha users to paste `check --json` and `REPORT.md` summaries.
|
|
19
19
|
- Preserve the current catalog size unless a new agent, skill, hook, or pack directly strengthens verification evidence.
|
|
20
20
|
|
|
21
|
-
## 0.1.0-alpha.
|
|
21
|
+
## 0.1.0-alpha.4
|
|
22
|
+
|
|
23
|
+
Status: released.
|
|
24
|
+
|
|
25
|
+
Goal: keep first-run install evidence internally consistent.
|
|
26
|
+
|
|
27
|
+
Released scope:
|
|
28
|
+
|
|
29
|
+
- Keep `agent.yaml` and `package.json` versions aligned.
|
|
30
|
+
- Cover release-surface version consistency with a unit test.
|
|
31
|
+
- Make `npx @alpha init --project-root .` the shortest documented target-project install path.
|
|
32
|
+
- Keep `@alpha check` smoke evidence green across local and GitHub Actions gates.
|
|
33
|
+
|
|
34
|
+
## 0.1.0-alpha.5 Candidate
|
|
22
35
|
|
|
23
36
|
Goal: gather external feedback and keep the release path boring.
|
|
24
37
|
|
package/docs/RUNBOOK.md
CHANGED
|
@@ -47,9 +47,16 @@ The validator runs through `npm run lint`.
|
|
|
47
47
|
|
|
48
48
|
Use a temporary target project:
|
|
49
49
|
|
|
50
|
+
```bash
|
|
51
|
+
npx -y @ps-neko/nekowork@alpha init --profile developer --project-root <target>
|
|
52
|
+
npx -y @ps-neko/nekowork@alpha check --project-root <target>
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
For repository-pinned source checkout testing:
|
|
56
|
+
|
|
50
57
|
```bash
|
|
51
58
|
node scripts/portability/simulate-port.js <target> --profile developer --verbose
|
|
52
|
-
node scripts/
|
|
59
|
+
node scripts/cli.js init --profile developer --project-root <target>
|
|
53
60
|
node scripts/cli.js doctor --project-root <target> --quick
|
|
54
61
|
node scripts/cli.js plan "release smoke" --project-root <target> --session release-smoke
|
|
55
62
|
node scripts/cli.js run "release decomposed smoke" --project-root <target> --session release-run-smoke
|
|
@@ -92,7 +99,7 @@ Do not run this checklist unless public publish is explicitly approved.
|
|
|
92
99
|
5. Confirm npm identity with `npm whoami`.
|
|
93
100
|
6. Confirm account 2FA readiness.
|
|
94
101
|
7. Confirm `private: false`.
|
|
95
|
-
8. Confirm the public alpha version, for example `0.1.0-alpha.
|
|
102
|
+
8. Confirm the public alpha version, for example `0.1.0-alpha.4`.
|
|
96
103
|
9. Run `npm publish --access public --tag alpha`.
|
|
97
104
|
10. Update README, Quickstart, Changelog, and release notes from "future npm path" to "published npm path".
|
|
98
105
|
|
package/docs/SETUP.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Start with [QUICKSTART.md](QUICKSTART.md) if this is your first run. This page is the deeper contributor setup guide.
|
|
4
4
|
|
|
5
|
-
NEKOWORK `0.1.0-alpha.
|
|
5
|
+
NEKOWORK `0.1.0-alpha.4` is the current repository version and the published `@ps-neko/nekowork@alpha` package. Use npm alpha for the shortest first-run path, or use a source checkout, submodule, or local repository integration when you need examples, tests, or repository-pinned workflows.
|
|
6
6
|
|
|
7
7
|
## Requirements
|
|
8
8
|
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
<text x="480" y="62" text-anchor="middle" font-family="Consolas, Menlo, monospace" font-size="13" fill="#c8d2dc">NEKOWORK alpha smoke</text>
|
|
22
22
|
</g>
|
|
23
23
|
<g font-family="Consolas, Menlo, monospace" font-size="18">
|
|
24
|
-
<text x="72" y="114" fill="#7ee787">$ npx -y @ps-neko/nekowork@alpha
|
|
24
|
+
<text x="72" y="114" fill="#7ee787">$ npx -y @ps-neko/nekowork@alpha check</text>
|
|
25
25
|
<text x="72" y="147" fill="#d7e3ec">NEKOWORK doctor</text>
|
|
26
26
|
<text x="72" y="179" fill="#8fb3c8">STATUS CHECK MESSAGE</text>
|
|
27
27
|
<text x="72" y="211" fill="#9be9a8">PASS node Node 22+</text>
|
|
28
|
-
<text x="72" y="243" fill="#9be9a8">PASS package metadata @ps-neko/nekowork@0.1.0-alpha.
|
|
28
|
+
<text x="72" y="243" fill="#9be9a8">PASS package metadata @ps-neko/nekowork@0.1.0-alpha.4</text>
|
|
29
29
|
<text x="72" y="275" fill="#9be9a8">PASS api key env no delegated-provider API key overrides</text>
|
|
30
30
|
<text x="72" y="307" fill="#ffd166">WARN gemini cli auth status is not checked non-interactively</text>
|
|
31
31
|
<text x="72" y="339" fill="#d7e3ec">summary: WARN (5 pass, 2 warn, 0 fail)</text>
|
|
@@ -16,22 +16,22 @@ jobs:
|
|
|
16
16
|
with:
|
|
17
17
|
node-version: '22'
|
|
18
18
|
|
|
19
|
-
- name: Fresh npx alpha
|
|
19
|
+
- name: Fresh npx alpha check smoke
|
|
20
20
|
shell: bash
|
|
21
21
|
run: |
|
|
22
22
|
set -euo pipefail
|
|
23
23
|
workdir="$RUNNER_TEMP/nekowork-alpha-smoke"
|
|
24
24
|
mkdir -p "$workdir"
|
|
25
25
|
cd "$workdir"
|
|
26
|
-
npx -y @ps-neko/nekowork@alpha
|
|
26
|
+
npx -y @ps-neko/nekowork@alpha check --json > check.json
|
|
27
27
|
node <<'NODE'
|
|
28
28
|
const { execSync } = require('node:child_process');
|
|
29
29
|
const fs = require('node:fs');
|
|
30
|
-
const report = JSON.parse(fs.readFileSync('
|
|
30
|
+
const report = JSON.parse(fs.readFileSync('check.json', 'utf8'));
|
|
31
31
|
const expectedVersion = JSON.parse(execSync('npm view @ps-neko/nekowork@alpha version --json', { encoding: 'utf8' }));
|
|
32
32
|
const metadata = report.checks.find((check) => check.name === 'package metadata');
|
|
33
33
|
if (report.summary.fail !== 0) {
|
|
34
|
-
throw new Error(`
|
|
34
|
+
throw new Error(`check reported ${report.summary.fail} failure(s)`);
|
|
35
35
|
}
|
|
36
36
|
if (!metadata || !metadata.message.includes(`@ps-neko/nekowork@${expectedVersion}`)) {
|
|
37
37
|
throw new Error(`unexpected package metadata: ${metadata?.message || '<missing>'}`);
|