{"id":31209589,"url":"https://github.com/jwill9999/openrouter-vscode-ext","last_synced_at":"2026-05-08T14:18:17.351Z","repository":{"id":315155486,"uuid":"1058333069","full_name":"jwill9999/openrouter-vscode-ext","owner":"jwill9999","description":"An extension for vscode to integrate openrouter-cli","archived":false,"fork":false,"pushed_at":"2025-09-17T01:16:12.000Z","size":100,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-17T02:37:55.311Z","etag":null,"topics":["openrouter","openrouter-integration","typescript","vscode","vscode-extension"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jwill9999.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":"2025-09-17T00:33:48.000Z","updated_at":"2025-09-17T01:16:15.000Z","dependencies_parsed_at":"2025-09-17T02:48:12.260Z","dependency_job_id":null,"html_url":"https://github.com/jwill9999/openrouter-vscode-ext","commit_stats":null,"previous_names":["jwill9999/openrouter-vscode-ext"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/jwill9999/openrouter-vscode-ext","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwill9999%2Fopenrouter-vscode-ext","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwill9999%2Fopenrouter-vscode-ext/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwill9999%2Fopenrouter-vscode-ext/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwill9999%2Fopenrouter-vscode-ext/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jwill9999","download_url":"https://codeload.github.com/jwill9999/openrouter-vscode-ext/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwill9999%2Fopenrouter-vscode-ext/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276183918,"owners_count":25599242,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-21T02:00:07.055Z","response_time":72,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["openrouter","openrouter-integration","typescript","vscode","vscode-extension"],"created_at":"2025-09-21T02:24:02.814Z","updated_at":"2025-09-21T02:24:04.727Z","avatar_url":"https://github.com/jwill9999.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# openrouter README\n\nThis repository contains an MVP VS Code extension that integrates the openrouter CLI into VS Code as a small command/GUI. This project is an early proof-of-concept (MVP) and is not production ready.\n\nThe extension currently exposes a single command `openrouter.helloWorld` implemented in `src/extension.ts`. The extension binary is built to `./dist/extension.js` using `esbuild`.\n\nIntegration:\n\n- This extension is intended to work with the openrouter CLI: https://github.com/jwill9999/openrouter-cli\n- The goal is to provide a lightweight VS Code wrapper around the `openrouter-cli` commands (MVP stage).\n\nDeveloper quick start\n\nPrerequisites:\n\n- Node.js (recommended 18+)\n- npm\n\nBuild \u0026 run (local):\n\n- Build: `npm run compile` (runs `tsc` typecheck, `eslint`, then `node esbuild.js`)\n- Watch builds: `npm run watch`\n\nTests \u0026 linting\n\n- Run tests (Jest + ts-jest):\n  - `npm test`\n  - `npm run test:watch` for watch mode\n  - `npm run test:coverage` for coverage\n- Lint:\n  - `npm run lint` (check)\n  - `npm run lint:fix` (auto-fix)\n\nFormatting\n\n- Prettier is configured in `.prettierrc`.\n  - `npm run format` to auto-format all files\n  - `npm run format:check` to verify formatting (CI friendly)\n\nMakefile targets\n\nThis repository includes a `Makefile` with convenient aliases that call the npm scripts:\n\n- `make help` — show available make targets\n- `make test` — runs `npm run test`\n- `make test-watch` — runs `npm run test:watch`\n- `make test-coverage` — runs `npm run test:coverage`\n- `make lint` — runs `npm run lint`\n- `make build` — runs `npm run compile`\n\nHusky \u0026 Git hooks\n\n- Husky is configured: hooks are in `.husky/`.\n- Pre-commit runs: `npm run lint \u0026\u0026 npm run format:check \u0026\u0026 npm test` (see `.husky/pre-commit`).\n- If hooks are not firing, ensure Git is pointed to `.husky`:\n  - `git config core.hooksPath .husky`\n  - Or run hooks manually: `npx husky run pre-commit`\n\nProject notes\n\n- TypeScript-first project: `src` is the root, compiled output is written to `dist`/`out`.\n- ESLint uses the flat config file `eslint.config.mjs` with `eslint-plugin-prettier` enabled.\n- Tests live in `src/test`.\n\nStatus\n\n- This repository is an MVP and experimental. Do not treat it as production-ready. Issues, missing tests, and rough edges are expected. Contributions should prioritize stabilizing the CLI integration and adding end-to-end tests.\n\nWhere to look\n\n- Entry point: `src/extension.ts`\n- Tests: `src/test/extension.test.ts`\n- Lint config: `eslint.config.mjs`\n- Build: `esbuild.js`, `tsconfig.json`\n- Hooks: `.husky/pre-commit`\n\nIf you'd like, I can also add a short CONTRIBUTING.md describing the exact dev flow (run tests, lint, build, create PRs).\n\nLICENSE: MIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjwill9999%2Fopenrouter-vscode-ext","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjwill9999%2Fopenrouter-vscode-ext","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjwill9999%2Fopenrouter-vscode-ext/lists"}