@neurcode-ai/cli 0.9.23 → 0.9.25
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 +48 -0
- package/dist/commands/ask.d.ts.map +1 -1
- package/dist/commands/ask.js +875 -60
- package/dist/commands/ask.js.map +1 -1
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# @neurcode-ai/cli
|
|
2
|
+
|
|
3
|
+
Neurcode CLI is a governance-focused AI coding runtime.
|
|
4
|
+
|
|
5
|
+
It helps teams plan changes, ask grounded repository questions, verify policy/scope adherence, and ship with deterministic controls.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @neurcode-ai/cli@latest
|
|
11
|
+
neurcode --version
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Quick Workflow
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
neurcode login
|
|
18
|
+
neurcode init
|
|
19
|
+
|
|
20
|
+
neurcode plan "Add org-level RBAC"
|
|
21
|
+
neurcode prompt
|
|
22
|
+
neurcode verify --record
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Read-only Q&A
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
neurcode ask "Where is orgId resolved in auth middleware?"
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## One-command delivery
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
neurcode ship "Harden session middleware" --max-fix-attempts 3 --test-command "pnpm test:ci"
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Brain context controls
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
neurcode brain status
|
|
41
|
+
neurcode brain mode --storage-mode no-code
|
|
42
|
+
neurcode brain doctor "is userid used instead of org id"
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Docs
|
|
46
|
+
|
|
47
|
+
- CLI docs: https://neurcode.com/docs/cli
|
|
48
|
+
- Repo docs: https://github.com/sujit-jaunjal/neurcode
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ask.d.ts","sourceRoot":"","sources":["../../src/commands/ask.ts"],"names":[],"mappings":"AA+CA,UAAU,UAAU;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;
|
|
1
|
+
{"version":3,"file":"ask.d.ts","sourceRoot":"","sources":["../../src/commands/ask.ts"],"names":[],"mappings":"AA+CA,UAAU,UAAU;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AA6hDD,wBAAsB,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,GAAE,UAAe,GAAG,OAAO,CAAC,IAAI,CAAC,CA6mB1F"}
|