claude-agents-md 1.8.3 → 1.8.4

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
@@ -1,6 +1,6 @@
1
1
  # Claude AGENTS
2
2
 
3
- A wrapper for the Claude CLI that can run in AGENTS mode (ignoring CLAUDE.md and using AGENTS.md) OR CLAUDE mode (standard Claude behavior).
3
+ A wrapper for the Claude CLI that can run in AGENTS.md mode - ignoring CLAUDE.md and using AGENTS.md (like every other editor).
4
4
 
5
5
  ## What's New 🎉
6
6
 
@@ -44,33 +44,6 @@ claude-agents-md mode claude
44
44
  claude-agents-md mode
45
45
  ```
46
46
 
47
- ### Using the cl wrapper script (Recommended!)
48
-
49
- For even easier mode management, use the included `cl` bash wrapper:
50
-
51
- ```bash
52
- # Install globally during npm install
53
- npm install -g claude-agents-md
54
-
55
- # Or copy manually to your PATH
56
- cp node_modules/claude-agents-md/bin/cl /usr/local/bin/cl
57
- chmod +x /usr/local/bin/cl
58
-
59
- # Now you can use:
60
- cl /YON # Switch to AGENTS mode AND start Claude
61
- cl /YOFF # Switch to CLAUDE mode AND start Claude
62
- cl /STATUS # Show current mode (without starting Claude)
63
- cl /HELP # Show help
64
-
65
- # Run Claude in current mode
66
- cl "write a hello world function"
67
-
68
- # Switch mode and run with command
69
- cl /YON "create a web server"
70
- ```
71
-
72
- Mode preference is saved in `~/.claude_agents_state` and persists between sessions.
73
-
74
47
  ## Visual Mode Indicators
75
48
 
76
49
  The tool now shows clear visual indicators of which mode you're in:
@@ -292,7 +292,7 @@ async function run() {
292
292
  }
293
293
 
294
294
  // Replace CLAUDE.md with AGENTS.md
295
- cliContent = cliContent.replace(/CLAUDE\.md/gi, 'AGENTS.md');
295
+ cliContent = cliContent.replace(/CLAUDE\.md/g, 'AGENTS.md');
296
296
  debug("Replaced all instances of CLAUDE.md with AGENTS.md");
297
297
 
298
298
  // Add warning message
package/make-agents.sh CHANGED
@@ -17,7 +17,7 @@ cp "$CLI_FILE" "${CLI_FILE}.backup"
17
17
  echo "Created backup at ${CLI_FILE}.backup"
18
18
 
19
19
  # Replace CLAUDE.md with AGENTS.md case insensitively
20
- sed -i.bak1 's/CLAUDE\.md/AGENTS.md/gi' "$CLI_FILE"
20
+ sed -i.bak1 's/CLAUDE\.md/AGENTS.md/g' "$CLI_FILE"
21
21
  echo "Replaced all instances of CLAUDE.md with AGENTS.md"
22
22
 
23
23
  # Clean up the .bak file created by sed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-agents-md",
3
- "version": "1.8.3",
3
+ "version": "1.8.4",
4
4
  "description": "Claude Code CLI but it uses AGENTS.md instead of CLAUDE.md",
5
5
  "bin": {
6
6
  "claude-agents-md": "./bin/claude-agents-md.js",