@ps-neko/nekowork 0.1.0-alpha.1 → 0.1.0-alpha.3
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 +97 -17
- package/agent.yaml +1 -1
- package/docs/ARCHITECTURE.md +2 -2
- package/docs/AUDIT.md +19 -19
- package/docs/CATALOG-PACKS.md +3 -2
- package/docs/CHANGELOG.md +30 -1
- package/docs/CODEMAPS/scripts.md +1 -1
- package/docs/CODEMAPS/tests.md +5 -1
- package/docs/DEMO.md +3 -1
- package/docs/EXAMPLE-PROJECT.md +1 -1
- package/docs/FAILURE-MODES.md +94 -0
- package/docs/FEEDBACK-TRIAGE.md +144 -0
- package/docs/PORTING.md +1 -1
- package/docs/PUBLISH-ALPHA.md +69 -14
- package/docs/QUICKSTART.md +15 -7
- package/docs/RELEASE-READINESS.md +37 -12
- package/docs/ROADMAP.md +41 -0
- package/docs/RUNBOOK.md +1 -1
- package/docs/SAFETY-GUARANTEES.md +54 -0
- package/docs/SETUP.md +1 -1
- package/docs/TRUST-MODEL.md +46 -0
- package/docs/WHY-NEKOWORK.md +11 -1
- package/docs/WHY-NOT-AUTOPILOT.md +37 -0
- package/docs/assets/demo-terminal.svg +41 -0
- package/docs/case-studies/MOTDOTLA-DOTENV.md +191 -0
- package/docs/case-studies/README.md +1 -0
- package/docs/workflows-stash/harness-validate.yml +42 -9
- package/package.json +1 -1
- package/scripts/cli.js +25 -2
- package/scripts/doctor.js +1 -1
package/CLAUDE.md
CHANGED
package/README.md
CHANGED
|
@@ -1,14 +1,19 @@
|
|
|
1
1
|
# NEKOWORK
|
|
2
2
|
|
|
3
|
-
Local-first AI development
|
|
3
|
+
Local-first AI development quality runtime for Claude Code, Codex CLI, and Gemini CLI.
|
|
4
4
|
|
|
5
5
|
[](https://github.com/Ps-Neko/NEKOWORK/actions/workflows/harness-validate.yml)
|
|
6
6
|
|
|
7
|
-
NEKOWORK
|
|
7
|
+
NEKOWORK prevents AI coding agents from shipping unverified changes.
|
|
8
|
+
|
|
9
|
+
It runs:
|
|
8
10
|
|
|
9
|
-
|
|
11
|
+
1. Work
|
|
12
|
+
2. Independent verification
|
|
13
|
+
3. Human approval
|
|
14
|
+
4. Explicit apply
|
|
10
15
|
|
|
11
|
-
|
|
16
|
+
No auto-commit. No auto-push. No surprise deploy.
|
|
12
17
|
|
|
13
18
|
Product principle:
|
|
14
19
|
|
|
@@ -16,14 +21,48 @@ Product principle:
|
|
|
16
21
|
NEKOWORK = Claude work -> Codex verification -> Human Gate
|
|
17
22
|
```
|
|
18
23
|
|
|
19
|
-
NEKOWORK is
|
|
24
|
+
NEKOWORK is the product. HARNESS is the local runtime it packages: one source catalog, `agent.yaml`, projected into Claude Code, Codex CLI, Cursor, Gemini CLI, and OpenCode surfaces.
|
|
20
25
|
|
|
21
|
-
NEKOWORK intentionally
|
|
26
|
+
NEKOWORK is intentionally not a 100-agent pack. Every agent, skill, hook, profile, module, and pack must:
|
|
22
27
|
|
|
23
|
-
|
|
28
|
+
1. improve verification,
|
|
29
|
+
2. preserve one-executor writes,
|
|
30
|
+
3. produce auditable evidence,
|
|
31
|
+
4. respect Human Gate.
|
|
32
|
+
|
|
33
|
+
**Public alpha evidence:** 7 packs / 9 profiles / 36 components / 5 harness targets / 7 case-study flows / 251 tests / 0 moderate+ npm audit issues / fresh `npx @alpha` smoke
|
|
24
34
|
|
|
25
35
|
NEKOWORK does not automatically commit, push, publish, deploy, or apply diffs. `apply` is explicit and requires verified ship-ready evidence.
|
|
26
36
|
|
|
37
|
+
**One-minute demo:** [terminal transcript](docs/DEMO.md#one-minute-terminal-transcript) / [full report example](docs/DEMO-REPORT.md) / [alpha feedback](https://github.com/Ps-Neko/NEKOWORK/issues/new?template=alpha-feedback.yml) / [roadmap](docs/ROADMAP.md)
|
|
38
|
+
|
|
39
|
+

|
|
40
|
+
|
|
41
|
+
## Start Here
|
|
42
|
+
|
|
43
|
+
Use the current npm alpha for the published health smoke:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
npx -y @ps-neko/nekowork@alpha check
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Use a source checkout for the new simple command path:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
node scripts/cli.js check
|
|
53
|
+
node scripts/cli.js run "implement this safely" --session first-run
|
|
54
|
+
node scripts/cli.js report --session first-run
|
|
55
|
+
node scripts/cli.js gate status --session first-run
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
The simple path maps to the full evidence loop: `check = doctor --quick`, and `run = work -> verify -> ship`.
|
|
59
|
+
|
|
60
|
+
To add generated harness surfaces to another local repository from a source checkout:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
node /path/to/harness/scripts/cli.js init --profile developer --project-root /path/to/my-project
|
|
64
|
+
```
|
|
65
|
+
|
|
27
66
|
## Example Report
|
|
28
67
|
|
|
29
68
|
`report` is the main trust surface. It turns session evidence into a readable `REPORT.md`:
|
|
@@ -47,6 +86,26 @@ Evidence:
|
|
|
47
86
|
|
|
48
87
|
See the full report contract and example artifact in [docs/DEMO-REPORT.md](docs/DEMO-REPORT.md), and the one-minute terminal transcript in [docs/DEMO.md](docs/DEMO.md).
|
|
49
88
|
|
|
89
|
+
## Human Gate Example
|
|
90
|
+
|
|
91
|
+
```text
|
|
92
|
+
Risk: security-sensitive auth parser change
|
|
93
|
+
Codex verdict: approve_with_fixes
|
|
94
|
+
Ship ready: false
|
|
95
|
+
|
|
96
|
+
Required before apply:
|
|
97
|
+
[ ] Add parser boundary test
|
|
98
|
+
[ ] Remove long-lived API key env fallback
|
|
99
|
+
[ ] Re-run verify --strict-quality
|
|
100
|
+
|
|
101
|
+
Decision:
|
|
102
|
+
- approve
|
|
103
|
+
- block
|
|
104
|
+
- request fixes
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
Human Gate is the point where NEKOWORK stops being an autopilot and becomes an approval system.
|
|
108
|
+
|
|
50
109
|
## Compared With Agent Packs
|
|
51
110
|
|
|
52
111
|
| Tool pattern | Optimizes for | NEKOWORK optimizes for |
|
|
@@ -56,11 +115,21 @@ See the full report contract and example artifact in [docs/DEMO-REPORT.md](docs/
|
|
|
56
115
|
| Autopilot | Fast autonomous execution | Report, gate, explicit apply |
|
|
57
116
|
| Discipline workflows | Better development habits | Evidence-backed ship decision |
|
|
58
117
|
|
|
118
|
+
## When To Choose What
|
|
119
|
+
|
|
120
|
+
| Use case | Prefer |
|
|
121
|
+
|---|---|
|
|
122
|
+
| Add TDD and discipline habits to Claude Code | Superpowers |
|
|
123
|
+
| Get the broadest Claude Code skill/command environment | Everything Claude Code |
|
|
124
|
+
| Simulate startup team roles from planning to QA | GStack |
|
|
125
|
+
| Run autonomous multi-agent execution | OMC |
|
|
126
|
+
| Verify AI changes, require human approval, then apply explicitly | NEKOWORK |
|
|
127
|
+
|
|
59
128
|
## Three Paths
|
|
60
129
|
|
|
61
130
|
Most users should start with the Beginner path. The other paths are for explicit phase control or legacy compatibility.
|
|
62
131
|
|
|
63
|
-
1. Beginner: `
|
|
132
|
+
1. Beginner: `check -> run -> report -> gate`
|
|
64
133
|
2. Advanced: `ask -> plan -> team -> work -> verify -> gate -> ship -> report -> apply`
|
|
65
134
|
3. Legacy: `review` / `review-cycle`
|
|
66
135
|
|
|
@@ -70,19 +139,20 @@ NEKOWORK is for teams that want AI-assisted development without making the agent
|
|
|
70
139
|
|
|
71
140
|
## Status
|
|
72
141
|
|
|
73
|
-
- Current repository version: `0.1.0-alpha.
|
|
142
|
+
- Current repository version: `0.1.0-alpha.3`
|
|
74
143
|
- Current package name: `@ps-neko/nekowork`
|
|
75
|
-
- npm
|
|
144
|
+
- Current npm alpha: `@ps-neko/nekowork@0.1.0-alpha.3`
|
|
76
145
|
- Supported install path today: npm alpha, clone, submodule, or local repository integration
|
|
77
|
-
- Dist-tag note:
|
|
146
|
+
- Dist-tag note: use `@alpha` until a stable release; `latest` still points at the first alpha line
|
|
78
147
|
- Default mode: mock providers, no API keys, no provider CLI calls
|
|
79
148
|
|
|
80
149
|
Current local verification:
|
|
81
150
|
|
|
82
151
|
- `npm run lint`: pass
|
|
83
|
-
- `npm test`:
|
|
152
|
+
- `npm test`: 251 tests pass
|
|
84
153
|
- `npm audit --audit-level=moderate`: 0 vulnerabilities
|
|
85
154
|
- `npm pack --dry-run --json`: pass
|
|
155
|
+
- `npx -y @ps-neko/nekowork@alpha check`: pass with warnings only
|
|
86
156
|
|
|
87
157
|
## Case-study Evidence
|
|
88
158
|
|
|
@@ -94,6 +164,7 @@ Current local verification:
|
|
|
94
164
|
| npm package boundary | package/release risk | pack/audit evidence |
|
|
95
165
|
| Auth parser boundary | auth/security risk | parser boundary evidence |
|
|
96
166
|
| Python protocol parser | protocol correctness risk | test-backed verification |
|
|
167
|
+
| Dotenv configuration boundary | config/security risk | no-secret parser evidence |
|
|
97
168
|
|
|
98
169
|
## Official Packs
|
|
99
170
|
|
|
@@ -118,7 +189,7 @@ Requirements:
|
|
|
118
189
|
Fastest no-API demo:
|
|
119
190
|
|
|
120
191
|
```bash
|
|
121
|
-
npx -y @ps-neko/nekowork@alpha
|
|
192
|
+
npx -y @ps-neko/nekowork@alpha check
|
|
122
193
|
```
|
|
123
194
|
|
|
124
195
|
Repository demo:
|
|
@@ -138,8 +209,7 @@ Recommended path for most users:
|
|
|
138
209
|
git clone https://github.com/Ps-Neko/NEKOWORK.git harness
|
|
139
210
|
cd harness
|
|
140
211
|
npm ci
|
|
141
|
-
node scripts/cli.js
|
|
142
|
-
node scripts/cli.js ask "clarify a risky or ambiguous request" --session first-ask
|
|
212
|
+
node scripts/cli.js check
|
|
143
213
|
node scripts/cli.js run "implement, verify, and prepare ship readiness" --session first-run
|
|
144
214
|
node scripts/cli.js report --session first-run
|
|
145
215
|
node scripts/cli.js gate status --session first-run
|
|
@@ -147,6 +217,12 @@ node scripts/cli.js gate status --session first-run
|
|
|
147
217
|
|
|
148
218
|
`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.
|
|
149
219
|
|
|
220
|
+
To initialize another local repository from this checkout:
|
|
221
|
+
|
|
222
|
+
```bash
|
|
223
|
+
node /path/to/harness/scripts/cli.js init --profile developer --project-root /path/to/my-project
|
|
224
|
+
```
|
|
225
|
+
|
|
150
226
|
Advanced path:
|
|
151
227
|
|
|
152
228
|
```text
|
|
@@ -163,13 +239,15 @@ The default review path uses mock providers, so it does not need API keys or pro
|
|
|
163
239
|
|
|
164
240
|
For the fuller first-run guide, see [docs/QUICKSTART.md](docs/QUICKSTART.md).
|
|
165
241
|
|
|
242
|
+
For the trust and recovery model, see [Safety Guarantees](docs/SAFETY-GUARANTEES.md), [Failure Modes](docs/FAILURE-MODES.md), [Trust Model](docs/TRUST-MODEL.md), and [Why Not Autopilot](docs/WHY-NOT-AUTOPILOT.md).
|
|
243
|
+
|
|
166
244
|
To see the repository-based external project flow end to end:
|
|
167
245
|
|
|
168
246
|
```bash
|
|
169
247
|
npm run demo:external
|
|
170
248
|
```
|
|
171
249
|
|
|
172
|
-
To inspect small case-study targets, see [examples/trading-dashboard-mock](examples/trading-dashboard-mock), [examples/github-actions-hardening](examples/github-actions-hardening), [examples/quality-lifecycle-smoke](examples/quality-lifecycle-smoke), and [docs/case-studies](docs/case-studies). They demonstrate financial UI, CI workflow, quality lifecycle, npm package, auth parser,
|
|
250
|
+
To inspect small case-study targets, see [examples/trading-dashboard-mock](examples/trading-dashboard-mock), [examples/github-actions-hardening](examples/github-actions-hardening), [examples/quality-lifecycle-smoke](examples/quality-lifecycle-smoke), and [docs/case-studies](docs/case-studies). They demonstrate financial UI, CI workflow, quality lifecycle, npm package, auth parser, Python protocol library, and environment configuration flows while still preserving Codex verification, Human Gate policy, and explicit apply control.
|
|
173
251
|
|
|
174
252
|
## What You Get
|
|
175
253
|
|
|
@@ -333,7 +411,7 @@ npm run security:hardening
|
|
|
333
411
|
npm pack --dry-run --json
|
|
334
412
|
```
|
|
335
413
|
|
|
336
|
-
`npm pack --dry-run --json` currently produces a package named like `ps-neko-nekowork-0.1.0-alpha.
|
|
414
|
+
`npm pack --dry-run --json` currently produces a package named like `ps-neko-nekowork-0.1.0-alpha.3.tgz`. It does not publish.
|
|
337
415
|
|
|
338
416
|
## Documentation
|
|
339
417
|
|
|
@@ -341,6 +419,8 @@ npm pack --dry-run --json
|
|
|
341
419
|
- [docs/WHY-NEKOWORK.md](docs/WHY-NEKOWORK.md) - comparison and product positioning
|
|
342
420
|
- [docs/CATALOG-PACKS.md](docs/CATALOG-PACKS.md) - curated catalog, official packs, and case-study evidence
|
|
343
421
|
- [docs/PUBLISH-ALPHA.md](docs/PUBLISH-ALPHA.md) - public npm alpha release plan
|
|
422
|
+
- [docs/ROADMAP.md](docs/ROADMAP.md) - small alpha roadmap and non-goals
|
|
423
|
+
- [docs/FEEDBACK-TRIAGE.md](docs/FEEDBACK-TRIAGE.md) - alpha feedback classification and response guide
|
|
344
424
|
- [docs/INTERNAL-PROVIDER.md](docs/INTERNAL-PROVIDER.md) - private command adapter protocol
|
|
345
425
|
- [docs/DEMO.md](docs/DEMO.md) - sample command output and generated files
|
|
346
426
|
- [docs/DEMO-REPORT.md](docs/DEMO-REPORT.md) - readable session report UX
|
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.2
|
|
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,8 +202,8 @@ 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.2`:
|
|
206
206
|
|
|
207
207
|
- Repository and GitHub tarball release are available.
|
|
208
208
|
- Public npm alpha is published as `@ps-neko/nekowork@alpha`.
|
|
209
|
-
- Clone, submodule, and local checkout integration remain
|
|
209
|
+
- Clone, submodule, and local checkout integration remain supported for repository-pinned workflows.
|
package/docs/AUDIT.md
CHANGED
|
@@ -1,26 +1,27 @@
|
|
|
1
1
|
# Audit
|
|
2
2
|
|
|
3
|
-
Status date: 2026-05-
|
|
3
|
+
Status date: 2026-05-08
|
|
4
4
|
|
|
5
|
-
This audit summarizes the current NEKOWORK state after
|
|
5
|
+
This audit summarizes the current NEKOWORK state after publishing the `0.1.0-alpha.3` 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 |
|
|
11
|
+
| Package metadata | OK | `@ps-neko/nekowork@0.1.0-alpha.3`, `agent.yaml` uses `name: nekowork`, `runtime_name: harness` |
|
|
12
|
+
| npm publish | OK | `@ps-neko/nekowork@alpha` points at `0.1.0-alpha.3` |
|
|
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
|
|
15
|
-
| CLI doctor | OK | `doctor`, `doctor --quick`, and `doctor --gemini-smoke` are available |
|
|
14
|
+
| Public npm alpha | OK | `docs/PUBLISH-ALPHA.md` records the first alpha publish and the `0.1.0-alpha.3` alpha update |
|
|
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 doctor --quick --json` from a disposable directory |
|
|
21
22
|
| Report UX | OK | `report` writes inspect-only `REPORT.md` and `report-summary.json` from session evidence |
|
|
22
23
|
| External demo | OK | `npm run demo:external` verifies a disposable target project flow |
|
|
23
|
-
| Third-party case studies | OK | `docs/case-studies/` records real public repository runs for npm package, auth boundary,
|
|
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 |
|
|
24
25
|
| Decomposed workflow | OK | `ask`, `team`, `work`, `verify`, `gate`, `ship`, `report`, `apply`, and `run` are available |
|
|
25
26
|
| Risk policy | OK | Shared classifier drives ask, routing traces, verify challenge/gates, and ship gate rechecks |
|
|
26
27
|
| Acceptance criteria | OK | `work` ensures every session has `acceptance-criteria.json` |
|
|
@@ -29,7 +30,7 @@ This audit summarizes the current NEKOWORK state after preparing the `0.1.0-alph
|
|
|
29
30
|
| Persistent wakeup | OK | `wait` resumes supported active sessions and blocks on `HUMAN_GATE` |
|
|
30
31
|
| Generated docs | OK | CODEMAP output is stable ASCII and reproducible |
|
|
31
32
|
| Tests | OK | Unit, integration, and e2e suites pass locally and in CI |
|
|
32
|
-
| Release |
|
|
33
|
+
| Release | OK | `v0.1.0-alpha.3` is tagged and published as a GitHub prerelease |
|
|
33
34
|
|
|
34
35
|
## Verification Gates
|
|
35
36
|
|
|
@@ -54,7 +55,7 @@ Current local result for this working tree:
|
|
|
54
55
|
- `npm run test:unit`: covered by full `npm test`
|
|
55
56
|
- `npm run validate:all`: pass
|
|
56
57
|
- `npm run lint`: pass
|
|
57
|
-
- `npm test`:
|
|
58
|
+
- `npm test`: 251 tests pass
|
|
58
59
|
- quick run demo: pass through `npm run demo:quick -- --cleanup`
|
|
59
60
|
- external project e2e smoke: pass through `npm test`
|
|
60
61
|
- `node scripts/sync-claude-md.js --check`: pass
|
|
@@ -62,8 +63,9 @@ Current local result for this working tree:
|
|
|
62
63
|
- `npm audit --audit-level=moderate`: 0 vulnerabilities
|
|
63
64
|
- `npm pack --dry-run --json`: pass
|
|
64
65
|
- `npm publish --dry-run --access public --tag alpha`: pass
|
|
65
|
-
- `npm publish --access public --tag alpha`: `0.1.0-alpha.
|
|
66
|
-
- `
|
|
66
|
+
- `npm publish --access public --tag alpha`: `0.1.0-alpha.3` published
|
|
67
|
+
- `npm view @ps-neko/nekowork dist-tags version versions --json`: `alpha` points at `0.1.0-alpha.3`; `latest` remains `0.1.0-alpha.0`
|
|
68
|
+
- `npx -y @ps-neko/nekowork@alpha check`: passed for `0.1.0-alpha.3` with WARN summary from non-git project root and Gemini auth not checked
|
|
67
69
|
|
|
68
70
|
## Completed Work
|
|
69
71
|
|
|
@@ -90,16 +92,15 @@ Current local result for this working tree:
|
|
|
90
92
|
- `report` gives public alpha users a readable inspect-only session artifact without applying or mutating project files.
|
|
91
93
|
- Official packs expose curated install shapes without creating a second safety model.
|
|
92
94
|
- Checked-in example fixtures now cover financial UI, CI hardening, and quality lifecycle evidence flows.
|
|
93
|
-
- Third-party case studies record NEKOWORK runs against `sindresorhus/is-plain-obj`, `jshttp/basic-auth`,
|
|
94
|
-
- Public npm alpha `0.1.0-alpha.
|
|
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.3` is published under the `alpha` dist-tag.
|
|
95
97
|
|
|
96
98
|
## Remaining Optional Work
|
|
97
99
|
|
|
98
100
|
| Item | Priority | Reason |
|
|
99
101
|
|---|---|---|
|
|
100
|
-
|
|
|
101
|
-
|
|
|
102
|
-
| More third-party case studies | Low | Three public repo case studies exist; more frameworks can still improve adoption evidence later |
|
|
102
|
+
| Stable `latest` promotion | Medium | `alpha` is correct; npm keeps `latest` on the first alpha line for now, so move it to a stable version later |
|
|
103
|
+
| More third-party case studies | Low | Four public repo case studies exist; more frameworks can still improve adoption evidence later |
|
|
103
104
|
| More skill catalog expansion | Low | Catalog expansion should stay selective to preserve progressive disclosure |
|
|
104
105
|
|
|
105
106
|
## Explicit Non-Goals
|
|
@@ -116,7 +117,6 @@ Current external readiness, excluding broader adoption evidence: **9.1 / 10**.
|
|
|
116
117
|
|
|
117
118
|
Main deductions:
|
|
118
119
|
|
|
119
|
-
- `latest` currently
|
|
120
|
-
-
|
|
121
|
-
- Three independent real-world external project case studies exist so far.
|
|
120
|
+
- `latest` currently remains on the first alpha; docs still recommend `@alpha` until a stable release exists.
|
|
121
|
+
- Four independent real-world external project case studies exist so far.
|
|
122
122
|
- Advanced surfaces exist but are intentionally secondary to the public decomposed workflow and install flow.
|
package/docs/CATALOG-PACKS.md
CHANGED
|
@@ -19,8 +19,8 @@ Packs are public install aliases over validated profiles. They make the catalog
|
|
|
19
19
|
10 skills
|
|
20
20
|
5 hooks
|
|
21
21
|
5 harness targets
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
7 case-study flows
|
|
23
|
+
251 tests
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
Harness targets:
|
|
@@ -38,6 +38,7 @@ quality lifecycle smoke
|
|
|
38
38
|
npm package boundary
|
|
39
39
|
auth parser boundary
|
|
40
40
|
Python protocol parser boundary
|
|
41
|
+
environment configuration boundary
|
|
41
42
|
```
|
|
42
43
|
|
|
43
44
|
## Official Packs
|
package/docs/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,35 @@
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
### Added
|
|
8
|
+
- No entries yet.
|
|
9
|
+
|
|
10
|
+
## [0.1.0-alpha.3] - 2026-05-08
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Add a `motdotla/dotenv` third-party case study for environment configuration and secret-loading boundary evidence.
|
|
14
|
+
- Add alpha feedback triage guidance and issue-template classification fields.
|
|
15
|
+
- Add beginner `check` and `init` CLI aliases for first-run health checks and install apply.
|
|
16
|
+
- Add Safety Guarantees, Failure Modes, Trust Model, and Why Not Autopilot docs.
|
|
17
|
+
- Add trust-doc and CLI alias tests, bringing the suite to 251 tests.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- Rewrite the README first screen around unverified-change prevention, Human Gate, explicit apply, and no-surprise safety.
|
|
21
|
+
- Add a direct competitor choice table and clearer selective-catalog framing.
|
|
22
|
+
|
|
23
|
+
## [0.1.0-alpha.2] - 2026-05-08
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
- Add GitHub issue templates for alpha feedback and reproducible bug reports.
|
|
27
|
+
- Add CI coverage for a fresh `npx @ps-neko/nekowork@alpha doctor --quick` smoke against the published alpha package.
|
|
28
|
+
- Add an alpha.2 roadmap focused on release smoke evidence, demo assets, and external feedback.
|
|
29
|
+
- Add a static terminal SVG for the one-minute README demo.
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
- Make the published alpha smoke workflow compare against the registry's current `@alpha` version instead of a hard-coded alpha string.
|
|
33
|
+
|
|
34
|
+
## [0.1.0-alpha.1] - 2026-05-07
|
|
35
|
+
|
|
7
36
|
### Added
|
|
8
37
|
- Add `report` to write inspect-only `REPORT.md` and `report-summary.json` from session evidence.
|
|
9
38
|
- Add official catalog packs as install aliases over safety-checked profiles.
|
|
@@ -15,7 +44,7 @@
|
|
|
15
44
|
- Add a third-party `python-hyper/h11` Python protocol case study.
|
|
16
45
|
- Add an opt-in internal provider command adapter.
|
|
17
46
|
- Add the focused `acceptance-coverage` quality evidence skill.
|
|
18
|
-
-
|
|
47
|
+
- Publish public alpha `@ps-neko/nekowork@0.1.0-alpha.1` with the updated adapter, case study, catalog evidence, report sample, and demo transcript.
|
|
19
48
|
- Add `npm run demo:external` to create a disposable target project and verify repository-based porting end to end.
|
|
20
49
|
- Add `docs/EXAMPLE-PROJECT.md` and e2e coverage for the external project demo.
|
|
21
50
|
- Add product principles and core invariants for the Claude work -> Codex verification -> Human Gate runtime.
|
package/docs/CODEMAPS/scripts.md
CHANGED
|
@@ -114,7 +114,7 @@ scripts/
|
|
|
114
114
|
| `ci/validate-hooks.js` | _(none)_ | hooks/hooks.json schemas/hooks.schema.json . |
|
|
115
115
|
| `ci/validate-manifests.js` | _(none)_ | agent.yaml + manifests/install-{profiles,modules,components}.json . 1) schema 2) |
|
|
116
116
|
| `ci/validate-skills.js` | _(none)_ | skills/<name>/SKILL.md frontmatter schemas/skill.schema.json . agent.yaml skills . |
|
|
117
|
-
| `cli.js` | _(none)_ | NEKOWORK/HARNESS CLI entrypoint. Public verbs: doctor, ask, plan, team, work, verify, gate, ship, apply, run, report, review,
|
|
117
|
+
| `cli.js` | _(none)_ | NEKOWORK/HARNESS CLI entrypoint. Public verbs: check, init, doctor, ask, plan, team, work, verify, gate, ship, apply, run, report, review, r |
|
|
118
118
|
| `core/auth-guard.js` | ` BLOCKED_ENV `, `assertDelegatedCliAuth` | |
|
|
119
119
|
| `core/build-roots.js` | `buildRoots` | |
|
|
120
120
|
| `core/cli-resolver.js` | `assertProviderCliTrust`, `isPathInside`, `resolveCli`, `resolveProviderCli` | |
|
package/docs/CODEMAPS/tests.md
CHANGED
|
@@ -10,11 +10,13 @@ tests/
|
|
|
10
10
|
|-- e2e/
|
|
11
11
|
| |-- case-studies-doc.test.js
|
|
12
12
|
| |-- external-demo.test.js
|
|
13
|
+
| |-- feedback-triage-doc.test.js
|
|
13
14
|
| |-- github-actions-hardening-example.test.js
|
|
14
15
|
| |-- quality-lifecycle-example.test.js
|
|
15
16
|
| |-- quick-demo.test.js
|
|
16
17
|
| |-- review-cycle.test.js
|
|
17
|
-
|
|
|
18
|
+
| |-- trading-dashboard-example.test.js
|
|
19
|
+
| `-- trust-docs.test.js
|
|
18
20
|
|-- integration/
|
|
19
21
|
| `-- build-pipeline.test.js
|
|
20
22
|
|-- optional/
|
|
@@ -59,11 +61,13 @@ tests/
|
|
|
59
61
|
|---|---|---|
|
|
60
62
|
| `e2e/case-studies-doc.test.js` | _(none)_ | |
|
|
61
63
|
| `e2e/external-demo.test.js` | _(none)_ | |
|
|
64
|
+
| `e2e/feedback-triage-doc.test.js` | _(none)_ | |
|
|
62
65
|
| `e2e/github-actions-hardening-example.test.js` | _(none)_ | |
|
|
63
66
|
| `e2e/quality-lifecycle-example.test.js` | _(none)_ | |
|
|
64
67
|
| `e2e/quick-demo.test.js` | _(none)_ | |
|
|
65
68
|
| `e2e/review-cycle.test.js` | _(none)_ | E2E smoke tests for the deterministic mock review flow. |
|
|
66
69
|
| `e2e/trading-dashboard-example.test.js` | _(none)_ | |
|
|
70
|
+
| `e2e/trust-docs.test.js` | _(none)_ | |
|
|
67
71
|
| `integration/build-pipeline.test.js` | _(none)_ | : install plan apply 5 state repair . . .harness/install-state.json . |
|
|
68
72
|
| `optional/keychain-smoke.test.js` | _(none)_ | OS keychain . npm test (tests/optional/ ). : HARNESS_KEYCHAIN_SMOKE=1 npm run test:keychain : HARNESS_KEYCHAIN_SMOKE=1 node --test tests/opt |
|
|
69
73
|
| `unit/acceptance-criteria.test.js` | _(none)_ | |
|
package/docs/DEMO.md
CHANGED
|
@@ -25,6 +25,8 @@ Demo completed: verdict=approve_with_fixes, ship_ready=false, applied=false
|
|
|
25
25
|
|
|
26
26
|
This transcript is the README-friendly demo path. It uses mock providers, so it is safe to run on a fresh checkout without Claude, Codex, Gemini, or API keys.
|
|
27
27
|
|
|
28
|
+

|
|
29
|
+
|
|
28
30
|
```text
|
|
29
31
|
$ npx -y @ps-neko/nekowork@alpha doctor --quick
|
|
30
32
|
NEKOWORK doctor
|
|
@@ -141,7 +143,7 @@ project root : C:\path\to\harness
|
|
|
141
143
|
|
|
142
144
|
STATUS CHECK MESSAGE
|
|
143
145
|
PASS node Node 24.x
|
|
144
|
-
PASS package metadata @ps-neko/nekowork@0.1.0-alpha.
|
|
146
|
+
PASS package metadata @ps-neko/nekowork@0.1.0-alpha.2; public alpha package
|
|
145
147
|
PASS git worktree project root is inside a git worktree
|
|
146
148
|
WARN gemini cli installed, auth status is not checked non-interactively
|
|
147
149
|
|
package/docs/EXAMPLE-PROJECT.md
CHANGED
|
@@ -87,6 +87,6 @@ demo-target/
|
|
|
87
87
|
|
|
88
88
|
## What This Does Not Prove
|
|
89
89
|
|
|
90
|
-
- Public npm installation.
|
|
90
|
+
- Public npm installation. This demo intentionally exercises the source-checkout path; run the npm install smoke separately for package resolution.
|
|
91
91
|
- Live provider execution. Run live provider smoke checks separately after local CLI login.
|
|
92
92
|
- A production rollout. Pin a release tag or submodule commit before using the tool in a shared workflow.
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# Failure Modes
|
|
2
|
+
|
|
3
|
+
NEKOWORK should fail in ways that leave evidence behind and avoid surprise writes.
|
|
4
|
+
|
|
5
|
+
## Health Check Warnings
|
|
6
|
+
|
|
7
|
+
`check` is a quick alias for `doctor --quick`.
|
|
8
|
+
|
|
9
|
+
Typical warnings include:
|
|
10
|
+
|
|
11
|
+
- target directory is not a git repository
|
|
12
|
+
- provider CLI is missing
|
|
13
|
+
- optional live auth was not checked
|
|
14
|
+
- package metadata is present but not release-ready
|
|
15
|
+
|
|
16
|
+
Warnings are meant to tell the user what would matter for live work. They do not mutate the project.
|
|
17
|
+
|
|
18
|
+
## No-Ship
|
|
19
|
+
|
|
20
|
+
`ship` writes `NO_SHIP` when the session has unresolved quality, security, or acceptance risk.
|
|
21
|
+
|
|
22
|
+
Recovery path:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
node scripts/cli.js report --session <id>
|
|
26
|
+
node scripts/cli.js run "fix the reported blocker" --session <new-id>
|
|
27
|
+
node scripts/cli.js gate status --session <new-id>
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
`apply` refuses a no-ship session unless a maintainer intentionally changes the evidence flow.
|
|
31
|
+
|
|
32
|
+
## Human Gate
|
|
33
|
+
|
|
34
|
+
`HUMAN_GATE` means the tool found risk that needs a person before apply.
|
|
35
|
+
|
|
36
|
+
The user can:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
node scripts/cli.js gate status --session <id>
|
|
40
|
+
node scripts/cli.js gate approve --session <id> --reason "reviewed risk"
|
|
41
|
+
node scripts/cli.js gate block --session <id> --reason "needs more tests"
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Approval records evidence. Blocking keeps the session from shipping.
|
|
45
|
+
|
|
46
|
+
## Apply Refusal
|
|
47
|
+
|
|
48
|
+
`apply` can refuse when:
|
|
49
|
+
|
|
50
|
+
- there is no live-work diff
|
|
51
|
+
- `SHIP_READY` is missing
|
|
52
|
+
- a newer `NO_SHIP` exists
|
|
53
|
+
- `HUMAN_GATE` is unresolved
|
|
54
|
+
- the target worktree is dirty
|
|
55
|
+
|
|
56
|
+
Recovery path:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
git status -sb
|
|
60
|
+
node scripts/cli.js report --session <id>
|
|
61
|
+
node scripts/cli.js gate status --session <id>
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Then either fix the blocker, approve/block the gate, or rerun the session.
|
|
65
|
+
|
|
66
|
+
## Stale Generated Files
|
|
67
|
+
|
|
68
|
+
When catalog, tests, or generated docs change, codemap or generated-output checks may fail.
|
|
69
|
+
|
|
70
|
+
Recovery path:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
node scripts/build-codemaps.js
|
|
74
|
+
npm test
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
The generated diff should be reviewed like any other project change.
|
|
78
|
+
|
|
79
|
+
## Provider Auth Problems
|
|
80
|
+
|
|
81
|
+
Default mock mode does not require provider auth.
|
|
82
|
+
|
|
83
|
+
Live mode can fail if local CLI auth is missing or expired. In that case, log in through the provider CLI, then rerun the same command. NEKOWORK does not need long-lived API-key fallback for the normal delegated CLI path.
|
|
84
|
+
|
|
85
|
+
## npm / npx Problems
|
|
86
|
+
|
|
87
|
+
If `npx -y @ps-neko/nekowork@alpha doctor --quick` fails, capture:
|
|
88
|
+
|
|
89
|
+
- OS and shell
|
|
90
|
+
- Node and npm versions
|
|
91
|
+
- exact command
|
|
92
|
+
- redacted output
|
|
93
|
+
|
|
94
|
+
Then open an alpha feedback issue with the triage template.
|