@drawbridge/drawbridge-agents 0.0.10 → 0.0.11
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/.root-template/.editorconfig +11 -0
- package/README.md +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,6 +28,7 @@ claude/
|
|
|
28
28
|
|
|
29
29
|
.root-template/ ← mirrored into each consumer repo's root
|
|
30
30
|
.mcp.json ← project-level MCP servers (e.g. Sentry)
|
|
31
|
+
.editorconfig ← family-wide editor defaults (tabs, lf, utf-8)
|
|
31
32
|
|
|
32
33
|
bin/
|
|
33
34
|
sync-claude.js ← drawbridge-agents-sync — mirrors templates into consumer repo
|
|
@@ -60,7 +61,7 @@ bin/
|
|
|
60
61
|
|
|
61
62
|
On every `npm run sync`, this package mirrors:
|
|
62
63
|
- `.claude-template/` → consumer's `.claude/`
|
|
63
|
-
- `.root-template/` → consumer's repo root (
|
|
64
|
+
- `.root-template/` → consumer's repo root (`.mcp.json`, `.editorconfig`)
|
|
64
65
|
|
|
65
66
|
Paths that exist in the templates are **managed** (overwritten on each sync). Anything else in `.claude/` or at the repo root — including `settings.local.json` and any consumer-only hooks/agents/commands — is left untouched.
|
|
66
67
|
|
package/package.json
CHANGED