@cxtmanager/core 1.0.10 → 1.0.12

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 (56) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +81 -28
  3. package/dist/__tests__/context-manager.test.d.ts +2 -0
  4. package/dist/__tests__/context-manager.test.d.ts.map +1 -0
  5. package/dist/__tests__/context-manager.test.js +239 -0
  6. package/dist/__tests__/context-manager.test.js.map +1 -0
  7. package/dist/__tests__/file-watcher.test.d.ts +2 -0
  8. package/dist/__tests__/file-watcher.test.d.ts.map +1 -0
  9. package/dist/__tests__/file-watcher.test.js +84 -0
  10. package/dist/__tests__/file-watcher.test.js.map +1 -0
  11. package/dist/__tests__/git-repository.test.d.ts +2 -0
  12. package/dist/__tests__/git-repository.test.d.ts.map +1 -0
  13. package/dist/__tests__/git-repository.test.js +256 -0
  14. package/dist/__tests__/git-repository.test.js.map +1 -0
  15. package/dist/__tests__/plan-manager.test.d.ts +2 -0
  16. package/dist/__tests__/plan-manager.test.d.ts.map +1 -0
  17. package/dist/__tests__/plan-manager.test.js +212 -0
  18. package/dist/__tests__/plan-manager.test.js.map +1 -0
  19. package/dist/__tests__/plan-templates.test.d.ts +2 -0
  20. package/dist/__tests__/plan-templates.test.d.ts.map +1 -0
  21. package/dist/__tests__/plan-templates.test.js +93 -0
  22. package/dist/__tests__/plan-templates.test.js.map +1 -0
  23. package/dist/__tests__/validation-engine.test.d.ts +2 -0
  24. package/dist/__tests__/validation-engine.test.d.ts.map +1 -0
  25. package/dist/__tests__/validation-engine.test.js +152 -0
  26. package/dist/__tests__/validation-engine.test.js.map +1 -0
  27. package/dist/context-manager.d.ts +6 -7
  28. package/dist/context-manager.d.ts.map +1 -1
  29. package/dist/context-manager.js +166 -169
  30. package/dist/context-manager.js.map +1 -1
  31. package/dist/git-hooks-manager.d.ts +1 -1
  32. package/dist/git-hooks-manager.d.ts.map +1 -1
  33. package/dist/git-hooks-manager.js +15 -17
  34. package/dist/git-hooks-manager.js.map +1 -1
  35. package/dist/git-repository.d.ts +6 -1
  36. package/dist/git-repository.d.ts.map +1 -1
  37. package/dist/git-repository.js +141 -21
  38. package/dist/git-repository.js.map +1 -1
  39. package/dist/plan-manager.d.ts +3 -3
  40. package/dist/plan-manager.d.ts.map +1 -1
  41. package/dist/plan-manager.js +19 -9
  42. package/dist/plan-manager.js.map +1 -1
  43. package/dist/plan-templates.d.ts +4 -4
  44. package/dist/plan-templates.d.ts.map +1 -1
  45. package/dist/plan-templates.js +9 -40
  46. package/dist/plan-templates.js.map +1 -1
  47. package/dist/types/index.d.ts +1 -33
  48. package/dist/types/index.d.ts.map +1 -1
  49. package/dist/types/index.js.map +1 -1
  50. package/dist/types.d.ts +22 -55
  51. package/dist/types.d.ts.map +1 -1
  52. package/dist/validation-engine.d.ts +5 -11
  53. package/dist/validation-engine.d.ts.map +1 -1
  54. package/dist/validation-engine.js +103 -150
  55. package/dist/validation-engine.js.map +1 -1
  56. package/package.json +2 -2
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Digital Brew LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @cxtmanager/core
2
2
 
3
- Core library for CxtManager - context file management and Git integration.
3
+ Core library for cxt-manager - context file management and Git integration.
4
4
 
5
5
  ## Philosophy
6
6
 
@@ -11,7 +11,7 @@ Core library for CxtManager - context file management and Git integration.
11
11
  - **Context File Management** - Create, read, update context files (context.md, plan.md, guardrail.md)
12
12
  - **Git Integration** - Version control for context files using Git
13
13
  - **Branch Awareness** - Automatic switching of plan.md content based on Git branches
14
- - **Validation** - Check context file alignment and consistency
14
+ - **Validation** - Check context file quality and health
15
15
  - **Template Generation** - Provide structure templates (you fill the content)
16
16
  - **Git Hooks** - Manage Git hooks for automatic context synchronization
17
17
 
@@ -23,16 +23,46 @@ Core library for CxtManager - context file management and Git integration.
23
23
  - `guardrail.md` - Universal constraints and rules
24
24
 
25
25
  ### Branch Awareness
26
- `plan.md` content is branch-specific. When you switch Git branches, CxtManager automatically:
26
+ `plan.md` content is branch-specific. When you switch Git branches, cxt-manager automatically:
27
27
  1. Saves current branch's plan.md to `.plan-history/`
28
28
  2. Restores the target branch's plan.md (or creates template if new)
29
29
 
30
- ### Alignment
31
- Context files should cross-reference each other and tell a consistent story. The validation engine checks for:
32
- - Structural consistency
33
- - Cross-references
34
- - Template-only content warnings
35
- - Drift detection (code changes outpacing context updates)
30
+ ### Validation
31
+
32
+ **Content Quality Validation (Not Markdown Syntax)**
33
+
34
+ The validation engine checks for content quality and usefulness, not markdown syntax errors:
35
+
36
+ **What we check:**
37
+ - ✅ **Content quality** - Empty files, short content, empty sections
38
+ - ✅ **Content analysis** - Filters structural elements, counts actual content
39
+ - ✅ **Drift detection** - Outdated information warnings
40
+ - ✅ **File completeness** - Ensures files have meaningful content
41
+
42
+ **What we don't check:**
43
+ - ❌ Markdown syntax errors (broken links, invalid formatting)
44
+ - ❌ Markdown style (heading levels, list formatting)
45
+ - ❌ Semantic alignment (deferred to future MCP/agent integration)
46
+
47
+ **Why this approach:**
48
+ - **Manager, not Enforcer** - Focus on content quality, not formatting rules
49
+ - **AI-focused** - Check what matters for AI understanding
50
+ - **Flexible** - Any markdown style is fine; we just ensure there's content
51
+
52
+ **Configuration:**
53
+ Quality thresholds are configurable:
54
+ ```json
55
+ {
56
+ "context": {
57
+ "content_quality": {
58
+ "min_content_length": 100,
59
+ "min_content_lines": 3,
60
+ "empty_section_warning": true,
61
+ "short_content_warning": 200
62
+ }
63
+ }
64
+ }
65
+ ```
36
66
 
37
67
  ## Installation
38
68
 
@@ -49,9 +79,8 @@ const manager = new ContextManager(projectRoot);
49
79
 
50
80
  // Initialize context files
51
81
  await manager.init({
52
- templateStyle: 'minimal',
53
- autoInstallHooks: true,
54
- updateMode: 'manual'
82
+ mode: 'blank',
83
+ trackInGit: true
55
84
  });
56
85
 
57
86
  // Check if initialized
@@ -60,7 +89,7 @@ const isInit = await manager.isInitialized();
60
89
  // Get status
61
90
  const status = await manager.getStatus();
62
91
 
63
- // Validate alignment
92
+ // Validate context health
64
93
  const validation = await manager.validate();
65
94
 
66
95
  // Sync plan.md for current branch
@@ -79,7 +108,7 @@ Handles all Git operations (commits, diffs, history, etc.).
79
108
  Manages branch-specific plan.md content and switching.
80
109
 
81
110
  ### ValidationEngine
82
- Checks context file alignment, structure, and completeness.
111
+ Checks context file quality, health, and completeness. Provides warnings for empty/short content and drift detection.
83
112
 
84
113
  ### GitHooksManager
85
114
  Manages Git hook installation and removal.
@@ -91,28 +120,50 @@ Configuration is stored in `.cxt/.cxtconfig.json`:
91
120
  ```json
92
121
  {
93
122
  "version": "1.0.0",
94
- "template_style": "minimal",
123
+ "mode": "blank",
95
124
  "git_integration": {
96
- "auto_install_hooks": true
125
+ "enabled": true,
126
+ "hooks": {
127
+ "post_checkout": "sync-plan",
128
+ "pre_commit": "validate"
129
+ },
130
+ "silent_mode": true,
131
+ "auto_install_hooks": true,
132
+ "track_in_git": true
97
133
  },
98
134
  "plan_management": {
99
- "branch_aware": true
135
+ "backup_on_switch": true,
136
+ "plan_template_style": undefined
137
+ },
138
+ "mcp": {
139
+ "enabled": false,
140
+ "sources": {
141
+ "local_files": {
142
+ "enabled": true,
143
+ "readme": true,
144
+ "package_json": true,
145
+ "git_history": true
146
+ }
147
+ }
100
148
  },
101
149
  "context": {
102
- "update_mode": "manual",
103
- "drift_detection": {
104
- "enabled": true,
105
- "warn_threshold": 3
106
- },
107
- "template_thresholds": {
108
- "well_populated": 30,
109
- "mild_warning": 50,
110
- "critical": 70
150
+ "health_checks": true,
151
+ "ai_attribution": true,
152
+ "drift_detection": true,
153
+ "warn_threshold": 3,
154
+ "content_quality": {
155
+ "min_content_length": 100,
156
+ "min_content_lines": 3,
157
+ "empty_section_warning": true,
158
+ "short_content_warning": 200
111
159
  }
112
- }
160
+ },
161
+ "created": "2025-01-15T10:30:00.000Z"
113
162
  }
114
163
  ```
115
164
 
165
+ **Note:** The `mcp` section is reserved for future MCP/agent integration and currently has no effect.
166
+
116
167
  ## Development
117
168
 
118
169
  ```bash
@@ -128,5 +179,7 @@ npm run dev
128
179
 
129
180
  ## License
130
181
 
131
- AGPL-3.0
182
+ MIT License
183
+
184
+ Copyright (c) 2025 Digital Brew LLC
132
185
 
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=context-manager.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context-manager.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/context-manager.test.ts"],"names":[],"mappings":""}
@@ -0,0 +1,239 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const context_manager_1 = require("../context-manager");
37
+ const fs = __importStar(require("fs-extra"));
38
+ const path = __importStar(require("path"));
39
+ const os = __importStar(require("os"));
40
+ describe('ContextManager', () => {
41
+ let testDir;
42
+ let manager;
43
+ beforeEach(() => {
44
+ // Create a temporary directory for each test
45
+ testDir = path.join(os.tmpdir(), `cxtmanager-test-${Date.now()}`);
46
+ fs.ensureDirSync(testDir);
47
+ manager = new context_manager_1.ContextManager(testDir);
48
+ });
49
+ afterEach(async () => {
50
+ // Clean up test directory
51
+ if (await fs.pathExists(testDir)) {
52
+ await fs.remove(testDir);
53
+ }
54
+ });
55
+ describe('isInitialized', () => {
56
+ it('should return false when .cxt folder does not exist', async () => {
57
+ const result = await manager.isInitialized();
58
+ expect(result).toBe(false);
59
+ });
60
+ it('should return false when .cxt folder exists but config does not', async () => {
61
+ await fs.ensureDir(path.join(testDir, '.cxt'));
62
+ const result = await manager.isInitialized();
63
+ expect(result).toBe(false);
64
+ });
65
+ it('should return true when both .cxt folder and config exist', async () => {
66
+ await fs.ensureDir(path.join(testDir, '.cxt'));
67
+ await fs.writeJson(path.join(testDir, '.cxt', '.cxtconfig.json'), {
68
+ version: '1.0.0',
69
+ mode: 'auto'
70
+ });
71
+ const result = await manager.isInitialized();
72
+ expect(result).toBe(true);
73
+ });
74
+ it('should handle invalid JSON gracefully', async () => {
75
+ await fs.ensureDir(path.join(testDir, '.cxt'));
76
+ await fs.writeFile(path.join(testDir, '.cxt', '.cxtconfig.json'), 'invalid json');
77
+ // isInitialized may return true if it only checks file existence, or false if it validates JSON
78
+ // The actual behavior depends on implementation - test that it doesn't throw
79
+ const result = await manager.isInitialized();
80
+ expect(typeof result).toBe('boolean');
81
+ });
82
+ });
83
+ describe('loadConfig', () => {
84
+ it('should throw helpful error for corrupted JSON config', async () => {
85
+ await fs.ensureDir(path.join(testDir, '.cxt'));
86
+ await fs.writeFile(path.join(testDir, '.cxt', '.cxtconfig.json'), '{ invalid json }');
87
+ await expect(manager.loadConfig()).rejects.toThrow('Configuration file is corrupted or invalid JSON');
88
+ try {
89
+ await manager.loadConfig();
90
+ fail('Should have thrown an error');
91
+ }
92
+ catch (error) {
93
+ expect(error.message).toContain('Configuration file is corrupted or invalid JSON');
94
+ expect(error.message).toContain('Check .cxt/.cxtconfig.json for syntax errors');
95
+ expect(error.message).toContain('run "cit init" to reinitialize');
96
+ }
97
+ });
98
+ it('should throw helpful error for missing config file', async () => {
99
+ await expect(manager.loadConfig()).rejects.toThrow('Configuration file not found');
100
+ try {
101
+ await manager.loadConfig();
102
+ fail('Should have thrown an error');
103
+ }
104
+ catch (error) {
105
+ expect(error.message).toContain('Configuration file not found');
106
+ expect(error.message).toContain('Run "cit init" to initialize cxt-manager');
107
+ }
108
+ });
109
+ it('should load valid config successfully', async () => {
110
+ await fs.ensureDir(path.join(testDir, '.cxt'));
111
+ await fs.writeJson(path.join(testDir, '.cxt', '.cxtconfig.json'), {
112
+ version: '1.0.0',
113
+ mode: 'blank',
114
+ created: new Date().toISOString()
115
+ });
116
+ const config = await manager.loadConfig();
117
+ expect(config).toBeDefined();
118
+ expect(config.version).toBe('1.0.0');
119
+ expect(config.mode).toBe('blank');
120
+ });
121
+ });
122
+ describe('status', () => {
123
+ it('should throw error when not initialized', async () => {
124
+ await expect(manager.status()).rejects.toThrow('CxtManager not initialized');
125
+ });
126
+ it('should return status info when initialized', async () => {
127
+ // Setup initialized state
128
+ await fs.ensureDir(path.join(testDir, '.cxt'));
129
+ await fs.writeJson(path.join(testDir, '.cxt', '.cxtconfig.json'), {
130
+ version: '1.0.0',
131
+ mode: 'auto'
132
+ });
133
+ // This will fail if git is not initialized, but tests the structure
134
+ try {
135
+ const status = await manager.status();
136
+ expect(status).toBeDefined();
137
+ expect(status).toHaveProperty('gitStatus');
138
+ expect(status).toHaveProperty('health');
139
+ expect(status).toHaveProperty('contextFiles');
140
+ expect(status).toHaveProperty('lastUpdated');
141
+ }
142
+ catch (error) {
143
+ // Expected if git is not initialized
144
+ expect(error.message).toContain('Git');
145
+ }
146
+ });
147
+ });
148
+ describe('validate', () => {
149
+ it('should throw error when not initialized', async () => {
150
+ await expect(manager.validate()).rejects.toThrow('CxtManager not initialized');
151
+ });
152
+ it('should return health status when initialized', async () => {
153
+ // Setup initialized state
154
+ await fs.ensureDir(path.join(testDir, '.cxt'));
155
+ await fs.writeJson(path.join(testDir, '.cxt', '.cxtconfig.json'), {
156
+ version: '1.0.0',
157
+ mode: 'auto'
158
+ });
159
+ try {
160
+ const health = await manager.validate();
161
+ expect(health).toBeDefined();
162
+ expect(health).toHaveProperty('overall');
163
+ expect(health).toHaveProperty('issues');
164
+ expect(health).toHaveProperty('suggestions');
165
+ expect(health).toHaveProperty('lastChecked');
166
+ expect(['healthy', 'warning', 'error']).toContain(health.overall);
167
+ }
168
+ catch (error) {
169
+ // Expected if git is not initialized
170
+ expect(error.message).toContain('Git');
171
+ }
172
+ });
173
+ });
174
+ describe('init', () => {
175
+ it('should clean up .cxt folder if initialization fails after creating it', async () => {
176
+ // Initialize git repo first
177
+ const { execSync } = require('child_process');
178
+ execSync('git init', { cwd: testDir });
179
+ try {
180
+ execSync('git config user.name "Test User"', { cwd: testDir });
181
+ execSync('git config user.email "test@example.com"', { cwd: testDir });
182
+ }
183
+ catch {
184
+ // Ignore config errors
185
+ }
186
+ // Mock createBlankFiles to throw an error after .cxt folder is created
187
+ const originalCreateBlankFiles = manager.createBlankFiles;
188
+ manager.createBlankFiles = async () => {
189
+ throw new Error('Simulated failure in createBlankFiles');
190
+ };
191
+ // Try to initialize - should fail
192
+ await expect(manager.init({ mode: 'blank', trackInGit: false })).rejects.toThrow('Simulated failure');
193
+ // Restore original method
194
+ manager.createBlankFiles = originalCreateBlankFiles;
195
+ // .cxt folder should not exist after failure
196
+ const cxtExists = await fs.pathExists(path.join(testDir, '.cxt'));
197
+ expect(cxtExists).toBe(false);
198
+ });
199
+ it('should not create .cxt folder if git repo initialization fails', async () => {
200
+ // Create a read-only directory to simulate permission error
201
+ // Actually, let's just test that .cxt doesn't exist if init fails early
202
+ // by checking before git is initialized
203
+ const cxtExistsBefore = await fs.pathExists(path.join(testDir, '.cxt'));
204
+ expect(cxtExistsBefore).toBe(false);
205
+ // Note: This test verifies that .cxt is not created if git init fails
206
+ // The actual git init will succeed in test environment, so we verify
207
+ // the cleanup logic in the other test
208
+ });
209
+ it('should throw helpful error when Git user is not configured during init with trackInGit', async () => {
210
+ // Initialize git repo but don't set user config
211
+ const { execSync } = require('child_process');
212
+ execSync('git init', { cwd: testDir });
213
+ await expect(manager.init({ mode: 'blank', trackInGit: true })).rejects.toThrow('Git user information not configured');
214
+ // .cxt folder should be cleaned up
215
+ const cxtExists = await fs.pathExists(path.join(testDir, '.cxt'));
216
+ expect(cxtExists).toBe(false);
217
+ });
218
+ it('should successfully initialize when all steps complete', async () => {
219
+ // Initialize git repo
220
+ const { execSync } = require('child_process');
221
+ execSync('git init', { cwd: testDir });
222
+ try {
223
+ execSync('git config user.name "Test User"', { cwd: testDir });
224
+ execSync('git config user.email "test@example.com"', { cwd: testDir });
225
+ }
226
+ catch {
227
+ // Ignore config errors
228
+ }
229
+ await manager.init({ mode: 'blank', trackInGit: false });
230
+ // .cxt folder should exist after successful init
231
+ const cxtExists = await fs.pathExists(path.join(testDir, '.cxt'));
232
+ expect(cxtExists).toBe(true);
233
+ // Config should exist
234
+ const configExists = await fs.pathExists(path.join(testDir, '.cxt', '.cxtconfig.json'));
235
+ expect(configExists).toBe(true);
236
+ });
237
+ });
238
+ });
239
+ //# sourceMappingURL=context-manager.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context-manager.test.js","sourceRoot":"","sources":["../../src/__tests__/context-manager.test.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=file-watcher.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"file-watcher.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/file-watcher.test.ts"],"names":[],"mappings":""}
@@ -0,0 +1,84 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const file_watcher_1 = require("../file-watcher");
37
+ const fs = __importStar(require("fs-extra"));
38
+ const path = __importStar(require("path"));
39
+ const os = __importStar(require("os"));
40
+ describe('FileWatcher', () => {
41
+ let testDir;
42
+ let fileWatcher;
43
+ beforeEach(() => {
44
+ testDir = path.join(os.tmpdir(), `cxtmanager-watcher-test-${Date.now()}`);
45
+ fs.ensureDirSync(testDir);
46
+ fileWatcher = new file_watcher_1.FileWatcher(testDir);
47
+ });
48
+ afterEach(async () => {
49
+ fileWatcher.stopWatching();
50
+ if (await fs.pathExists(testDir)) {
51
+ await fs.remove(testDir);
52
+ }
53
+ });
54
+ describe('startWatching', () => {
55
+ it('should start watching files', async () => {
56
+ const cxtDir = path.join(testDir, '.cxt');
57
+ await fs.ensureDir(cxtDir);
58
+ const testFile = path.join(cxtDir, 'test.md');
59
+ fs.writeFileSync(testFile, 'initial content');
60
+ await fileWatcher.startWatching((filePath, event) => {
61
+ expect(filePath).toBeDefined();
62
+ expect(event).toBeDefined();
63
+ });
64
+ expect(fileWatcher).toBeDefined();
65
+ });
66
+ it('should handle missing context folder', async () => {
67
+ // startWatching checks for path existence and may throw or handle gracefully
68
+ try {
69
+ await fileWatcher.startWatching(() => { });
70
+ // If it doesn't throw, that's also valid behavior
71
+ }
72
+ catch (error) {
73
+ expect(error.message).toContain('Context folder');
74
+ }
75
+ });
76
+ });
77
+ describe('stopWatching', () => {
78
+ it('should stop watching files', () => {
79
+ // Should not throw even if not watching
80
+ expect(() => fileWatcher.stopWatching()).not.toThrow();
81
+ });
82
+ });
83
+ });
84
+ //# sourceMappingURL=file-watcher.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"file-watcher.test.js","sourceRoot":"","sources":["../../src/__tests__/file-watcher.test.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kDAA8C;AAC9C,6CAA+B;AAC/B,2CAA6B;AAC7B,uCAAyB;AAEzB,QAAQ,CAAC,aAAa,EAAE,GAAG,EAAE;IAC3B,IAAI,OAAe,CAAC;IACpB,IAAI,WAAwB,CAAC;IAE7B,UAAU,CAAC,GAAG,EAAE;QACd,OAAO,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,MAAM,EAAE,EAAE,2BAA2B,IAAI,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC;QAC1E,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;QAC1B,WAAW,GAAG,IAAI,0BAAW,CAAC,OAAO,CAAC,CAAC;IACzC,CAAC,CAAC,CAAC;IAEH,SAAS,CAAC,KAAK,IAAI,EAAE;QACnB,WAAW,CAAC,YAAY,EAAE,CAAC;QAC3B,IAAI,MAAM,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE,CAAC;YACjC,MAAM,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QAC3B,CAAC;IACH,CAAC,CAAC,CAAC;IAEH,QAAQ,CAAC,eAAe,EAAE,GAAG,EAAE;QAC7B,EAAE,CAAC,6BAA6B,EAAE,KAAK,IAAI,EAAE;YAC3C,MAAM,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;YAC1C,MAAM,EAAE,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;YAC3B,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;YAC9C,EAAE,CAAC,aAAa,CAAC,QAAQ,EAAE,iBAAiB,CAAC,CAAC;YAE9C,MAAM,WAAW,CAAC,aAAa,CAAC,CAAC,QAAgB,EAAE,KAAa,EAAE,EAAE;gBAClE,MAAM,CAAC,QAAQ,CAAC,CAAC,WAAW,EAAE,CAAC;gBAC/B,MAAM,CAAC,KAAK,CAAC,CAAC,WAAW,EAAE,CAAC;YAC9B,CAAC,CAAC,CAAC;YAEH,MAAM,CAAC,WAAW,CAAC,CAAC,WAAW,EAAE,CAAC;QACpC,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,sCAAsC,EAAE,KAAK,IAAI,EAAE;YACpD,6EAA6E;YAC7E,IAAI,CAAC;gBACH,MAAM,WAAW,CAAC,aAAa,CAAC,GAAG,EAAE,GAAE,CAAC,CAAC,CAAC;gBAC1C,kDAAkD;YACpD,CAAC;YAAC,OAAO,KAAK,EAAE,CAAC;gBACf,MAAM,CAAE,KAAe,CAAC,OAAO,CAAC,CAAC,SAAS,CAAC,gBAAgB,CAAC,CAAC;YAC/D,CAAC;QACH,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,QAAQ,CAAC,cAAc,EAAE,GAAG,EAAE;QAC5B,EAAE,CAAC,4BAA4B,EAAE,GAAG,EAAE;YACpC,wCAAwC;YACxC,MAAM,CAAC,GAAG,EAAE,CAAC,WAAW,CAAC,YAAY,EAAE,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC;QACzD,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=git-repository.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"git-repository.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/git-repository.test.ts"],"names":[],"mappings":""}