rulesync 4.2.0 → 4.3.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.
Files changed (4) hide show
  1. package/README.md +21 -18
  2. package/dist/index.cjs +595 -293
  3. package/dist/index.js +595 -293
  4. package/package.json +1 -1
package/README.md CHANGED
@@ -133,7 +133,7 @@ Rulesync supports both **generation** and **import** for All of the major AI cod
133
133
  | Codex CLI | ✅ 🌏 | | 🌏 | 🌏 | 🎮 | 🌏 |
134
134
  | Gemini CLI | ✅ 🌏 | ✅ | ✅ 🌏 | ✅ 🌏 | 🎮 | 🎮 |
135
135
  | GitHub Copilot | ✅ | | ✅ | ✅ | ✅ | ✅ |
136
- | Cursor | ✅ | ✅ | ✅ | ✅ 🌏 | 🎮 | 🎮 |
136
+ | Cursor | ✅ | ✅ | ✅ | ✅ 🌏 | 🎮 | |
137
137
  | OpenCode | ✅ | | ✅ | ✅ 🌏 | ✅ 🌏 | ✅ 🌏 |
138
138
  | Cline | ✅ | ✅ | ✅ | | | |
139
139
  | Roo Code | ✅ | ✅ | ✅ | ✅ | 🎮 | |
@@ -691,10 +691,13 @@ Focus on the difference of MCP tools usage.
691
691
  So, in this case, approximately 92% reduction in MCP tools consumption!
692
692
  </details>
693
693
 
694
- ## Rulesync MCP Server (Experimental)
694
+ ## Rulesync MCP Server
695
695
 
696
696
  Rulesync provides an MCP (Model Context Protocol) server that enables AI agents to manage your Rulesync files. This allows AI agents to discover, read, create, update, and delete files dynamically.
697
697
 
698
+ > [!NOTE]
699
+ > The MCP server exposes the only one tool to minimize your agent's token usage. Approximately less than 1k tokens for the tool definition.
700
+
698
701
  ### Available Tools
699
702
 
700
703
  The Rulesync MCP server provides the following tools:
@@ -702,40 +705,40 @@ The Rulesync MCP server provides the following tools:
702
705
  <details>
703
706
  <summary>Rules Management</summary>
704
707
 
705
- - `listRules` - List all rule files
706
- - `getRule` - Get a specific rule file
707
- - `putRule` - Create or update a rule file
708
- - `deleteRule` - Delete a rule file
708
+ - `list` - List all rule files
709
+ - `get` - Get a specific rule file
710
+ - `put` - Create or update a rule file
711
+ - `delete` - Delete a rule file
709
712
 
710
713
  </details>
711
714
 
712
715
  <details>
713
716
  <summary>Commands Management</summary>
714
717
 
715
- - `listCommands` - List all command files
716
- - `getCommand` - Get a specific command file
717
- - `putCommand` - Create or update a command file
718
- - `deleteCommand` - Delete a command file
718
+ - `list` - List all command files
719
+ - `get` - Get a specific command file
720
+ - `put` - Create or update a command file
721
+ - `delete` - Delete a command file
719
722
 
720
723
  </details>
721
724
 
722
725
  <details>
723
726
  <summary>Subagents Management</summary>
724
727
 
725
- - `listSubagents` - List all subagent files
726
- - `getSubagent` - Get a specific subagent file
727
- - `putSubagent` - Create or update a subagent file
728
- - `deleteSubagent` - Delete a subagent file
728
+ - `list` - List all subagent files
729
+ - `get` - Get a specific subagent file
730
+ - `put` - Create or update a subagent file
731
+ - `delete` - Delete a subagent file
729
732
 
730
733
  </details>
731
734
 
732
735
  <details>
733
736
  <summary>Skills Management</summary>
734
737
 
735
- - `listSkills` - List all skill directories
736
- - `getSkill` - Get a specific skill (SKILL.md and other files)
737
- - `putSkill` - Create or update a skill directory
738
- - `deleteSkill` - Delete a skill directory
738
+ - `list` - List all skill directories
739
+ - `get` - Get a specific skill (SKILL.md and other files)
740
+ - `put` - Create or update a skill directory
741
+ - `delete` - Delete a skill directory
739
742
 
740
743
  </details>
741
744