{"id":45215874,"url":"https://github.com/loehnertz/forge-plugin-presentation","last_synced_at":"2026-02-20T17:02:44.143Z","repository":{"id":339582100,"uuid":"1162488385","full_name":"loehnertz/forge-plugin-presentation","owner":"loehnertz","description":"Generate presentations with the Forge framework","archived":false,"fork":false,"pushed_at":"2026-02-20T15:24:56.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-20T15:54:20.098Z","etag":null,"topics":["forge-framework"],"latest_commit_sha":null,"homepage":"","language":"Jinja","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/loehnertz.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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-02-20T10:21:56.000Z","updated_at":"2026-02-20T15:24:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/loehnertz/forge-plugin-presentation","commit_stats":null,"previous_names":["loehnertz/forge-plugin-presentation"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/loehnertz/forge-plugin-presentation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loehnertz%2Fforge-plugin-presentation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loehnertz%2Fforge-plugin-presentation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loehnertz%2Fforge-plugin-presentation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loehnertz%2Fforge-plugin-presentation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/loehnertz","download_url":"https://codeload.github.com/loehnertz/forge-plugin-presentation/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loehnertz%2Fforge-plugin-presentation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29658167,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T16:33:43.953Z","status":"ssl_error","status_checked_at":"2026-02-20T16:33:43.598Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["forge-framework"],"created_at":"2026-02-20T17:02:43.341Z","updated_at":"2026-02-20T17:02:44.135Z","avatar_url":"https://github.com/loehnertz.png","language":"Jinja","readme":"# forge-plugin-presentation\n\nA [Forge](https://github.com/loehnertz/forge) plugin that adds [Slidev](https://sli.dev/)\npresentation generation to Forge workspaces. Generate polished slide decks from any Forge\nartifact — Proposals, Decisions, Explorations, and more.\n\n## What It Provides\n\n- `/forge-presentation-new` — Find a Forge artifact by name/topic and generate a Slidev presentation\n- `/forge-presentation-start` — List available decks and start the Slidev dev server\n- `/forge-presentation-export` — Export a deck to PDF, PPTX, or both\n- `Templates/Presentation.md` — Slidev Markdown skeleton for manually crafting presentations\n- A ready-to-run Slidev environment (`package.json` + `Themes/`)\n\n## Prerequisites\n\n- [Node.js](https://nodejs.org/) (includes `npm`) must be installed on your machine.\n  The plugin uses `npm` to install Slidev and run it locally.\n\n## Install\n\n### 1. Copy the plugin into your workspace\n\n```bash\ncopier copy gh:loehnertz/forge-plugin-presentation Plugins/presentation\n```\n\n### 2. Register it in `forge-plugins.yml`\n\nAdd an entry to your workspace's `forge-plugins.yml`:\n\n```yaml\nplugins:\n  - name: presentation\n    source: gh:loehnertz/forge-plugin-presentation\n    path: Plugins/presentation\n```\n\n### 3. Install dependencies\n\n```bash\ncd Plugins/presentation\nnpm install\n```\n\n## Usage\n\n### Create a presentation\n\nInvoke `/forge-presentation-new` in your AI tool. Describe the artifact by name or topic — the AI\nwill find it in your workspace. The generated deck is written to a `Presentations/` subfolder\ninside the same initiative as the source artifact (e.g.\n`Initiatives/\u003cInitiative\u003e/Presentations/\u003cslug\u003e.md`).\n\n### Preview a presentation\n\nInvoke `/forge-presentation-start`, or run from the workspace root:\n\n```bash\nnpx --prefix Plugins/presentation slidev Presentations/\u003cdeck-name\u003e.md\n```\n\nSlidev opens the browser at `http://localhost:3030`. Press `Ctrl+C` to stop.\n\n### Export a presentation\n\nInvoke `/forge-presentation-export` in your AI tool, or run from the workspace root:\n\n```bash\n# PDF (recommended)\nnpx --prefix Plugins/presentation slidev export \u003cpath-to-deck\u003e --format pdf --output \u003cpath-to-deck-without-ext\u003e.pdf\n\n# PPTX\nnpx --prefix Plugins/presentation slidev export \u003cpath-to-deck\u003e --format pptx --output \u003cpath-to-deck-without-ext\u003e.pptx\n```\n\n\u003e **Note:** PDF export is reliable. PPTX export may not preserve all animations or layouts.\n\n## Theme Customization\n\nDrop a Slidev-compatible theme directory into `Plugins/presentation/Themes/`, then reference it in\na deck's frontmatter:\n\n```yaml\n---\ntheme: ./Themes/\u003ctheme-name\u003e\n---\n```\n\n## Update\n\n```bash\ncopier update Plugins/presentation\n```\n\nThis pulls the latest plugin files. Your generated decks (inside initiative `Presentations/`\nfolders) and custom themes in `Plugins/presentation/Themes/` are not affected by updates.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floehnertz%2Fforge-plugin-presentation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Floehnertz%2Fforge-plugin-presentation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floehnertz%2Fforge-plugin-presentation/lists"}