{"id":51142433,"url":"https://github.com/silo-code/silo-extensions","last_synced_at":"2026-06-26T00:02:00.593Z","repository":{"id":365988772,"uuid":"1274442049","full_name":"silo-code/silo-extensions","owner":"silo-code","description":"Community extensions for Silo — built on the public Extension SDK","archived":false,"fork":false,"pushed_at":"2026-06-19T18:13:23.000Z","size":31,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-19T20:07:48.228Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://getsilo.dev/guide/what-is-an-extension","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/silo-code.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2026-06-19T14:13:51.000Z","updated_at":"2026-06-19T18:13:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/silo-code/silo-extensions","commit_stats":null,"previous_names":["silo-code/silo-extensions"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/silo-code/silo-extensions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silo-code%2Fsilo-extensions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silo-code%2Fsilo-extensions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silo-code%2Fsilo-extensions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silo-code%2Fsilo-extensions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/silo-code","download_url":"https://codeload.github.com/silo-code/silo-extensions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silo-code%2Fsilo-extensions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34796761,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-25T02:00:05.521Z","response_time":101,"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":[],"created_at":"2026-06-26T00:01:59.777Z","updated_at":"2026-06-26T00:02:00.575Z","avatar_url":"https://github.com/silo-code.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# silo-extensions\n\nOfficial Silo extensions distributed outside the main [silo](https://github.com/silo-code/silo) repository. Each extension lives in its own top-level folder and is an independently installable package.\n\n## Extensions\n\n| Extension | Latest | Description |\n|---|---|---|\n| [Documents Side Panel](./docs-panel/) | [![latest](https://img.shields.io/github/v/release/silo-code/silo-extensions?filter=docs-panel*\u0026label=)](https://github.com/silo-code/silo-extensions/releases?q=docs-panel) | Markdown documentation browser with configurable folder roots |\n| [Local Web Viewer](./local-web-viewer/) | [![latest](https://img.shields.io/github/v/release/silo-code/silo-extensions?filter=local-web-viewer*\u0026label=)](https://github.com/silo-code/silo-extensions/releases?q=local-web-viewer) | Embed local dev servers and `file://` pages as dock panels alongside your code |\n\n## Installing an extension\n\n### From a GitHub Release (recommended)\n\n1. Go to [Releases](../../releases) and find the release for the extension you want.\n2. Right-click the `.tgz` asset and **Copy link address**.\n3. In Silo: **Settings → Extensions**, paste the URL into the input field and click **Install**.\n\n### From source\n\n```sh\ngit clone https://github.com/silo-code/silo-extensions\ncd silo-extensions/\u003cextension\u003e\nnpm install\nnpm run build\n```\n\nThen in Silo: **Settings → Extensions → Install from folder** and point at the extension directory.\n\n## Development\n\n### Structure\n\nEach extension is a self-contained folder:\n\n```\n\u003cextension-name\u003e/\n  src/            source files\n  dist/           compiled bundle (gitignored; built by CI)\n  build.mjs       esbuild config\n  package.json    silo metadata (id, engine, permissions)\n  tsconfig.json\n```\n\n### Building\n\n```sh\ncd \u003cextension\u003e\nnpm install\nnpm run build        # one-shot\nnpm run build:watch  # watch mode\n```\n\nOr build all extensions from the repo root:\n\n```sh\nnpm run build:all\n```\n\n### Releases\n\nMerging a PR into `main` automatically:\n\n1. Detects which extension's source files changed.\n2. Bumps the version — **patch** by default; add a `minor` or `major` label to the PR to override.\n3. Builds the bundle, packs a tarball, and publishes a [GitHub Release](../../releases) tagged `\u003cextension\u003e@v\u003cversion\u003e`.\n\nNo manual version bumping or tagging needed.\n\n### Adding a new extension\n\n1. Create a top-level folder for the extension (use an existing one as a template).\n2. Add a build + typecheck job to `.github/workflows/ci.yml`.\n3. Add a release job to `.github/workflows/release.yml`.\n\n## Requirements\n\n- Silo 0.7 or later\n- Node.js 20 or later (for building from source)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsilo-code%2Fsilo-extensions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsilo-code%2Fsilo-extensions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsilo-code%2Fsilo-extensions/lists"}