-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathenv.example
More file actions
56 lines (48 loc) · 2.65 KB
/
env.example
File metadata and controls
56 lines (48 loc) · 2.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# env.example
#
# Most skills in this repo work with no environment configuration — they operate on
# data you paste into the conversation. The variables below are optional and only
# needed if you want a skill to reference your business defaults automatically.
#
# Copy this file to `.env` and fill in what's relevant. Add it to your shell
# (`export $(cat .env | xargs)`) or to `~/.claude/CLAUDE.md` as plain text so
# Claude picks up your defaults at session start.
# ---------------------------------------------------------------------------
# Phase 4 — SMB Owner-Operator skills
#
# All Phase 4 skills operate on pasted-in data (bank statements, customer
# emails, contracts, quotes). No live integrations are required. The variables
# below are convenience defaults so you don't re-enter the same business info
# every time.
# ---------------------------------------------------------------------------
# Business basics — used by invoice-generator, hiring-kit, owner-dashboard, etc.
SMB_BUSINESS_NAME=""
SMB_BUSINESS_ADDRESS=""
SMB_BUSINESS_EMAIL=""
SMB_BUSINESS_PHONE=""
SMB_BUSINESS_EIN="" # Federal tax ID (optional, used on invoices)
SMB_BUSINESS_STATE="" # 2-letter state code, used for tax + legal flags
# Owner — used by hiring-kit (offer letters) and review-response (voice)
SMB_OWNER_NAME=""
SMB_OWNER_TITLE=""
# Invoice defaults — used by invoice-generator
SMB_INVOICE_PAYMENT_TERMS="Net 15"
SMB_INVOICE_LATE_FEE_POLICY="" # e.g. "1.5% per month over 30 days late" or "none"
SMB_INVOICE_PAYMENT_METHODS="" # e.g. "Check to Acme LLC, ACH 011000015 / 1234567890, Stripe invoice link"
# Bookkeeping + tax — used by bookkeeping-helper and tax-prep-helper
SMB_CPA_NAME=""
SMB_CPA_EMAIL=""
SMB_ENTITY_TYPE="" # "sole_prop" | "single_member_llc" | "multi_member_llc" | "s_corp" | "c_corp"
# Local marketing — used by local-marketing and review-response
SMB_GBP_URL="" # Google Business Profile URL
SMB_PRIMARY_CATEGORY="" # e.g. "Italian Restaurant", "Family Dentist", "HVAC Contractor"
SMB_SERVICE_AREA="" # City + radius or list of neighborhoods
# Voice + brand — used by review-response, customer-support-triage
SMB_VOICE_DESCRIPTION="" # e.g. "warm and casual" | "professional and crisp" | "fun and irreverent"
# ---------------------------------------------------------------------------
# Earlier phases
#
# Phases 1-3 skills mostly run on pasted-in data and Claude's web search.
# If a specific skill requires an API key (e.g. for a non-default MCP),
# document the variable here as those skills land.
# ---------------------------------------------------------------------------