@i4ctime/q-ring 0.16.2 → 0.17.0
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 +4 -4
- package/dist/mcp.js +165 -155
- package/dist/mcp.js.map +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -899,7 +899,7 @@ q-ring includes a full MCP server with 44 tools for AI agent integration.
|
|
|
899
899
|
|
|
900
900
|
### Cursor / Kiro Configuration
|
|
901
901
|
|
|
902
|
-
Add to `.cursor/mcp.json` or `.kiro/mcp.json
|
|
902
|
+
Add to `.cursor/mcp.json` or `.kiro/settings/mcp.json` (or let `qring setup cursor` / `qring setup kiro` write it):
|
|
903
903
|
|
|
904
904
|
**If q-ring is installed globally** (e.g. `pnpm add -g @i4ctime/q-ring`):
|
|
905
905
|
|
|
@@ -928,7 +928,7 @@ Add to `.cursor/mcp.json` or `.kiro/mcp.json`:
|
|
|
928
928
|
|
|
929
929
|
### Claude Code Configuration
|
|
930
930
|
|
|
931
|
-
Add to
|
|
931
|
+
Add to `.mcp.json` in the project root — or run `qring setup claude`, or `claude mcp add q-ring -- qring-mcp` (Claude Desktop is the app that uses `claude_desktop_config.json`, not Claude Code):
|
|
932
932
|
|
|
933
933
|
**Global install:**
|
|
934
934
|
|
|
@@ -979,7 +979,7 @@ The q-ring repo ships three first-party editor packs — each one adds rules/ste
|
|
|
979
979
|
|--------|--------|-----------|
|
|
980
980
|
| [`cursor-plugin/`](cursor-plugin/README.md) | [Cursor](https://cursor.com) | 3 rules, 5 skills, 2 agents, 8 slash commands, 3 hooks, MCP autoconnect |
|
|
981
981
|
| [`kiro-plugin/`](kiro-plugin/README.md) | [Kiro](https://kiro.dev) | Official [Power](https://kiro.dev/docs/powers/create/) layout: `POWER.md`, root `mcp.json`, `steering/`, `hooks/`; or flatten with `plugin:sync:kiro` |
|
|
982
|
-
| [`claude-code-plugin/`](claude-code-plugin/README.md) | [Claude Code](https://docs.claude.com/en/docs/claude-code/overview) | `CLAUDE.md` memory, project `.mcp.json`, 2 subagents, 8 slash commands,
|
|
982
|
+
| [`claude-code-plugin/`](claude-code-plugin/README.md) | [Claude Code](https://docs.claude.com/en/docs/claude-code/overview) | `CLAUDE.md` memory, project `.mcp.json`, 2 subagents, 8 slash commands, 6 skills, 3 hook scripts |
|
|
983
983
|
|
|
984
984
|
### Cursor Plugin
|
|
985
985
|
|
|
@@ -1014,7 +1014,7 @@ See [`kiro-plugin/README.md`](kiro-plugin/README.md) for the full breakdown.
|
|
|
1014
1014
|
|
|
1015
1015
|
### Claude Code Plugin
|
|
1016
1016
|
|
|
1017
|
-
For [Claude Code](https://docs.claude.com/en/docs/claude-code/overview), q-ring ships a `CLAUDE.md` memory file, a project-scoped `.mcp.json`, two [subagents](https://docs.claude.com/en/docs/claude-code/sub-agents) (`secret-ops`, `security-auditor`), eight [slash commands](https://docs.claude.com/en/docs/claude-code/slash-commands) (`/qring-scan-secrets`, `/qring-health-check`, …),
|
|
1017
|
+
For [Claude Code](https://docs.claude.com/en/docs/claude-code/overview), q-ring ships a `CLAUDE.md` memory file, a project-scoped `.mcp.json`, two [subagents](https://docs.claude.com/en/docs/claude-code/sub-agents) (`secret-ops`, `security-auditor`), eight [slash commands](https://docs.claude.com/en/docs/claude-code/slash-commands) (`/qring-scan-secrets`, `/qring-health-check`, …), six [skills](https://docs.claude.com/en/docs/claude-code/skills), and three [hooks](https://docs.claude.com/en/docs/claude-code/hooks) (post-edit lint reminder, pre-Bash `.env` guard, session-start context primer).
|
|
1018
1018
|
|
|
1019
1019
|
```bash
|
|
1020
1020
|
# Install into the current project ($PWD)
|