WIP: A simple cli for daily tangled use cases and AI integration. This is for my personal use right now, but happy if others get mileage from it! :)

Fix CLI tests to use npx tsx for local package resolution

- Change from 'tsx' to 'npx tsx' in integration tests
- Ensures tests use project's local tsx installation
- Fixes VS Code test runner compatibility

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>

markbennett.ca 5aeb6a82 a70b5f79

verified
+2 -2
+2 -2
tests/index.test.ts
··· 10 10 11 11 describe('Tangled CLI', () => { 12 12 it('should display version', () => { 13 - const output = execSync('tsx src/index.ts --version', { 13 + const output = execSync('npx tsx src/index.ts --version', { 14 14 encoding: 'utf-8', 15 15 cwd: join(__dirname, '..'), 16 16 }); ··· 18 18 }); 19 19 20 20 it('should display help', () => { 21 - const output = execSync('tsx src/index.ts --help', { 21 + const output = execSync('npx tsx src/index.ts --help', { 22 22 encoding: 'utf-8', 23 23 cwd: join(__dirname, '..'), 24 24 });