@content-reviewer/cli 0.0.1 → 0.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/README.md +3 -3
- package/dist/index.js +1 -1
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -4,13 +4,13 @@ CLI tool for reviewing written content using LLMs.
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
-
### Global Installation
|
|
7
|
+
### Global Installation
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
10
|
npm install -g @content-reviewer/cli
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
### Using npx
|
|
13
|
+
### Using npx
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
16
|
npx @content-reviewer/cli article.md
|
|
@@ -102,7 +102,7 @@ Example instruction file:
|
|
|
102
102
|
|
|
103
103
|
```markdown
|
|
104
104
|
You are a strict technical editor.
|
|
105
|
-
Please review the
|
|
105
|
+
Please review the provided text for technical accuracy and clarity.
|
|
106
106
|
|
|
107
107
|
# Review Guidelines
|
|
108
108
|
|
package/dist/index.js
CHANGED
|
@@ -42,7 +42,7 @@ var import_consola = require("consola");
|
|
|
42
42
|
// package.json
|
|
43
43
|
var package_default = {
|
|
44
44
|
name: "@content-reviewer/cli",
|
|
45
|
-
version: "0.0.
|
|
45
|
+
version: "0.0.3",
|
|
46
46
|
description: "CLI tool for reviewing written content using LLMs",
|
|
47
47
|
bin: {
|
|
48
48
|
"content-review": "./dist/index.js"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@content-reviewer/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "CLI tool for reviewing written content using LLMs",
|
|
5
5
|
"bin": {
|
|
6
6
|
"content-review": "./dist/index.js"
|
|
@@ -10,12 +10,6 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"dist"
|
|
12
12
|
],
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "tsup src/index.ts --format cjs --dts --clean",
|
|
15
|
-
"dev": "tsup src/index.ts --format cjs --dts --watch",
|
|
16
|
-
"test": "vitest run",
|
|
17
|
-
"clean": "rm -rf dist"
|
|
18
|
-
},
|
|
19
13
|
"keywords": [
|
|
20
14
|
"ai",
|
|
21
15
|
"llm",
|
|
@@ -43,16 +37,22 @@
|
|
|
43
37
|
"access": "public"
|
|
44
38
|
},
|
|
45
39
|
"dependencies": {
|
|
46
|
-
"@content-reviewer/core": "workspace:*",
|
|
47
40
|
"commander": "^14.0.2",
|
|
48
41
|
"consola": "^3.4.2",
|
|
49
42
|
"cosmiconfig": "^9.0.0",
|
|
50
|
-
"picocolors": "^1.1.1"
|
|
43
|
+
"picocolors": "^1.1.1",
|
|
44
|
+
"@content-reviewer/core": "0.0.3"
|
|
51
45
|
},
|
|
52
46
|
"devDependencies": {
|
|
53
47
|
"@types/node": "^24.10.1",
|
|
54
48
|
"tsup": "^8.5.1",
|
|
55
49
|
"typescript": "^5.9.3",
|
|
56
50
|
"vitest": "^4.0.9"
|
|
51
|
+
},
|
|
52
|
+
"scripts": {
|
|
53
|
+
"build": "tsup src/index.ts --format cjs --dts --clean",
|
|
54
|
+
"dev": "tsup src/index.ts --format cjs --dts --watch",
|
|
55
|
+
"test": "vitest run",
|
|
56
|
+
"clean": "rm -rf dist"
|
|
57
57
|
}
|
|
58
|
-
}
|
|
58
|
+
}
|