claude-compass 0.1.1 → 0.1.2
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 +1 -1
- package/package.json +1 -1
- package/src/init.js +0 -7
package/README.md
CHANGED
|
@@ -66,7 +66,7 @@ This will:
|
|
|
66
66
|
- Copy hooks into `.claude/hooks/`
|
|
67
67
|
- Register hooks in `~/.claude/settings.json`
|
|
68
68
|
- Install the `claude-md-updater` agent into `.claude/agents/`
|
|
69
|
-
- Create a `CLAUDE.md` stub if one doesn't exist (
|
|
69
|
+
- Create a `CLAUDE.md` stub if one doesn't exist (leaves any existing one untouched)
|
|
70
70
|
|
|
71
71
|
## Commands
|
|
72
72
|
|
package/package.json
CHANGED
package/src/init.js
CHANGED
|
@@ -24,13 +24,6 @@ async function run() {
|
|
|
24
24
|
console.warn(' claude-compass works best inside a git repo, but continuing anyway.\n');
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
// Backup existing CLAUDE.md
|
|
28
|
-
if (fs.existsSync(claudeMdPath)) {
|
|
29
|
-
const backupPath = claudeMdPath + '.backup';
|
|
30
|
-
fs.copyFileSync(claudeMdPath, backupPath);
|
|
31
|
-
console.log(` Backed up existing CLAUDE.md → CLAUDE.md.backup`);
|
|
32
|
-
}
|
|
33
|
-
|
|
34
27
|
// Create .claude directories
|
|
35
28
|
fs.mkdirSync(contextDir, { recursive: true });
|
|
36
29
|
fs.mkdirSync(agentsDir, { recursive: true });
|