@nolrm/contextkit 0.12.8 → 0.12.9
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 +1 -1
- package/lib/commands/install.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -323,7 +323,7 @@ ck vscode # alias for copilot
|
|
|
323
323
|
|
|
324
324
|
# Analysis & Updates
|
|
325
325
|
ck analyze # customize standards to your project
|
|
326
|
-
ck update # pull latest
|
|
326
|
+
ck update # pull latest commands/hooks — preserves your analyzed standards
|
|
327
327
|
ck status # check install & integrations
|
|
328
328
|
|
|
329
329
|
# Validation & Compliance
|
package/lib/commands/install.js
CHANGED
|
@@ -85,6 +85,7 @@ class InstallCommand {
|
|
|
85
85
|
const { shouldContinue } = await this.promptReinstall();
|
|
86
86
|
if (!shouldContinue) {
|
|
87
87
|
console.log(chalk.yellow('⏭️ Installation cancelled'));
|
|
88
|
+
console.log(chalk.dim('💡 To get the latest command and squad files, run: ') + chalk.cyan('ck update'));
|
|
88
89
|
return;
|
|
89
90
|
}
|
|
90
91
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nolrm/contextkit",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.9",
|
|
4
4
|
"description": "ContextKit - Context Engineering for AI Development. Provide rich context to AI through structured MD files with standards, code guides, and documentation. Works with Cursor, Claude, Aider, VS Code Copilot, and more.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"bin": {
|