cokit-cli 1.2.3 → 1.2.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/README.md
CHANGED
|
@@ -279,7 +279,7 @@ Every prompt gets a navigation footer injected:
|
|
|
279
279
|
| After `ck-brainstorm` | `/ck-specify`, `/ck-plan-fast` |
|
|
280
280
|
| After `ck-specify` | `/ck-clarify`, `/ck-brainstorm`, `/ck-plan` |
|
|
281
281
|
| After `ck-clarify` | `/ck-specify` (update), `/ck-plan` |
|
|
282
|
-
| After `ck-plan` | `/ck-cook`, `/ck-brainstorm` (rethink) |
|
|
282
|
+
| After `ck-plan` | `/ck-spec-tasks`, `/ck-cook`, `/ck-brainstorm` (rethink) |
|
|
283
283
|
| After `ck-cook` | `/ck-test`, `/ck-fix` |
|
|
284
284
|
|
|
285
285
|
**All commands:** `ck-brainstorm`, `ck-specify`, `ck-clarify`, `ck-constitution`, `ck-plan`, `ck-plan-hard`, `ck-plan-fast`, `ck-spec-tasks`, `ck-cook`, `ck-fix`, `ck-test`
|
|
@@ -317,6 +317,11 @@ Every prompt gets a navigation footer injected:
|
|
|
317
317
|
│ └──────┬──────┘ approach needs│ │
|
|
318
318
|
│ │ rethinking │ │
|
|
319
319
|
│ ▼ │ │
|
|
320
|
+
│ ┌───────────────┐ │ │
|
|
321
|
+
│ │ck-spec-tasks │ ← Break into tasks │
|
|
322
|
+
│ └───────┬───────┘ │ │
|
|
323
|
+
│ │ │ │
|
|
324
|
+
│ ▼ │ │
|
|
320
325
|
│ ┌─────────────┐ │ │
|
|
321
326
|
│ │ ck-cook │──────────────────┘ │
|
|
322
327
|
│ └──────┬──────┘ (via ck-brainstorm) │
|
package/docs/project-roadmap.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# CoKit Project Roadmap
|
|
2
2
|
|
|
3
3
|
**Project:** CoKit - Claude Code to GitHub Copilot Port
|
|
4
|
-
**Version:** 1.2.
|
|
4
|
+
**Version:** 1.2.4
|
|
5
5
|
**Start Date:** 2026-01-06
|
|
6
6
|
**Last Updated:** 2026-02-12 (video intro + flowchart UX)
|
|
7
7
|
**Current Phase:** 6 of 6 (COMPLETE)
|
|
@@ -314,4 +314,4 @@ None at completion. All functional requirements satisfied.
|
|
|
314
314
|
|
|
315
315
|
**Last Updated:** 2026-02-12
|
|
316
316
|
**Project Manager:** project-manager agent
|
|
317
|
-
**Status:** ALL PHASES COMPLETE - v1.2.
|
|
317
|
+
**Status:** ALL PHASES COMPLETE - v1.2.4 RELEASED
|
package/package.json
CHANGED
|
@@ -100,6 +100,7 @@ This reminder is **NON-NEGOTIABLE** - always output it after presenting the plan
|
|
|
100
100
|
|
|
101
101
|
| Command | Description |
|
|
102
102
|
|---------|-------------|
|
|
103
|
+
| `/ck-spec-tasks` | Break plan into actionable tasks |
|
|
103
104
|
| `/ck-cook` | Implement plan |
|
|
104
105
|
| `/ck-test` | Run tests and analyze results |
|
|
105
106
|
| `/ck-fix` | Analyze and fix issues |
|
|
@@ -127,6 +127,7 @@ This reminder is **NON-NEGOTIABLE** when validation is skipped.
|
|
|
127
127
|
|
|
128
128
|
| Command | Description |
|
|
129
129
|
|---------|-------------|
|
|
130
|
+
| `/ck-spec-tasks` | Break plan into actionable tasks |
|
|
130
131
|
| `/ck-cook` | Implement plan |
|
|
131
132
|
| `/ck-test` | Run tests and analyze results |
|
|
132
133
|
| `/ck-fix` | Analyze and fix issues |
|
|
@@ -69,6 +69,7 @@ If user chooses validation or mode is `auto`: Execute `/ck-plan-validate {plan-p
|
|
|
69
69
|
| Command | Description |
|
|
70
70
|
|---------|-------------|
|
|
71
71
|
| `/ck-plan-validate` | Validate plan with critical questions |
|
|
72
|
+
| `/ck-spec-tasks` | Break plan into actionable tasks |
|
|
72
73
|
| `/ck-cook` | Implement plan |
|
|
73
74
|
| `/ck-test` | Run tests and analyze results |
|
|
74
75
|
| `/ck-fix` | Analyze and fix issues |
|