@i4ctime/q-ring 0.2.2 → 0.2.4
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 +34 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -4,9 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
# q-ring
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
**The first quantum-inspired keyring built specifically for AI coding agents.**
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Stop pasting API keys into plain-text `.env` files or struggling with clunky secret managers. **q-ring** securely anchors your credentials to your OS's native vault (macOS Keychain, GNOME Keyring, Windows Credential Manager), then supercharges them with mechanics from quantum physics.
|
|
10
|
+
|
|
11
|
+
Experience **superposition** (multi-environment keys), **entanglement** (linked rotations), **tunneling** (in-memory ephemerality), and **teleportation** (encrypted sharing).
|
|
12
|
+
|
|
13
|
+
Seamlessly integrated with **Cursor**, **Kiro**, **Claude Code**, and the entire **MCP** ecosystem.
|
|
10
14
|
|
|
11
15
|
## Install
|
|
12
16
|
|
|
@@ -222,6 +226,20 @@ q-ring includes a full MCP server with 20 tools for AI agent integration.
|
|
|
222
226
|
|
|
223
227
|
Add to `.cursor/mcp.json` or `.kiro/mcp.json`:
|
|
224
228
|
|
|
229
|
+
**If q-ring is installed globally** (e.g. `pnpm add -g @i4ctime/q-ring`):
|
|
230
|
+
|
|
231
|
+
```json
|
|
232
|
+
{
|
|
233
|
+
"mcpServers": {
|
|
234
|
+
"q-ring": {
|
|
235
|
+
"command": "qring-mcp"
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
```
|
|
240
|
+
|
|
241
|
+
**If using a local clone:**
|
|
242
|
+
|
|
225
243
|
```json
|
|
226
244
|
{
|
|
227
245
|
"mcpServers": {
|
|
@@ -237,6 +255,20 @@ Add to `.cursor/mcp.json` or `.kiro/mcp.json`:
|
|
|
237
255
|
|
|
238
256
|
Add to `~/.claude/claude_desktop_config.json`:
|
|
239
257
|
|
|
258
|
+
**Global install:**
|
|
259
|
+
|
|
260
|
+
```json
|
|
261
|
+
{
|
|
262
|
+
"mcpServers": {
|
|
263
|
+
"q-ring": {
|
|
264
|
+
"command": "qring-mcp"
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
**Local clone:**
|
|
271
|
+
|
|
240
272
|
```json
|
|
241
273
|
{
|
|
242
274
|
"mcpServers": {
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@i4ctime/q-ring",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Quantum keyring for AI coding tools — Cursor, Kiro, Claude Code. Secrets, superposition, entanglement, MCP.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"qring": "./dist/index.js"
|
|
7
|
+
"qring": "./dist/index.js",
|
|
8
|
+
"qring-mcp": "./dist/mcp.js"
|
|
8
9
|
},
|
|
9
10
|
"main": "./dist/mcp.js",
|
|
10
11
|
"files": [
|