gsndpcyanikaa 1.0.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.
@@ -0,0 +1,47 @@
1
+ # Cloude Code ToolBox — MCP & Skills awareness
2
+
3
+ _Generated: 2026-05-12T13:18:45.486Z_
4
+
5
+ ## How to use this report
6
+
7
+ - **Saved copy:** This file is **`.claude/cloude-code-toolbox-mcp-skills-awareness.md`** — refreshed whenever the toolbox runs an MCP & Skills scan (including on workspace open when auto-scan is enabled). It is meant for **Claude Code workspace context** together with `CLAUDE.md` (which gets a shorter replaceable summary when auto-merge is on).
8
+ - **MCP:** Lists **configured** servers from Claude Code config (`~/.claude.json` for user scope, `.mcp.json` for project scope). Use `/mcp` in the Claude Code panel to connect servers for your session.
9
+ - **Skills:** **On-disk** folders with `SKILL.md`. Claude Code does not auto-load them; attach `SKILL.md` or paths in chat when useful.
10
+ - **Task routing:** When the user’s request matches a server’s purpose (e.g. Confluence → Confluence/Atlassian MCP), prefer that **server id** from the tables below.
11
+
12
+ ---
13
+
14
+ ## MCP — workspace
15
+
16
+ Workspace `mcp.json` _(folder: gsndpcyanikaa)_
17
+
18
+ - **c:\Users\L5SWD\Desktop\gsndpcyanikaa\.mcp.json** — _File missing_
19
+
20
+ _No active workspace servers in mcp.json._
21
+
22
+ ## MCP — user profile
23
+
24
+ - **C:\Users\L5SWD\.claude.json** — _File exists — no servers defined_
25
+
26
+ _No active user-scoped servers in mcp.json._
27
+
28
+ ## Skills (local `SKILL.md` folders)
29
+
30
+ ### Project-scoped
31
+
32
+ _None found (or no workspace open)._
33
+
34
+ ### User-scoped
35
+
36
+ - **skill-creator** — `C:\Users\L5SWD\.claude\skills\skill-creator`
37
+ - Create new skills, modify and improve existing skills. Use when users want to create a skill from scratch, edit, or optimize an existing skill.
38
+
39
+ ---
40
+
41
+ ## Suggested next steps
42
+
43
+ - **MCP:** Use this extension’s hub **MCP** tab, or `claude mcp list` in the terminal. In Claude Code, use `/mcp` to connect servers for the session.
44
+ - **Edit config:** Open `~/.claude.json` (user MCP) or `<workspace>/.mcp.json` (project MCP) via the extension commands.
45
+ - **Refresh this report:** run **Intelligence — scan MCP & Skills awareness** again after changing MCP config or adding skills.
46
+
47
+ _Report from Cloude Code ToolBox extension._
package/CLAUDE.md ADDED
@@ -0,0 +1,47 @@
1
+ # Claude Code — project context
2
+
3
+
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+ <!-- cloude-code-toolbox:mcp-skills-awareness-begin -->
17
+
18
+ ### MCP & Skills awareness (Cloude Code ToolBox)
19
+
20
+ _Last synced: 2026-05-12T13:18:45.492Z._
21
+
22
+ - **Full report:** `.claude/cloude-code-toolbox-mcp-skills-awareness.md` in this workspace (auto-overwritten on each scan). Use it as ground truth for configured servers and skill folders.
23
+ - **MCP:** For **live tools** in Claude Code, enable the matching server via `/mcp`. Servers are configured in `~/.claude.json` (user) and `.mcp.json` (project).
24
+ - **When the user’s task matches a server** (e.g. Confluence work and a **Confluence** / **Atlassian** MCP is listed), **prefer that server id** and plan on tool use—not only file search.
25
+ - **Skills:** Folders below contain `SKILL.md`; attach or cite paths in chat when relevant.
26
+
27
+ #### Workspace MCP
28
+
29
+ - `c:\Users\L5SWD\Desktop\gsndpcyanikaa\.mcp.json` _(workspace: gsndpcyanikaa)_ — _file missing_
30
+
31
+ _No active workspace servers in mcp.json._
32
+
33
+ #### User MCP
34
+
35
+ - `C:\Users\L5SWD\.claude.json` — _no servers defined_
36
+
37
+ _No active user-scoped servers in mcp.json._
38
+
39
+ #### Project skills
40
+
41
+ _None found (or no workspace open)._
42
+
43
+ #### User skills
44
+
45
+ - **skill-creator** — `C:\Users\L5SWD\.claude\skills\skill-creator` — Create new skills, modify and improve existing skills. Use when users want to create a skill from scratch, edit, or optimize an existing skill.
46
+
47
+ <!-- cloude-code-toolbox:mcp-skills-awareness-end -->
package/README.md ADDED
@@ -0,0 +1,56 @@
1
+ # Sample System - MERN Stack
2
+
3
+ ## Prerequisites
4
+ - Node.js
5
+ - MongoDB (running locally or connection string)
6
+
7
+ ## Setup
8
+
9
+ ### Server
10
+ ```bash
11
+ cd server
12
+ npm install
13
+ ```
14
+
15
+ ### Client
16
+ ```bash
17
+ cd client
18
+ npm install
19
+ ```
20
+
21
+ ## Running
22
+
23
+ ### Development (both server and client)
24
+ ```bash
25
+ npm run dev
26
+ ```
27
+
28
+ ### Server only
29
+ ```bash
30
+ npm run server
31
+ ```
32
+
33
+ ### Client only
34
+ ```bash
35
+ npm run client
36
+ ```
37
+
38
+ ## API Endpoints
39
+
40
+ ### Auth
41
+ - POST /api/auth/register - Register new user
42
+ - POST /api/auth/login - Login user
43
+
44
+ ### Items (requires auth)
45
+ - GET /api/items - Get all items
46
+ - GET /api/items/:id - Get single item
47
+ - POST /api/items - Create item
48
+ - PUT /api/items/:id - Update item
49
+ - DELETE /api/items/:id - Delete item
50
+
51
+ ### Reports (requires auth)
52
+ - GET /api/reports/summary - Get item summary
53
+ - GET /api/reports/unknown - Get all unknown items
54
+
55
+ ## Default Login
56
+ Register a user via /api/auth/register or create directly in MongoDB.