@nolrm/contextkit 0.21.0 → 1.0.0
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/lib/commands/install.js +14 -26
- package/package.json +2 -5
- package/bin/vibe-kit.js +0 -3
package/lib/commands/install.js
CHANGED
|
@@ -1462,53 +1462,41 @@ Unlike [COMPETITOR_OR_ALTERNATIVE], we provide [SPECIFIC_ADVANTAGE]. This result
|
|
|
1462
1462
|
|
|
1463
1463
|
const roadmapContent = `# Product Roadmap
|
|
1464
1464
|
|
|
1465
|
-
## Current Phase
|
|
1465
|
+
## Current Phase
|
|
1466
1466
|
|
|
1467
|
-
|
|
1467
|
+
<!-- Describe your current development phase, e.g. "Beta → v1.0 Stabilisation" or "Post-launch Growth" -->
|
|
1468
1468
|
|
|
1469
|
-
|
|
1469
|
+
### Completed ✅
|
|
1470
|
+
|
|
1471
|
+
<!-- List features or milestones you have shipped -->
|
|
1470
1472
|
|
|
1471
1473
|
### In Progress 🚧
|
|
1472
1474
|
|
|
1473
|
-
|
|
1475
|
+
<!-- List what your team is actively working on right now -->
|
|
1474
1476
|
|
|
1475
|
-
### Upcoming
|
|
1477
|
+
### Upcoming 📋
|
|
1476
1478
|
|
|
1477
|
-
|
|
1479
|
+
<!-- List what is queued next, roughly in priority order -->
|
|
1478
1480
|
|
|
1479
1481
|
## Technical Debt & Improvements
|
|
1480
1482
|
|
|
1483
|
+
<!-- Track known improvements — helps AI assistants understand trade-offs and constraints -->
|
|
1484
|
+
|
|
1481
1485
|
### High Priority 🔴
|
|
1482
1486
|
|
|
1483
|
-
|
|
1487
|
+
<!-- Items that are blocking quality or causing pain -->
|
|
1484
1488
|
|
|
1485
1489
|
### Medium Priority 🟡
|
|
1486
1490
|
|
|
1487
|
-
|
|
1491
|
+
<!-- Important but not urgent -->
|
|
1488
1492
|
|
|
1489
1493
|
### Low Priority 🟢
|
|
1490
1494
|
|
|
1491
|
-
-
|
|
1492
|
-
|
|
1493
|
-
## Success Metrics
|
|
1494
|
-
|
|
1495
|
-
### Code Quality
|
|
1496
|
-
|
|
1497
|
-
- **Test Coverage:** Target [X]%+
|
|
1498
|
-
- **TypeScript Coverage:** [X]% for new code
|
|
1499
|
-
- **Linting Errors:** Zero in CI
|
|
1500
|
-
|
|
1501
|
-
### Performance
|
|
1502
|
-
|
|
1503
|
-
- **Page Load Time:** < [X] seconds
|
|
1504
|
-
- **Bundle Size:** < [X]KB
|
|
1505
|
-
- **Build Time:** < [X] minutes
|
|
1495
|
+
<!-- Nice-to-have improvements -->
|
|
1506
1496
|
|
|
1507
1497
|
## Future Vision
|
|
1508
1498
|
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
- [FEATURE_OR_GOAL]
|
|
1499
|
+
<!-- Optional: sketch longer-horizon goals so AI assistants understand the direction -->
|
|
1512
1500
|
`;
|
|
1513
1501
|
|
|
1514
1502
|
const decisionsContent = `# Technical Decisions
|
package/package.json
CHANGED
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nolrm/contextkit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "ContextKit - Context Engineering + Agentic AI Pipelines. Scaffold structured standards for AI assistants and run autonomous multi-role pipelines (PO → Architect → Dev → Test → Review → Doc) grounded by that same context layer. Works with Cursor, Claude Code, Copilot, Codex, Gemini, Aider, and more.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"contextkit": "bin/contextkit.js",
|
|
8
|
-
"ck": "bin/contextkit.js"
|
|
9
|
-
"vibe-kit": "bin/vibe-kit.js",
|
|
10
|
-
"vk": "bin/vibe-kit.js"
|
|
8
|
+
"ck": "bin/contextkit.js"
|
|
11
9
|
},
|
|
12
10
|
"scripts": {
|
|
13
11
|
"format": "prettier --write \"lib/**/*.js\" \"bin/**/*.js\" \"__tests__/**/*.js\"",
|
|
@@ -19,7 +17,6 @@
|
|
|
19
17
|
},
|
|
20
18
|
"keywords": [
|
|
21
19
|
"contextkit",
|
|
22
|
-
"vibe-kit",
|
|
23
20
|
"context-engineering",
|
|
24
21
|
"ai-context",
|
|
25
22
|
"ai-development",
|
package/bin/vibe-kit.js
DELETED