{"id":48839369,"url":"https://github.com/gdifiore/askdotmd","last_synced_at":"2026-04-15T01:02:57.987Z","repository":{"id":239767907,"uuid":"800514277","full_name":"gdifiore/askdotmd","owner":"gdifiore","description":"chatgpt in your vscode","archived":false,"fork":false,"pushed_at":"2025-12-30T19:37:30.000Z","size":50318,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-03T16:59:32.214Z","etag":null,"topics":["ai-coder","ask","askdotmd","chatbot","chatgpt","code-assistant","extension","extension-vscode","llm","lmstudio","local-llm","vscode","vscode-extension"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gdifiore.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-05-14T13:32:06.000Z","updated_at":"2025-12-30T19:37:34.000Z","dependencies_parsed_at":"2024-05-14T14:46:18.911Z","dependency_job_id":"6293fbbe-7df8-472b-ad85-6c1f81cae038","html_url":"https://github.com/gdifiore/askdotmd","commit_stats":null,"previous_names":["gdifiore/askdotmd"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/gdifiore/askdotmd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gdifiore%2Faskdotmd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gdifiore%2Faskdotmd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gdifiore%2Faskdotmd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gdifiore%2Faskdotmd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gdifiore","download_url":"https://codeload.github.com/gdifiore/askdotmd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gdifiore%2Faskdotmd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31821685,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"ssl_error","status_checked_at":"2026-04-14T18:05:01.765Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-coder","ask","askdotmd","chatbot","chatgpt","code-assistant","extension","extension-vscode","llm","lmstudio","local-llm","vscode","vscode-extension"],"created_at":"2026-04-15T01:02:57.807Z","updated_at":"2026-04-15T01:02:57.928Z","avatar_url":"https://github.com/gdifiore.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# askdotmd\n\nLLM chat directly in VS Code. No browser needed.\n\n## Features\n\n- Send entire file or selected text to an LLM\n- Response inserted at cursor or replaces selection\n- Supports Claude, OpenAI, and LM Studio (local)\n- Configure API keys and models in VS Code settings\n\n## Prerequisites\n\n- **VS Code**\n- **API Keys**: Obtain keys from [Anthropic](https://www.anthropic.com) for Claude or [OpenAI](https://platform.openai.com) for GPT models.\n- **LM Studio**: For local LLM use, ensure [LM Studio](https://lmstudio.ai) is running on `http://localhost:1234`.\n- **Node.js**: Required for building from source.\n\n## Installation\n\n### From VSIX\n1. Download the `.vsix` file from the latest release.\n2. Open VS Code, go to **Extensions** (`Ctrl+Shift+X`).\n3. Click `...` \u003e **Install from VSIX** and select the downloaded file.\n\n### Build from Source\n1. Clone the repository: `git clone https://github.com/your-repo.git`.\n2. Install dependencies: `npm install`.\n3. Build the extension: `npm run webpack`.\n4. Package the extension: `npm run package`.\n5. Install the generated `.vsix` file as above.\n\n## Configuration\n\nSet your preferred LLM provider and API keys in VS Code settings (`File \u003e Preferences \u003e Settings` or `Ctrl+,`):\n\n- `askdotmd.defaultModel`: Default LLM (`claude`, `openai`, or `lmstudio`).\n- `askdotmd.claudeApiKey`: Anthropic API key for Claude.\n- `askdotmd.openaiApiKey`: OpenAI API key for GPT models.\n- `askdotmd.lmstudioApiKey`: (Optional) API key for LM Studio.\n\nExample `settings.json`:\n```json\n{\n  \"askdotmd.defaultModel\": \"openai\",\n  \"askdotmd.openaiApiKey\": \"your-openai-api-key\",\n  \"askdotmd.claudeApiKey\": \"your-anthropic-api-key\"\n}\n```\n\n## Usage\n\n1. Open a file in VS Code\n2. Add a request in a comment (e.g., `// Generate a sorting function`)\n3. Trigger the command:\n   - **No selection**: Sends entire file, inserts response at cursor\n   - **With selection**: Sends only selection, replaces with response\n\n**Access the command:**\n- Command Palette (`Ctrl+Shift+P`): `askdotmd: Send Request`\n- Default keybinding: `Ctrl+Shift+L` (Mac: `Cmd+Shift+L`)\n\nSelect your LLM when prompted (Claude, OpenAI, or LM Studio).\n\n## Demo\n[Streamable Link](https://streamable.com/advgvj)\n\n## Limitations\n- Requests should be in comments; automatic extraction not yet implemented\n- Large files may exceed token limits (select specific sections instead)\n- Subject to your LLM provider's rate limits and quotas\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgdifiore%2Faskdotmd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgdifiore%2Faskdotmd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgdifiore%2Faskdotmd/lists"}