visionary-cli 0.1.0 → 0.1.1
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 +13 -5
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,24 +1,32 @@
|
|
|
1
1
|
# Visionary CLI
|
|
2
2
|
|
|
3
|
-
Command line tools for publishing and
|
|
3
|
+
Command line tools for AI-assisted writing workflows, content publishing, and Visionary article management.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm
|
|
8
|
+
npm install -g visionary-cli
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
After
|
|
11
|
+
After installation, run the CLI from any directory:
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
visionary --help
|
|
15
|
-
visionary auth login --username <username> --password <password>
|
|
15
|
+
visionary auth login --username <username> --password <password>
|
|
16
16
|
visionary draft create --title <title> --content-file <path> --summary <text> --tags <a,b>
|
|
17
17
|
visionary draft publish --id <id> --confirm
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
The `visionary-cli` command is also available as an alias.
|
|
21
21
|
|
|
22
|
+
## Development Install
|
|
23
|
+
|
|
24
|
+
When developing locally, link the package instead of installing it from npm:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
npm link
|
|
28
|
+
```
|
|
29
|
+
|
|
22
30
|
## Configuration
|
|
23
31
|
|
|
24
32
|
The CLI reads auth and target site values from these sources, in priority order:
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "visionary-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "A Visionary CLI for AI-assisted writing workflows, content publishing, and article management.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"visionary": "
|
|
8
|
-
"visionary-cli": "
|
|
7
|
+
"visionary": "bin/visionary.mjs",
|
|
8
|
+
"visionary-cli": "bin/visionary.mjs"
|
|
9
9
|
},
|
|
10
10
|
"engines": {
|
|
11
11
|
"node": ">=20"
|