general-coding-tools-mcp 1.1.0 → 1.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 CHANGED
@@ -7,7 +7,7 @@ MCP server that exposes **skills** and **subagents** for general coding workflow
7
7
  ```json
8
8
  {
9
9
  "mcpServers": {
10
- "general-coding-tools-mcp": {
10
+ "gct": {
11
11
  "command": "npx",
12
12
  "args": ["-y", "general-coding-tools-mcp"]
13
13
  }
@@ -15,6 +15,8 @@ MCP server that exposes **skills** and **subagents** for general coding workflow
15
15
  }
16
16
  ```
17
17
 
18
+ Using `gct` as the server name gives you short slash commands like `/gct:security-audit`. You can use any name you prefer.
19
+
18
20
  If you use a local clone instead of npm, point `command` to `node` and `args` to the path to `dist/index.js`.
19
21
 
20
22
  ---
@@ -36,13 +38,16 @@ Structured processes and checklists the model can follow when you ask for that k
36
38
  | **migration-audit** | Audits PL/pgSQL migration files for NULL traps, race conditions (TOCTOU), missing constraints, error handling gaps, JSONB pitfalls, volatility mismarks, financial safety, and security (SECURITY DEFINER, search_path, REVOKE/GRANT). |
37
39
  | **ui-audit** | Audits React/Tailwind UI for WCAG 2.2 accessibility violations and structural anti-patterns (component duplication, separation of concerns). |
38
40
 
39
- Each skill can be fetched with the `get_skill` tool or applied with the `apply_skill` tool (pass your request as `message_to_skill`).
41
+ Each skill is available three ways:
42
+ - **Slash command** — `/gct:security-audit` (or whatever server name you chose) — select from the command palette with an optional task/scope argument
43
+ - **Tool** — the model calls `apply_skill` automatically when it recognizes the need
44
+ - **Resource** — fetch raw content via `get_skill`
40
45
 
41
46
  ---
42
47
 
43
48
  ## Subagents
44
49
 
45
- Focused agents for specific tasks. Use `get_subagent` or `apply_subagent` (pass your request as `message_to_subagent`) to launch them.
50
+ Focused agents for specific tasks. Available as slash commands (`/gct:deep-research`), tools (`apply_subagent`), or resources (`get_subagent`).
46
51
 
47
52
  | Subagent | What it does |
48
53
  |----------|----------------|