Skip to content

Yrrrrrf/folio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

folio

folio is a Typst package that turns project data into publication-grade documents. You write the data; folio writes the document.

Quickstart

#import "@local/folio:0.0.1": project-doc

#let project = (
  project: (name: "My Project", description: "A folio demonstration"),
  initiation: (pitch: "This project will change everything.")
)

#show: project-doc(
  data: project,
  config: (audit: true, toc: true),
  brand: (palette: (primary: rgb("#003e7e"))),
)

What's in v0.0.1

Folio v0.0.1 covers 14 PMBOK-aligned sections across 4 phases:

  • Phase 1: Initiation: Business Case, Project Objectives, Project Pitch.
  • Phase 2: Planning: Project Boundaries, Budget, Gantt, Milestones, Team.
  • Phase 3: Execution: Change Log, Issue Log, Risk Matrix, Status Report.
  • Phase 4: Closure: Lessons Learned, Sign-off.

Plus support for Custom Sections at any insertion point.

Features

  • The Data is the Document: All content lives in a single dictionary.
  • Graceful Failure: Missing fields show as red placeholders, not build errors.
  • Audit System: Diagnostic dashboard for data completeness and orphan references.
  • Extensible: Inject custom sections at named insertion points.

Branding

folio supports a multi-layered branding system. You can use built-in presets or create your own brand packs.

#show: project-doc(
  data: project,
  brand: (preset: "academic")
)

Audit System

Folio includes a diagnostic audit system. To enable it, set audit: true in the config.

Note: Orphan Reference detection requires a second compile pass for full accuracy, as it depends on Typst's layout query system.

Documentation

See docs/manual.pdf for full API reference and schema details.

About

Universal project management document generator for **Typst**.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors