@nockdev/cli 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +64 -38
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,41 +1,33 @@
1
- # @nockdev/cli
1
+ <p align="center">
2
+ <img src="https://capsule-render.vercel.app/api?type=waving&color=0:1E40AF,100:6D28D9&height=160&section=header&text=NOCK%20CLI&fontSize=42&fontColor=FFFFFF&animation=fadeIn&fontAlignY=35&desc=Extensible%20AI%20Development%20Platform&descAlignY=55&descSize=16" width="100%" />
3
+ </p>
2
4
 
3
- > 🚀 Extensible Development Platform by NockDev
5
+ <p align="center">
6
+ <a href="https://www.npmjs.com/package/@nockdev/cli"><img src="https://img.shields.io/npm/v/@nockdev/cli?style=for-the-badge&logo=npm&logoColor=white&labelColor=CB3837&color=000000" alt="npm" /></a>
7
+ <img src="https://img.shields.io/badge/node-%E2%89%A518.0.0-10B981?style=for-the-badge&logo=nodedotjs&logoColor=white" alt="Node.js" />
8
+ <img src="https://img.shields.io/badge/license-MIT-3B82F6?style=for-the-badge&logo=opensourceinitiative&logoColor=white" alt="License" />
9
+ </p>
4
10
 
5
- [![npm version](https://img.shields.io/npm/v/@nockdev/cli.svg)](https://www.npmjs.com/package/@nockdev/cli)
6
- [![Node.js](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen)](https://nodejs.org)
7
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
+ <p align="center">
12
+ <b>Microkernel CLI</b> with auto-discovery plugins. Install once, extend with official and community packages.
13
+ </p>
8
14
 
9
- ## Installation
15
+ ---
10
16
 
11
- ```bash
12
- npm install -g @nockdev/cli
13
- ```
14
-
15
- ## Quick Start
17
+ ## ⚡ Quick Start
16
18
 
17
19
  ```bash
18
- nock --help # Show help
19
- nock awf init # Initialize AI assistant
20
- nock awf install --ide cursor # Install for specific IDE
20
+ npm install -g @nockdev/cli # Install globally
21
+ nock awf init # Initialize AI assistant in your project
21
22
  ```
22
23
 
23
- ## Commands
24
+ > 💡 Plugins install automatically on first use — no manual setup needed.
24
25
 
25
- | Command | Description |
26
- | ---------------------------- | ---------------------- |
27
- | `nock --help` | Show help |
28
- | `nock version` | Show version info |
29
- | `nock plugins list` | List installed plugins |
30
- | `nock plugins install <pkg>` | Install plugin |
31
- | `nock plugins remove <pkg>` | Remove plugin |
32
- | `nock plugins update [pkg]` | Update plugin(s) |
33
- | `nock telemetry status` | Telemetry status |
34
- | `nock cache clear` | Clear command cache |
26
+ ---
35
27
 
36
- ## Auto-Install
28
+ ## 🔌 Plugin System
37
29
 
38
- Official plugins are auto-installed on first use:
30
+ NOCK CLI uses a **microkernel architecture** — the core is lightweight, plugins provide all functionality.
39
31
 
40
32
  ```
41
33
  $ nock awf init
@@ -46,7 +38,41 @@ $ nock awf init
46
38
  🚀 Running: nock awf init
47
39
  ```
48
40
 
49
- ## Plugin Development
41
+ ### Official Plugins
42
+
43
+ | Plugin | Description |
44
+ | :----------------------------------------------------------- | :------------------------------------------------------------------------ |
45
+ | [`@nockdev/awf`](https://www.npmjs.com/package/@nockdev/awf) | 🧠 AI development assistant — 82 skills, 22 IDEs, 34 workflows |
46
+ | [`@nockdev/hsa`](https://www.npmjs.com/package/@nockdev/hsa) | 🔍 HSA MCP Server — semantic code search, project analysis, web dashboard |
47
+
48
+ ### Plugin Management
49
+
50
+ ```bash
51
+ nock plugins list # List installed plugins
52
+ nock plugins install <package> # Install a plugin
53
+ nock plugins remove <package> # Remove a plugin
54
+ nock plugins update [package] # Update plugin(s)
55
+ ```
56
+
57
+ ---
58
+
59
+ ## 🎯 Core Commands
60
+
61
+ | Command | Description |
62
+ | :------------------------------- | :----------------------------------------- |
63
+ | `nock --help` | Show help and available topics |
64
+ | `nock version` | Show CLI and plugin versions |
65
+ | `nock awf init` | Initialize AI assistant in current project |
66
+ | `nock awf install --ide <name>` | Setup IDE-specific configuration |
67
+ | `nock awf mcp install --ide all` | Configure MCP server for all IDEs |
68
+ | `nock awf doctor` | Diagnose IDE configuration issues |
69
+ | `nock awf hsa status` | Check HSA MCP server status |
70
+ | `nock telemetry status` | View telemetry status |
71
+ | `nock cache clear` | Clear command cache |
72
+
73
+ ---
74
+
75
+ ## 🛠️ Build Your Own Plugin
50
76
 
51
77
  ```typescript
52
78
  import type { NockPlugin } from "@nockdev/cli";
@@ -61,7 +87,7 @@ const myPlugin: NockPlugin = {
61
87
  name: "hello",
62
88
  id: "my:hello",
63
89
  description: "Say hello",
64
- run: async () => console.log("Hello!"),
90
+ run: async () => console.log("Hello from my plugin!"),
65
91
  },
66
92
  ],
67
93
  };
@@ -69,17 +95,17 @@ const myPlugin: NockPlugin = {
69
95
  export default myPlugin;
70
96
  ```
71
97
 
72
- ## Official Plugins
98
+ ---
73
99
 
74
- | Plugin | Description |
75
- | ------------------------------------------------------------ | ---------------------------------------- |
76
- | [`@nockdev/awf`](https://www.npmjs.com/package/@nockdev/awf) | AI dev assistant — 82 skills, 22 IDEs |
77
- | [`@nockdev/hsa`](https://www.npmjs.com/package/@nockdev/hsa) | HSA MCP Server — semantic context engine |
100
+ ## 📋 Requirements
78
101
 
79
- ## Requirements
102
+ - **Node.js** ≥ 18.0.0
103
+ - **npm** ≥ 8.0.0
80
104
 
81
- - Node.js ≥ 18.0.0
105
+ ## 📄 License
82
106
 
83
- ## License
107
+ MIT © [**NockDev**](https://github.com/nockasdd)
84
108
 
85
- MIT © NockDev
109
+ <p align="center">
110
+ <img src="https://capsule-render.vercel.app/api?type=waving&color=0:6D28D9,100:1E40AF&height=100&section=footer" width="100%" />
111
+ </p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nockdev/cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "NOCK CLI - Extensible Development Platform by NockDev",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",