{"id":48054885,"url":"https://github.com/modem-dev/glance-agent-plugins","last_synced_at":"2026-04-04T14:25:06.837Z","repository":{"id":342741442,"uuid":"1174965075","full_name":"modem-dev/glance-agent-plugins","owner":"modem-dev","description":"Agent plugins for glance.sh — temporary image sharing for coding agents","archived":false,"fork":false,"pushed_at":"2026-03-07T05:45:06.000Z","size":13,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-07T12:58:25.007Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/modem-dev.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-03-07T03:39:46.000Z","updated_at":"2026-03-07T04:44:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/modem-dev/glance-agent-plugins","commit_stats":null,"previous_names":["modem-dev/glance-agent-plugins"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/modem-dev/glance-agent-plugins","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/modem-dev%2Fglance-agent-plugins","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/modem-dev%2Fglance-agent-plugins/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/modem-dev%2Fglance-agent-plugins/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/modem-dev%2Fglance-agent-plugins/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/modem-dev","download_url":"https://codeload.github.com/modem-dev/glance-agent-plugins/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/modem-dev%2Fglance-agent-plugins/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31402399,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"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":[],"created_at":"2026-04-04T14:25:01.225Z","updated_at":"2026-04-04T14:25:06.830Z","avatar_url":"https://github.com/modem-dev.png","language":"TypeScript","readme":"# glance.sh agent plugins\n\n[![Integration](https://github.com/modem-dev/glance-agent-plugins/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/modem-dev/glance-agent-plugins/actions/workflows/test.yml)\n[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)\n[![Supported Agents](https://img.shields.io/badge/agents-pi%20%7C%20OpenCode%20%7C%20Claude%20Code%20%7C%20Codex-blue)](#available-plugins)\n\nAgent integrations for [glance.sh](https://glance.sh) — temporary image sharing for coding agents.\n\nPaste a screenshot in your browser, your agent gets the URL instantly.\n\n## Available plugins\n\n| Agent | Directory | npm package | Install |\n|---|---|---|---|\n| [pi](https://github.com/mariozechner/pi) | [`pi/`](pi/) | `@modemdev/glance-pi` | `pi install npm:@modemdev/glance-pi` |\n| [OpenCode](https://github.com/anomalyco/opencode) | [`opencode/`](opencode/) | `@modemdev/glance-opencode` | Add `\"@modemdev/glance-opencode\"` to `opencode.json` `plugin` list |\n| [Claude Code](https://github.com/anthropics/claude-code) | [`claude/`](claude/) | `@modemdev/glance-claude` | `/plugin marketplace add modem-dev/glance-agent-plugins` then `/plugin install glance-claude@glance-agent-plugins` |\n| [Codex](https://developers.openai.com/codex) | [`codex/`](codex/) | `@modemdev/glance-codex` | `codex mcp add glance -- npx -y @modemdev/glance-codex` |\n\n## How it works\n\nEach plugin creates a live session on glance.sh, gives you a URL to open, and waits for you to paste an image. The image URL is returned to the agent over SSE — no manual copy-paste needed.\n\n```text\nagent ──POST /api/session──▶ { id, url }\nagent ──GET  /api/session/\u003cid\u003e/events──▶ SSE (waiting…)\nuser  ──opens /s/\u003cid\u003e, pastes image──▶ agent receives URL\n```\n\nSessions are anonymous and ephemeral (10-minute TTL). Images expire after 30 minutes.\n\n## Packaging policy\n\nNew plugins should be published as installable packages (npm where possible) with a one-command install path in their README.\n\nEach plugin directory should include:\n\n1. Integration code\n2. `README.md` with install / verify / update / remove steps\n3. `package.json` (if the target agent supports package-based install)\n4. Release automation (GitHub Actions workflow + documented version/tag convention)\n\n## Adding a new plugin\n\nCreate a directory for your agent (e.g. `cursor/`, `cline/`) with the files above and open a PR.\n\n## License\n\nMIT\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmodem-dev%2Fglance-agent-plugins","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmodem-dev%2Fglance-agent-plugins","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmodem-dev%2Fglance-agent-plugins/lists"}