@nockdev/cli
v1.0.0
Published
NOCK CLI - Extensible Development Platform by NockDev
Maintainers
Readme
@nockdev/cli
🚀 Extensible Development Platform by NockDev
Installation
npm install -g @nockdev/cliQuick Start
nock --help # Show help
nock plugins install @nockdev/awf # Install a plugin
nock awf init # Use plugin commandsCommands
| Command | Description |
| ---------------------------- | ---------------------- |
| nock --help | Show help |
| nock version | Show version info |
| nock plugins list | List installed plugins |
| nock plugins install <pkg> | Install plugin |
| nock plugins remove <pkg> | Remove plugin |
| nock plugins update [pkg] | Update plugin(s) |
| nock telemetry status | Telemetry status |
| nock cache clear | Clear command cache |
Auto-Install
Official plugins are auto-installed on first use:
$ nock awf init
⚡ Plugin 'awf' is not installed.
◆ Would you like to install @nockdev/awf?
📦 Installing @nockdev/awf...
✔ Installed @nockdev/[email protected]
🚀 Running: nock awf initPlugin Development
import type { NockPlugin } from "@nockdev/cli";
const myPlugin: NockPlugin = {
name: "@my/plugin",
version: "1.0.0",
topic: "my",
description: "My awesome plugin",
commands: [
{
name: "hello",
id: "my:hello",
description: "Say hello",
run: async () => console.log("Hello!"),
},
],
};
export default myPlugin;Official Plugins
| Plugin | Description |
| ------------------------------------------------------------ | ---------------------------------------- |
| @nockdev/awf | AI dev assistant — 57 skills, 21 IDEs |
| @nockdev/hsa | HSA MCP Server — semantic context engine |
Requirements
- Node.js ≥ 18.0.0
License
MIT © NockDev
