Packs · v1
Install your business shape
A pack is a single .pack.json file that carries a business shape — entity type, institutional voice, role profiles, skills, workflows, automations. Install one and Workjet becomes that business.
How they work
One install. Six layers configured.
Entity type
The generic primitive your business works on. Client, Deal, Engagement, Employee, Account, Period, Show, Project, Program.
Institutional context
Voice, SOPs, standards, case studies. Seeded only if your workspace has not customized it — packs never overwrite your edits.
Role profiles
Pane layout + skill palette + connected tools per role. New hires pick a role and the workspace configures itself.
Skills library
14–18 peer-tested skills per pack. Full system prompt + required tools + model preference + example inputs.
Workflows
Multi-agent sequential chains. Agency's Monthly Client Report workflow: Collect → Analyze → Write → QA.
Automations
Scheduled cron jobs and event triggers, pre-wired to skills with appropriate delivery channels.
Gallery
Five supported verticals, today
Our design-partner packs: Marketing Agency, PE / VC, Strategy Consulting, Customer Success, and Professional Services. Five more community templates below — fork, install, or request a custom pack for your vertical.
Marketing Agency
marketing-agency.pack.json
The 8 Figure Agency Blueprint — AI-native ops for marketing agencies. Clients, campaigns, reporting, creative, sales.
PE / VC Firm
pe-vc-firm.pack.json
Deal sourcing, diligence, IC prep, LP reporting, and portfolio support for private-capital investors.
Strategy Consulting
strategy-consulting.pack.json
Engagements, interviews, findings, recommendations, and exec-ready decks for strategy/management consulting firms.
Customer Success
customer-success.pack.json
Account health, QBRs, renewals, expansion, and churn-risk — for B2B SaaS customer-success teams.
Professional Services
professional-services.pack.json
Clients, engagements, SOWs, weekly status, QBRs, renewals, invoicing — for any billable service business (design studios, dev shops, bookkeeping, coaching, IT services).
Open-source starter shapes for these verticals. Not actively supported — fork and adapt, or request a supported pack for your domain.
People Ops / HR
people-ops.pack.json
Employee lifecycle, review cycles, onboarding, policy, and comp — for in-house HR / People teams.
Finance / CFO Suite
finance-cfo.pack.json
Close cycle, board + investor updates, forecast commentary, and FP&A — for in-house finance teams.
Creator Studio
creator-studio.pack.json
Shows, episodes, sponsorships, and audience growth — for independent podcasters, YouTubers, and small creator teams.
General Contractor
general-contractor.pack.json
Projects, subs, RFIs, change orders, daily logs, and owner updates — for GCs and construction managers.
Nonprofit / Grant-Driven
nonprofit.pack.json
Programs, grants, donors, impact reporting, and board comms — for mission-driven orgs.
Install in one call
Every pack is install-ready. From the desktop app: drag the JSON onto the Packs tab. From the API:
$ curl -L https://workjet.dev/packs/pe-vc-firm.pack.json -o pack.json
$ curl -X POST https://api.workjet.dev/packs/install \
-H "Authorization: Bearer $WORKJET_API_KEY" \
-H "Content-Type: application/json" \
--data @pack.json
{"data":{
"tenantId":"tn_0f91...",
"packSlug":"pe-vc-firm",
"created":{
"entityType":true,
"institutional":true,
"profiles":4,
"skills":14,
"workflows":1,
"automations":1
},
"warnings":[]
}} DIY
Author your own pack
The format is a single JSON file. Copy any pack above, edit the entity schema, rewrite the skills to match your SOPs, add your own workflows. Install, iterate, re-install — everything upserts by slug so updates merge cleanly. We'll ship more verticals monthly; contributions welcome.