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.

Formatting

+5 -2
+1 -1
scripts/fix-lexicon-imports.js
··· 8 8 * 3. Ensures proper TypeScript compatibility with NodeNext module resolution 9 9 */ 10 10 11 - import { readdirSync, readFileSync, statSync, writeFileSync } from 'node:fs'; 11 + import { readFileSync, readdirSync, statSync, writeFileSync } from 'node:fs'; 12 12 import { join } from 'node:path'; 13 13 14 14 // Recursively find all .ts files in a directory
+4 -1
src/utils/validation.ts
··· 35 35 /** 36 36 * Validation schema for identifier (handle or DID) 37 37 */ 38 - export const identifierSchema: z.ZodUnion<[typeof handleSchema, typeof didSchema]> = z.union([handleSchema, didSchema]); 38 + export const identifierSchema: z.ZodUnion<[typeof handleSchema, typeof didSchema]> = z.union([ 39 + handleSchema, 40 + didSchema, 41 + ]); 39 42 40 43 /** 41 44 * Validate a handle