@aiconnect/confidant 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.
- package/README.md +26 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -31,12 +31,34 @@ The secret never passes through chat. It's a direct handshake between human and
|
|
|
31
31
|
|
|
32
32
|
## Quick Start
|
|
33
33
|
|
|
34
|
-
### Installation
|
|
34
|
+
### Using npx (No Installation Required)
|
|
35
|
+
|
|
36
|
+
The fastest way to use Confidant — no installation needed:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
# Start the server
|
|
40
|
+
npx @aiconnect/confidant serve
|
|
41
|
+
|
|
42
|
+
# In another terminal, request a secret
|
|
43
|
+
npx @aiconnect/confidant request --label "API Key"
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### Global Installation
|
|
47
|
+
|
|
48
|
+
For frequent use, install globally:
|
|
35
49
|
|
|
36
50
|
```bash
|
|
37
|
-
npm install -g confidant
|
|
38
|
-
|
|
39
|
-
|
|
51
|
+
npm install -g @aiconnect/confidant
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Then use without npx:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
# Start the server
|
|
58
|
+
confidant serve
|
|
59
|
+
|
|
60
|
+
# Request a secret
|
|
61
|
+
confidant request --label "API Key"
|
|
40
62
|
```
|
|
41
63
|
|
|
42
64
|
### Start the Server
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiconnect/confidant",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Secure secret handoff system with time-limited access",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"bin": {
|
|
10
|
-
"confidant": "
|
|
10
|
+
"confidant": "dist/cli.js"
|
|
11
11
|
},
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"license": "MIT",
|
|
52
52
|
"repository": {
|
|
53
53
|
"type": "git",
|
|
54
|
-
"url": "https://github.com/johnjohn-aic/confidant.git"
|
|
54
|
+
"url": "git+https://github.com/johnjohn-aic/confidant.git"
|
|
55
55
|
},
|
|
56
56
|
"homepage": "https://github.com/johnjohn-aic/confidant#readme",
|
|
57
57
|
"bugs": {
|