@jakkrichm/create-nexus-devflow 2.0.15 → 2.0.16
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/dist/bin/create-nexus-devflow.d.ts +14 -1
- package/dist/bin/create-nexus-devflow.js +45 -7
- package/dist/bin/create-nexus-devflow.js.map +1 -1
- package/dist/lib/current-work.d.ts +30 -0
- package/dist/lib/current-work.js +208 -0
- package/dist/lib/current-work.js.map +1 -0
- package/dist/lib/findings.d.ts +26 -0
- package/dist/lib/findings.js +110 -0
- package/dist/lib/findings.js.map +1 -0
- package/dist/lib/git-status.d.ts +13 -0
- package/dist/lib/git-status.js +98 -0
- package/dist/lib/git-status.js.map +1 -0
- package/dist/lib/project-metadata.d.ts +22 -0
- package/dist/lib/project-metadata.js +84 -0
- package/dist/lib/project-metadata.js.map +1 -0
- package/dist/lib/project-root.d.ts +3 -0
- package/dist/lib/project-root.js +76 -0
- package/dist/lib/project-root.js.map +1 -0
- package/dist/lib/status.d.ts +62 -0
- package/dist/lib/status.js +273 -0
- package/dist/lib/status.js.map +1 -0
- package/package.json +4 -3
- package/template/devflow/context/current-stage.md +1 -1
- package/template/devflow/history/HISTORY.md +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jakkrichm/create-nexus-devflow",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.16",
|
|
4
4
|
"description": "Installer package for Nexus-DevFlow agentic workflow layer.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jakkrich",
|
|
@@ -28,11 +28,12 @@
|
|
|
28
28
|
"type": "module",
|
|
29
29
|
"bin": {
|
|
30
30
|
"create-nexus-devflow": "dist/bin/create-nexus-devflow.js",
|
|
31
|
-
"nexus-devflow": "dist/bin/create-nexus-devflow.js"
|
|
31
|
+
"nexus-devflow": "dist/bin/create-nexus-devflow.js",
|
|
32
|
+
"devflow": "dist/bin/create-nexus-devflow.js"
|
|
32
33
|
},
|
|
33
34
|
"scripts": {
|
|
34
35
|
"build": "tsc -p tsconfig.json",
|
|
35
|
-
"test": "tsx --test test
|
|
36
|
+
"test": "tsx --test test/*.test.ts",
|
|
36
37
|
"check:pack": "npm pack --dry-run",
|
|
37
38
|
"prepare-template": "tsx scripts/prepare-template.ts",
|
|
38
39
|
"clean-template": "tsx scripts/clean-template.ts",
|
|
@@ -4,5 +4,5 @@
|
|
|
4
4
|
- **Active Running ID**: None
|
|
5
5
|
- **Current Stage**: Idle (Ready for next run)
|
|
6
6
|
- **Living Spec**: None
|
|
7
|
-
- **Last Completed Run**: RUN-
|
|
7
|
+
- **Last Completed Run**: RUN-019-sync-upstream-status-cli-and-project-detection (2026-08-20)
|
|
8
8
|
- **Last Updated**: 2026-08-20
|
|
@@ -8,6 +8,7 @@ This master ledger tracks all released delivery runs, milestones, and rollbacks
|
|
|
8
8
|
|
|
9
9
|
| Release Date | Running ID | Title | Git Tag / Commit | Release Status | Report Link |
|
|
10
10
|
| :--- | :--- | :--- | :--- | :--- | :--- |
|
|
11
|
+
| 2026-08-20 | `RUN-019` | ซิงก์ฟีเจอร์ Status CLI, Project Detection, Unit Tests และ Upstream Baseline จาก AI Blueprint v0.9.1 | `HEAD` | `Released` | [`60-report.md`](../runs/RUN-019-sync-upstream-status-cli-and-project-detection/60-report.md) |
|
|
11
12
|
| 2026-08-20 | `RUN-018` | อัปเดตคู่มือ เอกสาร และ Website Documentation ให้เป็นปัจจุบันและครอบคลุม Dual-Track Model ล่าสุด | `HEAD` | `Released` | [`spec.md`](../runs/RUN-018-update-documentation-and-guides/spec.md) |
|
|
12
13
|
| 2026-08-20 | `RUN-017` | แยกคำสั่ง Fast-Track เป็น `/feature`, `/fix` และเปลี่ยน Deep-Track สเตจ 40 เป็น `40-execute` | `HEAD` | `Released` | [`spec.md`](../runs/RUN-017-split-spec-and-rename-40-execute/spec.md) |
|
|
13
14
|
| 2026-08-20 | `RUN-016` | ระบบบันทึกไอเดียพร้อม AI วิเคราะห์ความเป็นไปได้ (`/idea`) และเชื่อมต่อกับ Status Backlog | `HEAD` | `Released` | [`spec.md`](../runs/RUN-016-idea-capture-inbox-and-status-integration/spec.md) |
|