cokit-cli 1.2.2 → 1.2.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/README.md CHANGED
@@ -117,13 +117,13 @@ Otherwise?
117
117
 
118
118
  See [docs/](docs/) for detailed resource documentation.
119
119
 
120
- ## What's New (v1.2.2)
120
+ ## What's New (v1.2.3)
121
121
 
122
- Full Copilot format compliance audit and cleanup:
123
- - Removed all Claude Code-specific references (tool names, agent patterns, API params)
124
- - Fixed frontmatter fields to match official Copilot specs across all file types
125
- - Rewrote `ck-preview` execution for Copilot's `execute/runInTerminal`
126
- - Cleaned up 45 files (agents, prompts, skills)
122
+ Video intro and flowchart UX improvements:
123
+ - Added video intro for landing page
124
+ - Improved flowchart with zoom, drag-to-pan, hash navigation
125
+ - Cross-referenced `ck-*` and `ck-spec-*` in suggested next steps
126
+ - Synced templates with latest source files
127
127
 
128
128
  See [CHANGELOG.md](CHANGELOG.md) for full history.
129
129
 
@@ -104,7 +104,7 @@ mappings:
104
104
  upstream_file: templates/commands/constitution.md
105
105
  description: Create/update project constitution
106
106
 
107
- ck-tasks:
107
+ ck-spec-tasks:
108
108
  origin: speckit
109
109
  original: speckit.tasks
110
110
  upstream_file: templates/commands/tasks.md
@@ -282,7 +282,7 @@ Every prompt gets a navigation footer injected:
282
282
  | After `ck-plan` | `/ck-cook`, `/ck-brainstorm` (rethink) |
283
283
  | After `ck-cook` | `/ck-test`, `/ck-fix` |
284
284
 
285
- **All commands:** `ck-brainstorm`, `ck-specify`, `ck-clarify`, `ck-constitution`, `ck-plan`, `ck-plan-hard`, `ck-plan-fast`, `ck-tasks`, `ck-cook`, `ck-fix`, `ck-test`
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`
286
286
  ```
287
287
 
288
288
  ---
@@ -1,9 +1,9 @@
1
1
  # CoKit Project Roadmap
2
2
 
3
3
  **Project:** CoKit - Claude Code to GitHub Copilot Port
4
- **Version:** 1.2.0
4
+ **Version:** 1.2.3
5
5
  **Start Date:** 2026-01-06
6
- **Last Updated:** 2026-02-10 (SpecKit integration complete)
6
+ **Last Updated:** 2026-02-12 (video intro + flowchart UX)
7
7
  **Current Phase:** 6 of 6 (COMPLETE)
8
8
  **Overall Progress:** 100%
9
9
 
@@ -159,6 +159,15 @@ CoKit makes it dead-simple for non-technical users to port Claude Code workflow
159
159
 
160
160
  ## Changelog
161
161
 
162
+ ### 2026-02-12 - v1.2.3 (Video Intro + Flowchart UX)
163
+
164
+ **Features Added:**
165
+ - Video intro for landing page
166
+ - Variant commands visualization in flowchart and Deep Dive sections
167
+ - Improved flowchart UX: zoom controls, drag-to-pan, hash navigation, styled scrollbar
168
+ - Cross-referenced `ck-*` and `ck-spec-*` in suggested next steps
169
+ - Synced templates with latest source files
170
+
162
171
  ### 2026-02-10 - v1.2.0 Release (SpecKit Integration)
163
172
 
164
173
  **Resources Expanded:**
@@ -303,6 +312,6 @@ None at completion. All functional requirements satisfied.
303
312
 
304
313
  ---
305
314
 
306
- **Last Updated:** 2026-02-10
315
+ **Last Updated:** 2026-02-12
307
316
  **Project Manager:** project-manager agent
308
- **Status:** ALL PHASES COMPLETE - v1.2.0 RELEASED
317
+ **Status:** ALL PHASES COMPLETE - v1.2.3 RELEASED
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cokit-cli",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Make GitHub Copilot smarter in 30 seconds",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -257,4 +257,5 @@ Success criteria must be:
257
257
  | `/ck-spec-clarify` | Ask clarification questions | Spec has [NEEDS CLARIFICATION] markers or vague requirements |
258
258
  | `/ck-spec-plan` | Generate implementation plan | Spec is complete and ready for technical planning |
259
259
  | `/ck-spec-constitution` | Create project principles | Need to establish non-negotiable rules before planning |
260
+ | `/ck-plan` | Create implementation plan | Spec is finalized, ready to plan and implement |
260
261
  | `/ck-brainstorm` | Brainstorm ideas first | Not sure what to build yet |