@nockdev/cli 1.0.2 → 1.0.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/CHANGELOG.md +20 -0
- package/README.md +7 -7
- package/dist/utils/constants.d.ts +1 -1
- package/dist/utils/constants.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,26 @@ All notable changes to `@nockdev/cli` will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.2] - 2026-02-08
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Improved error messages for plugin install failures
|
|
13
|
+
- Fixed help text alignment for long command names
|
|
14
|
+
- Corrected exit codes for plugin management commands
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## [1.0.1] - 2026-02-07
|
|
19
|
+
|
|
20
|
+
### Improved
|
|
21
|
+
|
|
22
|
+
- Plugin auto-install UX with clearer prompts
|
|
23
|
+
- Better version display formatting in `nock version`
|
|
24
|
+
- Refined verbose mode output for plugin discovery
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
8
28
|
## [1.0.0] - 2026-02-06
|
|
9
29
|
|
|
10
30
|
### Added
|
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="https://capsule-render.vercel.app/api?type=waving&color=0:1E40AF,100:6D28D9&height=160§ion=header&text=NOCK%20CLI&fontSize=42&fontColor=FFFFFF&animation=fadeIn&fontAlignY=35&desc=Extensible%20AI%20Development%20Platform&descAlignY=55&descSize=16" width="100%" />
|
|
2
|
+
<img src="https://capsule-render.vercel.app/api?type=waving&color=0:0F172A,50:1E40AF,100:6D28D9&height=160§ion=header&text=NOCK%20CLI&fontSize=42&fontColor=FFFFFF&animation=fadeIn&fontAlignY=35&desc=Extensible%20AI%20Development%20Platform&descAlignY=55&descSize=16" width="100%" />
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
@@ -34,16 +34,16 @@ $ nock awf init
|
|
|
34
34
|
⚡ Plugin 'awf' is not installed.
|
|
35
35
|
◆ Would you like to install @nockdev/awf?
|
|
36
36
|
📦 Installing @nockdev/awf...
|
|
37
|
-
✔ Installed @nockdev/awf@
|
|
37
|
+
✔ Installed @nockdev/awf@6.2.6
|
|
38
38
|
🚀 Running: nock awf init
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
### Official Plugins
|
|
42
42
|
|
|
43
|
-
| Plugin | Description
|
|
44
|
-
| :----------------------------------------------------------- |
|
|
45
|
-
| [`@nockdev/awf`](https://www.npmjs.com/package/@nockdev/awf) | 🧠 AI development assistant — 82 skills,
|
|
46
|
-
| [`@nockdev/hsa`](https://www.npmjs.com/package/@nockdev/hsa) | 🔍 HSA MCP Server —
|
|
43
|
+
| Plugin | Description |
|
|
44
|
+
| :----------------------------------------------------------- | :-------------------------------------------------------------------------- |
|
|
45
|
+
| [`@nockdev/awf`](https://www.npmjs.com/package/@nockdev/awf) | 🧠 AI development assistant — 82 skills, 21 IDEs, 34 workflows, 12 personas |
|
|
46
|
+
| [`@nockdev/hsa`](https://www.npmjs.com/package/@nockdev/hsa) | 🔍 HSA MCP Server — 13 tools, BM25 search, Merkle tree, web dashboard |
|
|
47
47
|
|
|
48
48
|
### Plugin Management
|
|
49
49
|
|
|
@@ -107,5 +107,5 @@ export default myPlugin;
|
|
|
107
107
|
MIT © [**NockDev**](https://github.com/nockasdd)
|
|
108
108
|
|
|
109
109
|
<p align="center">
|
|
110
|
-
<img src="https://capsule-render.vercel.app/api?type=waving&color=0:6D28D9,100:
|
|
110
|
+
<img src="https://capsule-render.vercel.app/api?type=waving&color=0:6D28D9,50:1E40AF,100:0F172A&height=100§ion=footer" width="100%" />
|
|
111
111
|
</p>
|
package/dist/utils/constants.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// packages/cli/src/utils/constants.ts
|
|
2
2
|
// Single Source of Truth for CLI constants
|
|
3
3
|
/** CLI version - SSoT */
|
|
4
|
-
export const CLI_VERSION = "1.0.
|
|
4
|
+
export const CLI_VERSION = "1.0.3";
|
|
5
5
|
/** CLI name */
|
|
6
6
|
export const CLI_NAME = "@nockdev/cli";
|
|
7
7
|
/** Default plugins directory name */
|