No description
Find a file
2026-06-08 21:43:58 -07:00
apps Initial Slide Factory MVP scaffold 2026-06-08 21:43:58 -07:00
docs Initial Slide Factory MVP scaffold 2026-06-08 21:43:58 -07:00
examples Initial Slide Factory MVP scaffold 2026-06-08 21:43:58 -07:00
packages Initial Slide Factory MVP scaffold 2026-06-08 21:43:58 -07:00
styles/incorta Initial Slide Factory MVP scaffold 2026-06-08 21:43:58 -07:00
.env.example Initial Slide Factory MVP scaffold 2026-06-08 21:43:58 -07:00
.gitignore Initial Slide Factory MVP scaffold 2026-06-08 21:43:58 -07:00
package-lock.json Initial Slide Factory MVP scaffold 2026-06-08 21:43:58 -07:00
package.json Initial Slide Factory MVP scaffold 2026-06-08 21:43:58 -07:00
README.md Initial Slide Factory MVP scaffold 2026-06-08 21:43:58 -07:00
tsconfig.base.json Initial Slide Factory MVP scaffold 2026-06-08 21:43:58 -07:00

Slide Factory

Slide Factory turns messy business content into brand-consistent slide decks.

The first build is intentionally local-first: a CLI, an API, and a small web UI share the same deck spec, style packs, and PPTX renderer. The same core contract can later run behind dev.slides.scottfelten.com and slides.scottfelten.com.

MVP Contract

source content
  -> content extraction
  -> deck planning
  -> validated DeckSpec
  -> brand/style pack
  -> PPTX renderer
  -> saved artifacts

The LLM layer should produce structured thinking, not freehand slide design. Renderers consume a validated DeckSpec and a StylePack.

Quick Start

npm install
npm run sample

Outputs are written to:

outputs/sample-incorta.pptx
outputs/sample-incorta.deck.json

Run the local API:

npm run dev:api

Run the web shell:

npm run dev:web

AgentPlane Notes

  • Implementation truth should live in Forgejo.
  • Runtime secrets must come from scoped projections or Model Service Gateway.
  • Do not commit raw source data, tokens, refresh tokens, or customer documents.
  • Google Slides generation should reuse the existing AgentPlane guidance: copy templates, inventory native containers, fill existing object IDs, and render thumbnails/contact sheets before handoff.