├── .envrc ├── .eslintrc.json ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .vscode └── tasks.json ├── CHANGELOG.md ├── LICENSE ├── devbox.json ├── devbox.lock ├── index.html ├── logo.svg ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── readme.md ├── release.config.js ├── renovate.json ├── src ├── main.tsx ├── prompts │ ├── ask-ai.ts │ ├── change-tone-to-casual.ts │ ├── change-tone-to-confident.ts │ ├── change-tone-to-friendly.ts │ ├── change-tone-to-professional.ts │ ├── explain-this.ts │ ├── generate-ideas.ts │ ├── index.ts │ ├── make-longer.ts │ ├── make-shorter.ts │ ├── summarize.ts │ └── type.ts ├── settings.ts └── utils.ts ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/.envrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/LICENSE -------------------------------------------------------------------------------- /devbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/devbox.json -------------------------------------------------------------------------------- /devbox.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/devbox.lock -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/index.html -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/postcss.config.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/readme.md -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/release.config.js -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/renovate.json -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/prompts/ask-ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/src/prompts/ask-ai.ts -------------------------------------------------------------------------------- /src/prompts/change-tone-to-casual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/src/prompts/change-tone-to-casual.ts -------------------------------------------------------------------------------- /src/prompts/change-tone-to-confident.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/src/prompts/change-tone-to-confident.ts -------------------------------------------------------------------------------- /src/prompts/change-tone-to-friendly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/src/prompts/change-tone-to-friendly.ts -------------------------------------------------------------------------------- /src/prompts/change-tone-to-professional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/src/prompts/change-tone-to-professional.ts -------------------------------------------------------------------------------- /src/prompts/explain-this.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/src/prompts/explain-this.ts -------------------------------------------------------------------------------- /src/prompts/generate-ideas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/src/prompts/generate-ideas.ts -------------------------------------------------------------------------------- /src/prompts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/src/prompts/index.ts -------------------------------------------------------------------------------- /src/prompts/make-longer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/src/prompts/make-longer.ts -------------------------------------------------------------------------------- /src/prompts/make-shorter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/src/prompts/make-shorter.ts -------------------------------------------------------------------------------- /src/prompts/summarize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/src/prompts/summarize.ts -------------------------------------------------------------------------------- /src/prompts/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/src/prompts/type.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahonn/logseq-plugin-ai-assistant/HEAD/vite.config.ts --------------------------------------------------------------------------------