├── .gitignore ├── Taskfile.yml ├── agents.md ├── bun.lock ├── cli └── flow │ ├── .gitignore │ ├── bun.lock │ ├── package.json │ ├── publish.ts │ ├── readme.md │ ├── src │ └── main.ts │ └── tsconfig.json ├── lib └── utils │ ├── jsr.json │ ├── mod.ts │ ├── package.json │ ├── readme.md │ ├── src │ ├── apps.ts │ ├── clipboard.ts │ ├── date.ts │ ├── file.ts │ ├── jxa.ts │ └── safari.ts │ └── tsconfig.json ├── license ├── package.json ├── readme.md ├── scripts ├── clone.ts ├── create-tree-from-commit.ts ├── find-file-in-git-history.ts ├── fork.ts ├── get-time.ts ├── new.ts ├── overwrite-file-with-text.ts ├── process-text-from-clipboard.ts ├── read-file-content.ts ├── reset-git-branch.ts ├── save-current-open-app-to-file.ts ├── save-link.ts ├── save-safari-tabs.ts ├── talk-to-folder.ts └── wip │ └── git.ts ├── try └── ai │ └── ai.ts ├── tsconfig.json └── web ├── package.json ├── src └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/.gitignore -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/Taskfile.yml -------------------------------------------------------------------------------- /agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/agents.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/bun.lock -------------------------------------------------------------------------------- /cli/flow/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/cli/flow/.gitignore -------------------------------------------------------------------------------- /cli/flow/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/cli/flow/bun.lock -------------------------------------------------------------------------------- /cli/flow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/cli/flow/package.json -------------------------------------------------------------------------------- /cli/flow/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/cli/flow/publish.ts -------------------------------------------------------------------------------- /cli/flow/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/cli/flow/readme.md -------------------------------------------------------------------------------- /cli/flow/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/cli/flow/src/main.ts -------------------------------------------------------------------------------- /cli/flow/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/cli/flow/tsconfig.json -------------------------------------------------------------------------------- /lib/utils/jsr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/lib/utils/jsr.json -------------------------------------------------------------------------------- /lib/utils/mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/lib/utils/mod.ts -------------------------------------------------------------------------------- /lib/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/lib/utils/package.json -------------------------------------------------------------------------------- /lib/utils/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/lib/utils/readme.md -------------------------------------------------------------------------------- /lib/utils/src/apps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/lib/utils/src/apps.ts -------------------------------------------------------------------------------- /lib/utils/src/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/lib/utils/src/clipboard.ts -------------------------------------------------------------------------------- /lib/utils/src/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/lib/utils/src/date.ts -------------------------------------------------------------------------------- /lib/utils/src/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/lib/utils/src/file.ts -------------------------------------------------------------------------------- /lib/utils/src/jxa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/lib/utils/src/jxa.ts -------------------------------------------------------------------------------- /lib/utils/src/safari.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/lib/utils/src/safari.ts -------------------------------------------------------------------------------- /lib/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/lib/utils/tsconfig.json -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/scripts/clone.ts -------------------------------------------------------------------------------- /scripts/create-tree-from-commit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/scripts/create-tree-from-commit.ts -------------------------------------------------------------------------------- /scripts/find-file-in-git-history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/scripts/find-file-in-git-history.ts -------------------------------------------------------------------------------- /scripts/fork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/scripts/fork.ts -------------------------------------------------------------------------------- /scripts/get-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/scripts/get-time.ts -------------------------------------------------------------------------------- /scripts/new.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/scripts/new.ts -------------------------------------------------------------------------------- /scripts/overwrite-file-with-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/scripts/overwrite-file-with-text.ts -------------------------------------------------------------------------------- /scripts/process-text-from-clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/scripts/process-text-from-clipboard.ts -------------------------------------------------------------------------------- /scripts/read-file-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/scripts/read-file-content.ts -------------------------------------------------------------------------------- /scripts/reset-git-branch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/scripts/reset-git-branch.ts -------------------------------------------------------------------------------- /scripts/save-current-open-app-to-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/scripts/save-current-open-app-to-file.ts -------------------------------------------------------------------------------- /scripts/save-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/scripts/save-link.ts -------------------------------------------------------------------------------- /scripts/save-safari-tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/scripts/save-safari-tabs.ts -------------------------------------------------------------------------------- /scripts/talk-to-folder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/scripts/talk-to-folder.ts -------------------------------------------------------------------------------- /scripts/wip/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/scripts/wip/git.ts -------------------------------------------------------------------------------- /try/ai/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/try/ai/ai.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/web/package.json -------------------------------------------------------------------------------- /web/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/web/src/index.ts -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikivdev/ts/HEAD/web/tsconfig.json --------------------------------------------------------------------------------