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! :)
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

Register config and context commands in CLI

Add the new config and context commands to the main CLI program:
- tangled config: Manage CLI configuration
- tangled context: Debug repository context resolution

These commands are now accessible through the CLI.

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

+4
+4
src/index.ts
··· 4 4 import { fileURLToPath } from 'node:url'; 5 5 import { Command } from 'commander'; 6 6 import { createAuthCommand } from './commands/auth.js'; 7 + import { createConfigCommand } from './commands/config.js'; 8 + import { createContextCommand } from './commands/context.js'; 7 9 import { createSshKeyCommand } from './commands/ssh-key.js'; 8 10 9 11 // Get package.json for version ··· 21 23 // Register commands 22 24 program.addCommand(createAuthCommand()); 23 25 program.addCommand(createSshKeyCommand()); 26 + program.addCommand(createConfigCommand()); 27 + program.addCommand(createContextCommand()); 24 28 25 29 program.parse(process.argv);