@cg3/equip 0.2.11 → 0.2.13

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
@@ -141,6 +141,18 @@ const { detectPlatforms, installMcpJson, installRules, createManualPlatform, pla
141
141
  - **Dry-run support** — Preview changes without writing files
142
142
  - **CLI helpers** — Colored output, prompts, clipboard utilities included
143
143
 
144
+ ## Limitations — Why Rules Matter (and Why They're Not Enough)
145
+
146
+ MCP tool descriptions alone don't reliably trigger agent behavior. [Research on 856 MCP tools](https://arxiv.org/abs/2602.14878) found that 97.1% of tool descriptions contain quality issues, and even fully optimized descriptions only improve task success by ~6 percentage points.
147
+
148
+ Behavioral rules (the `.md` files equip installs) are stronger — they live in the agent's system prompt or project context, closer to how agents make decisions. But they have limits too:
149
+
150
+ - **Context window compaction** can drop rules from the agent's working memory during long sessions
151
+ - **No platform hooks exist** to enforce tool calls — the agent always decides whether to act
152
+ - **No open standard** for server-initiated actions (MCP sampling exists in spec but isn't widely implemented)
153
+
154
+ Equip gives you the best available distribution: MCP config for tool availability + behavioral rules for usage guidance. For guaranteed tool invocation, platform-level middleware (IDE extensions, framework hooks) is required — but that doesn't exist as open infrastructure yet.
155
+
144
156
  ## License
145
157
 
146
158
  MIT — CG3 LLC
package/lib/detect.js CHANGED
@@ -57,7 +57,7 @@ function detectPlatforms(serverName) {
57
57
  // Claude Code
58
58
  const claudeVersion = whichSync("claude") ? getClaudeCodeVersion() : null;
59
59
  if (claudeVersion || dirExists(path.join(home, ".claude"))) {
60
- const configPath = path.join(home, ".claude", "settings.json");
60
+ const configPath = path.join(home, ".claude.json");
61
61
  const rulesPath = path.join(home, ".claude", "CLAUDE.md");
62
62
  platforms.push({
63
63
  platform: "claude-code",
package/lib/platforms.js CHANGED
@@ -68,7 +68,7 @@ function createManualPlatform(platformId) {
68
68
  const home = os.homedir();
69
69
  const configs = {
70
70
  "claude-code": {
71
- configPath: path.join(home, ".claude", "settings.json"),
71
+ configPath: path.join(home, ".claude.json"),
72
72
  rulesPath: path.join(home, ".claude", "CLAUDE.md"),
73
73
  rootKey: "mcpServers",
74
74
  configFormat: "json",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cg3/equip",
3
- "version": "0.2.11",
3
+ "version": "0.2.13",
4
4
  "description": "Universal MCP + behavioral rules installer for AI coding agents",
5
5
  "main": "index.js",
6
6
  "bin": {