{"id":29966502,"url":"https://github.com/cursor-ide/vsce-templates","last_synced_at":"2025-08-04T03:03:05.757Z","repository":{"id":303172948,"uuid":"1014625323","full_name":"cursor-ide/vsce-templates","owner":"cursor-ide","description":"A public registry of scaffolding templates for building Deno-native 🦕 ⚡ VSCode Extensions with the vsce CLI.","archived":false,"fork":false,"pushed_at":"2025-07-06T05:12:12.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-06T06:22:42.849Z","etag":null,"topics":["deno","developer-tools","javascript","js","templates","tooling","ts","typescript","utilities","utils","vscode","vscode-extension","vscode-extension-boilerplate","vscode-extension-template"],"latest_commit_sha":null,"homepage":"https://jsr.io/@vsce/cli","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cursor-ide.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}},"created_at":"2025-07-06T04:57:26.000Z","updated_at":"2025-07-06T05:12:15.000Z","dependencies_parsed_at":"2025-07-06T06:22:53.367Z","dependency_job_id":null,"html_url":"https://github.com/cursor-ide/vsce-templates","commit_stats":null,"previous_names":["cursor-ide/vsce-templates"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cursor-ide/vsce-templates","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cursor-ide%2Fvsce-templates","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cursor-ide%2Fvsce-templates/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cursor-ide%2Fvsce-templates/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cursor-ide%2Fvsce-templates/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cursor-ide","download_url":"https://codeload.github.com/cursor-ide/vsce-templates/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cursor-ide%2Fvsce-templates/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268643729,"owners_count":24283316,"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-08-04T02:00:09.867Z","response_time":79,"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":["deno","developer-tools","javascript","js","templates","tooling","ts","typescript","utilities","utils","vscode","vscode-extension","vscode-extension-boilerplate","vscode-extension-template"],"created_at":"2025-08-04T03:01:00.252Z","updated_at":"2025-08-04T03:03:02.361Z","avatar_url":"https://github.com/cursor-ide.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# VSCE Template Registry \u003c!-- omit in toc --\u003e\n\n[![YAML Schema ✓](https://img.shields.io/badge/schema-valid-brightgreen?logo=yaml)](https://github.com/vsce-templates/index/blob/main/index.yml)\n[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n\nA public registry of scaffolding templates for building **Deno-native 🦕 ⚡ VSCode Extensions** with the [`vsce`](https://github.com/vsce-dev/cli) CLI.\n\n---\n\n## Table of Contents \u003c!-- omit in toc --\u003e\n\n- [Quick Start](#quick-start)\n- [Template Manifest Schema](#template-manifest-schema)\n- [Template Archive Requirements](#template-archive-requirements)\n- [Adding a Template](#adding-a-template)\n- [License](#license)\n\n---\n\n## Quick Start\n\n```bash\n# Install (or update) the CLI\ndeno install -A -f -q -n vsce jsr:@vsce/cli@latest\n\n# List all community templates\nvsce templates list\n\n# Scaffold a new extension from the \"react-panel\" template\nvsce create my-extension --template react-panel\n```\n\nBy default, the CLI fetches:\n[`https://raw.githubusercontent.com/cursor-ide/vsce-templates/refs/heads/main/index.yml`](https://raw.githubusercontent.com/cursor-ide/vsce-templates/refs/heads/main/index.yml').\n\nYou may override this via `vsce.yml`:\n\n```yaml\ntemplates:\n  registry: 'https://raw.githubusercontent.com/cursor-ide/vsce-templates/refs/heads/main/index.yml',\n  cache: true,\n  verifyHash: true,\n```\n\n---\n\n## Template Manifest Schema\n\nThe registry is a **single YAML array**; each element conforms to:\n\n| Field        | Type                | Required | Description                                                       |\n|--------------|---------------------|----------|-------------------------------------------------------------------|\n| `name`       | `string`            | ✔︎        | Unique identifier used with `--template \u003cname\u003e`                   |\n| `description`| `string`            | ✔︎        | Short human-readable summary                                      |\n| `url`        | `string` (URL)      | ✔︎        | HTTPS link to a `.zip` or `.tar.gz` archive of the template       |\n| `version`    | `string` (semver)   | ✖︎        | Latest released version of the template                           |\n| `tags`       | `string[]`          | ✖︎        | Search/filter keywords (e.g. `[\"react\",\"webview\"]`)               |\n| `author`     | `string`            | ✖︎        | Template maintainer(s)                                            |\n| `license`    | `string`            | ✖︎        | SPDX license identifier                                           |\n| `homepage`   | `string` (URL)      | ✖︎        | Project URL or documentation                                      |\n| `sha256`     | `string`            | ✖︎        | SHA-256 checksum of the archive (integrity verification)          |\n\n\u003e **Tip:** Use YAML schema validation tools to verify your entries before opening a PR.\n\n---\n\n## Template Archive Requirements\n\n1. **Root directory** — When unpacked, the archive must contain a **single top-level folder** (same as `name`).  \n2. **No pre-installed dependencies** — Keep `node_modules` / `dist` out.  \n3. **`README.md`** explaining the template's features \u0026 instructions.  \n4. **License** — Each template must include a recognized open-source license file.\n\nOptional niceties:\n\n- `.vscode/launch.json` and `tasks.json` for a smoother dev experience.\n- GitHub Actions or Deno workflows for CI testing the template itself.\n\n---\n\n## Adding a Template\n\n1. Fork **this** repo and create a new branch.\n2. Upload your template archive to a permanent location (GitHub Release asset, S3, etc.).\n3. Append a new object to `index.yml` following the schema above.\n4. Commit + push; ensure **CI** passes (lint \u0026 schema validation).\n5. Open a Pull Request – please include:\n   - Link to source code  \n   - Screenshots or GIF demo (if UI-focused)  \n   - Any speciality permissions (`deno.json`), runtime requirements, etc.\n\nMaintainers will review and merge once checks succeed.  \nYour template becomes instantly available to the community!\n\n---\n\n## License\n\nThe registry index (`index.yml`) is licensed under the **MIT License**.  \nIndividual templates are licensed as stated in their own repositories.\n\n---\n\nMade with ❤️ for Deno + VSCode! 🦕⚡ by [Cursor IDE](https://github.com/cursor-ide).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcursor-ide%2Fvsce-templates","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcursor-ide%2Fvsce-templates","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcursor-ide%2Fvsce-templates/lists"}